[
  {
    "path": ".coveralls.yml",
    "content": "repo_token: EUv9wY2KnN7lYmiGWUFhEKH73Ndwtok1A\n"
  },
  {
    "path": ".fasterer.yml",
    "content": "speedups:\n  parallel_assignment: false\n  rescue_vs_respond_to: true\n  module_eval: true\n  shuffle_first_vs_sample: true\n  for_loop_vs_each: true\n  each_with_index_vs_while: false\n  map_flatten_vs_flat_map: true\n  reverse_each_vs_reverse_each: true\n  select_first_vs_detect: true\n  sort_vs_sort_by: true\n  fetch_with_argument_vs_block: true\n  keys_each_vs_each_key: true\n  hash_merge_bang_vs_hash_brackets: true\n  block_vs_symbol_to_proc: true\n  proc_call_vs_yield: true\n  gsub_vs_tr: true\n  select_last_vs_reverse_detect: true\n  getter_vs_attr_reader: false\n  setter_vs_attr_writer: false\n\nexclude_paths:\n  - 'vendor/**/*.rb'\n  - 'spec/**/*.rb'\n"
  },
  {
    "path": ".github/workflows/ci.yml",
    "content": "# This workflow runs continuous CI across different versions of ruby on all branches and pull requests to develop.\n\nname: CI\non:\n  push:\n    branches: [ '**' ]\n  pull_request:\n    branches: [ develop ]\n  workflow_dispatch:\n\njobs:\n  tests:\n    name: Ruby ${{ matrix.ruby }}\n    if: \"contains(github.event.commits[0].message, '[ci skip]') == false\"\n    runs-on: ubuntu-latest\n    env:\n      CI: true\n      ALLOW_FAILURES: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'jruby' }}\n    strategy:\n      fail-fast: false\n      matrix:\n        ruby: ['3.0', 3.1, 3.2, 3.3, ruby-head, jruby]\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@v3\n      - name: Set up Ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: ${{ matrix.ruby }}\n      - name: Install dependencies\n        run: bundle install --jobs 4 --retry 3\n      - name: Run tests\n        run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES\n      - name: Coveralls GitHub Action\n        uses: coverallsapp/github-action@v2\n        if: \"matrix.ruby == '3.2'\"\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n  wintests:\n    name: Win64 Ruby ${{ matrix.ruby }}\n    if: \"contains(github.event.commits[0].message, '[ci skip]') == false\"\n    runs-on: windows-latest\n    env:\n      CI: true\n      ALLOW_FAILURES: ${{ matrix.ruby == '3.2' || matrix.ruby == 'jruby' }}\n    strategy:\n      fail-fast: false\n      matrix:\n        ruby: [3.1, 3.2]\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@v3\n      - name: Set up Ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: ${{ matrix.ruby }}\n      - name: Install dependencies\n        run: bundle install --jobs 4 --retry 3\n      - name: Run tests\n        run: ruby --version; bundle exec rspec spec || $ALLOW_FAILURES\n"
  },
  {
    "path": ".github/workflows/generate-docs.yml",
    "content": "name: Build & deploy documentation\non:\n  push:\n    branches:\n      - master\n  workflow_dispatch:\njobs:\n  build:\n    runs-on: ubuntu-latest\n    name: Update gh-pages with docs\n    steps:\n      - name: Clone repository\n        uses: actions/checkout@v3\n      - name: Set up Ruby\n        uses: ruby/setup-ruby@v1\n        with:\n          ruby-version: \"3.1\"\n      - name: Install required gem dependencies\n        run: gem install yard --no-document\n      - name: Build YARD Ruby Documentation\n        run: yardoc\n      - name: Deploy\n        uses: peaceiris/actions-gh-pages@v3\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN }}\n          publish_dir: ./doc/yard\n          publish_branch: gh-pages\n"
  },
  {
    "path": ".gitignore",
    "content": "/.yardoc/\n/doc/\n/coverage/\n/*.gem\n/coverage/\n/spec.html\n/spec.pdf\n/pkg/\n/.rbx/\n/.bundle/\nGemfile.lock\n/.byebug_history\n"
  },
  {
    "path": ".rubocop.yml",
    "content": "---\n  require:\n    - rubocop-performance\n    - rubocop-rspec\n\n  AllCops:\n    DisplayCopNames: true\n    NewCops: enable\n    TargetRubyVersion: 2.6\n\n  Layout/ArgumentAlignment:\n    # https://www.rubydoc.info/github/bbatsov/RuboCop/RuboCop/Cop/Layout/ArgumentAlignment\n    EnforcedStyle: with_fixed_indentation\n  Layout/CaseIndentation:\n    EnforcedStyle: end\n  Layout/EndAlignment:\n    # https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Layout/EndAlignment\n    EnforcedStyleAlignWith: variable\n  Layout/FirstArgumentIndentation:\n    # https://www.rubydoc.info/github/bbatsov/RuboCop/RuboCop/Cop/Layout/FirstArgumentIndentation\n    Enabled: false\n  Layout/HashAlignment:\n    EnforcedLastArgumentHashStyle: ignore_implicit\n  Layout/LineLength:\n    Max: 120\n  Layout/MultilineMethodCallIndentation:\n    # https://www.rubydoc.info/gems/rubocop/RuboCop/Cop/Layout/MultilineMethodCallIndentation\n    EnforcedStyle: indented\n  Lint/AmbiguousBlockAssociation:\n    AllowedMethods: ['change']\n\n  Metrics/MethodLength:\n    CountComments: false  # count full line comments?\n    Max: 20\n\n  Style/Documentation:\n    Enabled: false\n  Style/DoubleNegation:\n    Enabled: false\n  Style/FormatStringToken:\n    Enabled: false\n  Style/HashSyntax:\n    Enabled: false\n  Style/MutableConstant:\n    Enabled: false\n  Style/StringLiterals:\n    Enabled: false\n  Style/StringConcatenation:\n    Enabled: false\n\n"
  },
  {
    "path": ".yardopts",
    "content": "--title \"JSON-LD reader/writer for RDF.rb.\"\n--output-dir doc/yard\n--protected\n--no-private\n--hide-void-return\n--markup markdown\n--readme README.md\n-\nAUTHORS\nVERSION\nUNLICENSE\n"
  },
  {
    "path": "AUTHORS",
    "content": "* Gregg Kellogg <gregg@greggkellogg.net>\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# How to contribute\n\nCommunity contributions are essential for keeping Ruby RDF great. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.\n\n## Development\n\nThis repository uses [Git Flow](https://github.com/nvie/gitflow) to mange development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.\n\n* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/json-ld/issues)\n* Fork and clone the repo:\n  `git clone git@github.com:your-username/json-ld.git`\n* Install bundle:\n  `bundle install`\n* Create tests in RSpec and make sure you achieve at least 90% code coverage for the feature your adding or behavior being modified.\n* Push to your fork and [submit a pull request][pr].\n\n## Do's and Dont's\n* Do your best to adhere to the existing coding conventions and idioms.\n* Don't use hard tabs, and don't leave trailing whitespace on any line.\n  Before committing, run `git diff --check` to make sure of this.\n* Do document every method you add using [YARD][] annotations. Read the\n  [tutorial][YARD-GS] or just look at the existing code for examples.\n* Don't touch the `.gemspec` or `VERSION` files. If you need to change them,\n  do so on your private branch only.\n* Do feel free to add yourself to the `CREDITS` file and the\n  corresponding list in the the `README`. Alphabetical order applies.\n* Don't touch the `AUTHORS` file. If your contributions are significant\n  enough, be assured we will eventually add you in there.\n* Do note that in order for us to merge any non-trivial changes (as a rule\n  of thumb, additions larger than about 15 lines of code), we need an\n  explicit [public domain dedication][PDD] on record from you,\n  which you will be asked to agree to on the first commit to a repo within the organization.\n  Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.\n\n[YARD]:    https://yardoc.org/\n[YARD-GS]: https://rubydoc.info/docs/yard/file/docs/GettingStarted.md\n[PDD]:              https://unlicense.org/#unlicensing-contributions\n[pr]:      https://github.com/ruby-rdf/rdf/compare/\n"
  },
  {
    "path": "Gemfile",
    "content": "source 'https://rubygems.org'\n\ngemspec\ngem 'json-canonicalization',  git: 'https://github.com/dryruby/json-canonicalization', branch: 'develop'\ngem 'rdf',                    git: 'https://github.com/ruby-rdf/rdf', branch: 'develop'\ngem 'nokogiri', '~> 1.15', '>= 1.15.4'\n\ngroup :development do\n  gem 'ebnf',               git: 'https://github.com/dryruby/ebnf',               branch: 'develop'\n  gem 'json-ld-preloaded',  git: 'https://github.com/ruby-rdf/json-ld-preloaded', branch: 'develop'\n  gem 'rdf-isomorphic',     git: 'https://github.com/ruby-rdf/rdf-isomorphic',    branch: 'develop'\n  gem 'rdf-spec',           git: 'https://github.com/ruby-rdf/rdf-spec',          branch: 'develop'\n  gem 'rdf-trig',           git: 'https://github.com/ruby-rdf/rdf-trig',          branch: 'develop'\n  gem 'rdf-turtle',         git: 'https://github.com/ruby-rdf/rdf-turtle',        branch: 'develop'\n  gem 'rdf-vocab',          git: 'https://github.com/ruby-rdf/rdf-vocab',         branch: 'develop'\n  gem 'rdf-xsd',            git: 'https://github.com/ruby-rdf/rdf-xsd',           branch: 'develop'\n  gem 'sxp',                git: 'https://github.com/dryruby/sxp.rb',             branch: 'develop'\nend\n\ngroup :development, :test do\n  gem 'benchmark-ips'\n  gem 'fasterer'\n  gem 'psych', platforms: %i[mri rbx]\n  gem 'rake'\n  gem 'rubocop'\n  gem 'rubocop-performance'\n  gem 'rubocop-rspec'\n  gem 'ruby-prof', platforms: :mri\n  gem 'simplecov', '~> 0.22', platforms: :mri\n  gem 'simplecov-lcov', '~> 0.8', platforms: :mri\nend\n\ngroup :debug do\n  gem 'byebug', platforms: :mri\nend\n"
  },
  {
    "path": "README.md",
    "content": "# JSON-LD reader/writer\n\n[JSON-LD][] reader/writer for [RDF.rb][RDF.rb] and fully conforming [JSON-LD API][] processor. Additionally this gem implements [JSON-LD Framing][].\n\n[![Gem Version](https://badge.fury.io/rb/json-ld.svg)](https://rubygems.org/gems/json-ld)\n[![Build Status](https://github.com/ruby-rdf/json-ld/actions/workflows/ci.yml/badge.svg)](https://github.com/ruby-rdf/json-ld/actions?query=workflow%3ACI)\n[![Coverage Status](https://coveralls.io/repos/ruby-rdf/json-ld/badge.svg?branch=develop)](https://coveralls.io/github/ruby-rdf/json-ld?branch=develop)\n[![Gitter chat](https://badges.gitter.im/ruby-rdf.png)](https://gitter.im/gitterHQ/gitter)\n\n## Features\n\nJSON::LD parses and serializes [JSON-LD][] into [RDF][] and implements expansion, compaction and framing API interfaces. It also extracts JSON-LD from HTML.\n\nJSON::LD can now be used to create a _context_ from an RDFS/OWL definition, and optionally include a JSON-LD representation of the ontology itself. This is currently accessed through the `script/gen_context` script.\n\n* If the [jsonlint][] gem is installed, it will be used when validating an input document.\n* If available, uses [Nokogiri][] for parsing HTML, falls back to REXML otherwise.\n* Provisional support for [JSON-LD-star][JSON-LD-star].\n\n[Implementation Report](https://ruby-rdf.github.io/json-ld/etc/earl.html)\n\nInstall with `gem install json-ld`\n\n### JSON-LD Streaming Profile\nThis gem implements an optimized streaming reader used for generating RDF from large dataset dumps formatted as JSON-LD. Such documents must correspond to the [JSON-LD Streaming Profile](https://w3c.github.io/json-ld-streaming/):\n\n* Keys in JSON objects must be ordered with any of `@context`, and/or `@type` coming before any other keys, in that order. This includes aliases of those keys. It is strongly encouraged that `@id` be present, and come immediately after.\n* JSON-LD documents can be signaled or requested in [streaming document form](https://w3c.github.io/json-ld-streaming/#dfn-streaming-document-form). The profile URI identifying the [streaming document form](https://w3c.github.io/json-ld-streaming/#dfn-streaming-document-form) is `http://www.w3.org/ns/json-ld#streaming`.\n\nThis gem also implements an optimized streaming writer used for generating JSON-LD from large repositories. Such documents result in the JSON-LD Streaming Profile:\n\n* Each statement written as a separate node in expanded/flattened form.\n* `RDF List`s are written as separate nodes using `rdf:first` and `rdf:rest` properties.\n\nThe order of triples retrieved from the `RDF::Enumerable` dataset determines the way that JSON-LD node objects are written; for best results, statements should be ordered by _graph name_, _subject_, _predicate_ and _object_.\n\n### MultiJson parser\nThe [MultiJson](https://rubygems.org/gems/multi_json) gem is used for parsing and serializing JSON; this defaults to the native JSON parser/serializer, but will use a more performant parser if one is available. A specific parser can be specified by adding the `:adapter` option to any API call. Additionally, a custom serialilzer may be specified by passing the `:serializer` option to {JSON::LD::Writer} or methods of {JSON::LD::API}. See [MultiJson](https://rubygems.org/gems/multi_json) for more information.\n\n### JSON-LD-star (RDFStar)\n\nThe {JSON::LD::API.expand}, {JSON::LD::API.compact}, {JSON::LD::API.toRdf}, and {JSON::LD::API.fromRdf} API methods, along with the {JSON::LD::Reader} and {JSON::LD::Writer}, include provisional support for [JSON-LD-star][JSON-LD-star].\n\nInternally, an `RDF::Statement` is treated as another resource, along with `RDF::URI` and `RDF::Node`, which allows an `RDF::Statement` to have a `#subject` or `#object` which is also an `RDF::Statement`.\n\nIn JSON-LD, with the `rdfstar` option set, the value of `@id`, in addition to an IRI or Blank Node Identifier, can be a JSON-LD node object having exactly one property with an optional `@id`, which may also be an embedded object. (It may also have `@context` and `@index` values).\n\n    {\n      \"@id\": {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@index\": \"ignored\",\n        \"@id\": \"bob\",\n        \"foaf:age\" 23\n      },\n      \"ex:certainty\": 0.9\n    }\n\nAdditionally, the `@annotation` property (or alias) may be used on a node object or value object to annotate the statement for which the associated node is the object of a triple.\n\n    {\n      \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n      \"@id\": \"bob\",\n      \"foaf:age\" 23,\n      \"@annotation\": {\n        \"ex:certainty\": 0.9\n      }\n    }\n\nIn the first case, the embedded node is not asserted, and only appears as the subject of a triple. In the second case, the triple is asserted and used as the subject in another statement which annotates it.\n\n**Note: This feature is subject to change or elimination as the standards process progresses.**\n\n#### Serializing a Graph containing embedded statements\n\n    require 'json/ld'\n    statement = RDF::Statement(RDF::URI('bob'), RDF::Vocab::FOAF.age, RDF::Literal(23))\n    graph = RDF::Graph.new << [statement, RDF::URI(\"ex:certainty\"), RDF::Literal(0.9)]\n    graph.dump(:jsonld, validate: false, standard_prefixes: true)\n    # => {\"@id\": {\"@id\": \"bob\", \"foaf:age\" 23}, \"ex:certainty\": 0.9}\n\nAlternatively, using the {JSON::LD::API.fromRdf} method:\n\n    JSON::LD::API::fromRdf(graph)\n    # => {\"@id\": {\"@id\": \"bob\", \"foaf:age\" 23}, \"ex:certainty\": 0.9}\n\n#### Reading a Graph containing embedded statements\n\nBy default, {JSON::LD::API.toRdf} (and {JSON::LD::Reader}) will reject a document containing a subject resource.\n\n    jsonld = %({\n      \"@id\": {\n        \"@id\": \"bob\", \"foaf:age\" 23\n      },\n      \"ex:certainty\": 0.9\n    })\n    graph = RDF::Graph.new << JSON::LD::API.toRdf(input)\n    # => JSON::LD::JsonLdError::InvalidIdValue\n\n{JSON::LD::API.toRdf} (and {JSON::LD::Reader}) support a boolean valued `rdfstar` option; only one statement is asserted, although the reified statement is contained within the graph.\n\n    graph = RDF::Graph.new do |graph|\n      JSON::LD::Reader.new(jsonld, rdfstar: true) {|reader| graph << reader}\n    end\n    graph.count #=> 1\n\n## Examples\n\n```ruby\nrequire 'rubygems'\nrequire 'json/ld'\n ```\n\n### Expand a Document\n\n```ruby\n   input = JSON.parse %({\n      \"@context\": {\n        \"name\": \"http://xmlns.com/foaf/0.1/name\",\n        \"homepage\": \"http://xmlns.com/foaf/0.1/homepage\",\n        \"avatar\": \"http://xmlns.com/foaf/0.1/avatar\"\n      },\n      \"name\": \"Manu Sporny\",\n      \"homepage\": \"http://manu.sporny.org/\",\n      \"avatar\": \"http://twitter.com/account/profile_image/manusporny\"\n    })\n    JSON::LD::API.expand(input) =>\n    \n    [{\n        \"http://xmlns.com/foaf/0.1/name\": [{\"@value\"=>\"Manu Sporny\"}],\n        \"http://xmlns.com/foaf/0.1/homepage\": [{\"@value\"=>\"https://manu.sporny.org/\"}], \n        \"http://xmlns.com/foaf/0.1/avatar\": [{\"@value\": \"https://twitter.com/account/profile_image/manusporny\"}]\n    }]\n```\n\n### Compact a Document\n\n    input = JSON.parse %([{\n        \"http://xmlns.com/foaf/0.1/name\": [\"Manu Sporny\"],\n        \"http://xmlns.com/foaf/0.1/homepage\": [{\"@id\": \"https://manu.sporny.org/\"}],\n        \"http://xmlns.com/foaf/0.1/avatar\": [{\"@id\": \"https://twitter.com/account/profile_image/manusporny\"}]\n    }])\n    \n    context = JSON.parse(%({\n      \"@context\": {\n        \"name\": \"http://xmlns.com/foaf/0.1/name\",\n        \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n        \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n      }\n    }))['@context']\n    \n    JSON::LD::API.compact(input, context) =>\n    {\n        \"@context\": {\n          \"name\": \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n          \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n        },\n        \"avatar\": \"https://twitter.com/account/profile_image/manusporny\",\n        \"homepage\": \"https://manu.sporny.org/\",\n        \"name\": \"Manu Sporny\"\n    }\n\n### Frame a Document\n\n    input = JSON.parse %({\n      \"@context\": {\n        \"Book\":         \"http://example.org/vocab#Book\",\n        \"Chapter\":      \"http://example.org/vocab#Chapter\",\n        \"contains\":     {\"@id\": \"http://example.org/vocab#contains\", \"@type\": \"@id\"},\n        \"creator\":      \"http://purl.org/dc/terms/creator\",\n        \"description\":  \"http://purl.org/dc/terms/description\",\n        \"Library\":      \"http://example.org/vocab#Library\",\n        \"title\":        \"http://purl.org/dc/terms/title\"\n      },\n      \"@graph\":\n      [{\n        \"@id\": \"http://example.com/library\",\n        \"@type\": \"Library\",\n        \"contains\": \"http://example.org/library/the-republic\"\n      },\n      {\n        \"@id\": \"http://example.org/library/the-republic\",\n        \"@type\": \"Book\",\n        \"creator\": \"Plato\",\n        \"title\": \"The Republic\",\n        \"contains\": \"http://example.org/library/the-republic#introduction\"\n      },\n      {\n        \"@id\": \"http://example.org/library/the-republic#introduction\",\n        \"@type\": \"Chapter\",\n        \"description\": \"An introductory chapter on The Republic.\",\n        \"title\": \"The Introduction\"\n      }]\n    })\n    \n    frame = JSON.parse %({\n      \"@context\": {\n        \"Book\":         \"http://example.org/vocab#Book\",\n        \"Chapter\":      \"http://example.org/vocab#Chapter\",\n        \"contains\":     \"http://example.org/vocab#contains\",\n        \"creator\":      \"http://purl.org/dc/terms/creator\",\n        \"description\":  \"http://purl.org/dc/terms/description\",\n        \"Library\":      \"http://example.org/vocab#Library\",\n        \"title\":        \"http://purl.org/dc/terms/title\"\n      },\n      \"@type\": \"Library\",\n      \"contains\": {\n        \"@type\": \"Book\",\n        \"contains\": {\n          \"@type\": \"Chapter\"\n        }\n      }\n    })\n\n    JSON::LD::API.frame(input, frame) =>\n    {\n      \"@context\": {\n        \"Book\": \"http://example.org/vocab#Book\",\n        \"Chapter\": \"http://example.org/vocab#Chapter\",\n        \"contains\": \"http://example.org/vocab#contains\",\n        \"creator\": \"http://purl.org/dc/terms/creator\",\n        \"description\": \"http://purl.org/dc/terms/description\",\n        \"Library\": \"http://example.org/vocab#Library\",\n        \"title\": \"http://purl.org/dc/terms/title\"\n      },\n      \"@graph\": [\n        {\n          \"@id\": \"http://example.com/library\",\n          \"@type\": \"Library\",\n          \"contains\": {\n            \"@id\": \"http://example.org/library/the-republic\",\n            \"@type\": \"Book\",\n            \"contains\": {\n              \"@id\": \"http://example.org/library/the-republic#introduction\",\n              \"@type\": \"Chapter\",\n              \"description\": \"An introductory chapter on The Republic.\",\n              \"title\": \"The Introduction\"\n            },\n            \"creator\": \"Plato\",\n            \"title\": \"The Republic\"\n          }\n        }\n      ]\n    }\n\n### Turn JSON-LD into RDF (Turtle)\n\n    input = JSON.parse %({\n      \"@context\": {\n        \"\":       \"https://manu.sporny.org/\",\n        \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n      },\n      \"@id\":       \"http://example.org/people#joebob\",\n      \"@type\":          \"foaf:Person\",\n      \"foaf:name\":      \"Joe Bob\",\n      \"foaf:nick\":      { \"@list\": [ \"joe\", \"bob\", \"jaybe\" ] }\n    })\n    \n    graph = RDF::Graph.new << JSON::LD::API.toRdf(input)\n\n    require 'rdf/turtle'\n    graph.dump(:ttl, prefixes: {foaf: \"http://xmlns.com/foaf/0.1/\"})\n    @prefix foaf: <http://xmlns.com/foaf/0.1/> .\n\n    <http://example.org/people#joebob> a foaf:Person;\n       foaf:name \"Joe Bob\";\n       foaf:nick (\"joe\" \"bob\" \"jaybe\") .\n\n### Turn RDF into JSON-LD\n\n    require 'rdf/turtle'\n    input = RDF::Graph.new << RDF::Turtle::Reader.new(%(\n      @prefix foaf: <http://xmlns.com/foaf/0.1/> .\n\n      <https://manu.sporny.org/#me> a foaf:Person;\n         foaf:knows [ a foaf:Person;\n           foaf:name \"Gregg Kellogg\"];\n         foaf:name \"Manu Sporny\" .\n    ))\n    \n    context = JSON.parse %({\n      \"@context\": {\n        \"\":       \"https://manu.sporny.org/\",\n        \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n      }\n    })\n\n    compacted = nil\n    JSON::LD::API::fromRdf(input) do |expanded|\n      compacted = JSON::LD::API.compact(expanded, context['@context'])\n    end\n    compacted =>\n      [\n        {\n          \"@id\": \"_:g70265766605380\",\n          \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n          \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Gregg Kellogg\"}]\n        },\n        {\n          \"@id\": \"https://manu.sporny.org/#me\",\n          \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n          \"http://xmlns.com/foaf/0.1/knows\": [{\"@id\": \"_:g70265766605380\"}],\n          \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu Sporny\"}]\n        }\n      ]\n\n## Use a custom Document Loader\nIn some cases, the built-in document loader {JSON::LD::API.documentLoader} is inadequate; for example, when using `http://schema.org` as a remote context, it will be re-loaded every time (however, see [json-ld-preloaded](https://rubygems.org/gems/json-ld-preloaded)).\n\nAll entries into the {JSON::LD::API} accept a `:documentLoader` option, which can be used to provide an alternative method to use when loading remote documents. For example:\n\n```ruby\nload_document_local = Proc.new do |url, **options, &block|\n  if RDF::URI(url, canonicalize: true) == RDF::URI('http://schema.org/')\n    remote_document = JSON::LD::API::RemoteDocument.new(url, File.read(\"etc/schema.org.jsonld\"))\n    return block_given? ? yield(remote_document) : remote_document\n  else\n    JSON::LD::API.documentLoader(url, options, &block)\n  end\nend\n\n```\nThen, when performing something like expansion:\n\n```ruby\nJSON::LD::API.expand(input, documentLoader: load_document_local)\n```\n\n## Preloading contexts\nIn many cases, for small documents, processing time can be dominated by loading and parsing remote contexts. In particular, a small schema.org example may need to download a large context and turn it into an internal representation, before the actual document can be expanded for processing. Using {JSON::LD::Context.add_preloaded}, an implementation can perform this loading up-front, and make it available to the processor.\n\n```ruby\n    ctx = JSON::LD::Context.new().parse('http://schema.org/')\n    JSON::LD::Context.add_preloaded('http://schema.org/', ctx)\n ```\n\nOn lookup, URIs with an `https` prefix are normalized to `http`.\n\nA context may be serialized to Ruby to speed this process using `Context#to_rb`. When loaded, this generated file will add entries to the {JSON::LD::Context::PRELOADED}.\n\n## RDF Reader and Writer\n{JSON::LD} also acts as a normal RDF reader and writer, using the standard RDF.rb reader/writer interfaces:\n\n```ruby\n    graph = RDF::Graph.load(\"etc/doap.jsonld\", format: :jsonld)\n    graph.dump(:jsonld, standard_prefixes: true)\n```\n\n`RDF::GRAPH#dump` can also take a `:context` option to use a separately defined context\n\nAs JSON-LD may come from many different sources, included as an embedded script tag within an HTML document, the RDF Reader will strip input before the leading `{` or `[` and after the trailing `}` or `]`.\n\n## Extensions from JSON-LD 1.0\nThis implementation is being used as a test-bed for features planned for an upcoming JSON-LD 1.1 Community release.\n\n### Scoped Contexts\nA term definition can include `@context`, which is applied to values of that object. This is also used when compacting. Taken together, this allows framing to effectively include context definitions more deeply within the framed structure.\n\n    {\n      \"@context\": {\n        \"ex\": \"http://example.com/\",\n        \"foo\": {\n          \"@id\": \"ex:foo\",\n          \"@type\": \"@vocab\"\n          \"@context\": {\n            \"Bar\": \"ex:Bar\",\n            \"Baz\": \"ex:Baz\"\n          }\n        }\n      },\n      \"foo\": \"Bar\"\n    }\n\n### @id and @type maps\nThe value of `@container` in a term definition can include `@id` or `@type`, in addition to `@set`, `@list`, `@language`, and `@index`. This allows value indexing based on either the `@id` or `@type` of associated objects.\n\n    {\n      \"@context\": {\n        \"@vocab\": \"http://example/\",\n        \"idmap\": {\"@container\": \"@id\"}\n      },\n      \"idmap\": {\n        \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n        \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n      }\n    }\n\n### @graph containers and maps\nA term can have `@container` set to include `@graph` optionally including `@id` or `@index` and `@set`. In the first form, with `@container` set to `@graph`, the value of a property is treated as a _simple graph object_, meaning that values treated as if they were contained in an object with `@graph`, creating _named graph_ with an anonymous name.\n\n    {\n      \"@context\": {\n        \"@vocab\": \"http://example.org/\",\n        \"input\": {\"@container\": \"@graph\"}\n      },\n      \"input\": {\n        \"value\": \"x\"\n      }\n    }\n\nwhich expands to the following:\n\n    [{\n      \"http://example.org/input\": [{\n        \"@graph\": [{\n          \"http://example.org/value\": [{\"@value\": \"x\"}]\n        }]\n      }]\n    }]\n\nCompaction reverses this process, optionally ensuring that a single value is contained within an array of `@container` also includes `@set`:\n\n    {\n      \"@context\": {\n        \"@vocab\": \"http://example.org/\",\n        \"input\": {\"@container\": [\"@graph\", \"@set\"]}\n      }\n    }\n\nA graph map uses the map form already existing for `@index`, `@language`, `@type`, and `@id` where the index is either an index value or an id.\n\n    {\n      \"@context\": {\n        \"@vocab\": \"http://example.org/\",\n        \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n      },\n      \"input\": {\n        \"g1\": {\"value\": \"x\"}\n      }\n    }\n\ntreats \"g1\" as an index, and expands to the following:\n\n    [{\n      \"http://example.org/input\": [{\n        \"@index\": \"g1\",\n        \"@graph\": [{\n          \"http://example.org/value\": [{\"@value\": \"x\"}]\n        }]\n      }]\n    }])\n\nThis can also include `@set` to ensure that, when compacting, a single value of an index will be in array form.\n\nThe _id_ version is similar:\n\n    {\n      \"@context\": {\n        \"@vocab\": \"http://example.org/\",\n        \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n      },\n      \"input\": {\n        \"http://example.com/g1\": {\"value\": \"x\"}\n      }\n    }\n\nwhich expands to:\n\n    [{\n      \"http://example.org/input\": [{\n        \"@id\": \"http://example.com/g1\",\n        \"@graph\": [{\n          \"http://example.org/value\": [{\"@value\": \"x\"}]\n        }]\n      }]\n    }])\n\n### Transparent Nesting\nMany JSON APIs separate properties from their entities using an intermediate object. For example, a set of possible labels may be grouped under a common property:\n\n    {\n      \"@context\": {\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"labels\": \"@nest\",\n        \"main_label\": {\"@id\": \"skos:prefLabel\"},\n        \"other_label\": {\"@id\": \"skos:altLabel\"},\n        \"homepage\": {\"@id\":\"http://schema.org/description\", \"@type\":\"@id\"}\n      },\n      \"@id\":\"http://example.org/myresource\",\n      \"homepage\": \"http://example.org\",\n      \"labels\": {\n         \"main_label\": \"This is the main label for my resource\",\n         \"other_label\": \"This is the other label\"\n      }\n    }\n \n In this case, the `labels` property is semantically meaningless. Defining it as equivalent to `@nest` causes it to be ignored when expanding, making it equivalent to the following:\n\n    {\n      \"@context\": {\n        \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n        \"labels\": \"@nest\",\n        \"main_label\": {\"@id\": \"skos:prefLabel\"},\n        \"other_label\": {\"@id\": \"skos:altLabel\"},\n        \"homepage\": {\"@id\":\"http://schema.org/description\", \"@type\":\"@id\"}\n      },\n      \"@id\":\"http://example.org/myresource\",\n      \"homepage\": \"http://example.org\",\n      \"main_label\": \"This is the main label for my resource\",\n      \"other_label\": \"This is the other label\"\n    }\n \n Similarly, properties may be marked with \"@nest\": \"nest-term\", to cause them to be nested. Note that the `@nest` keyword can also be aliased in the context.\n\n     {\n       \"@context\": {\n         \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n         \"labels\": \"@nest\",\n         \"main_label\": {\"@id\": \"skos:prefLabel\", \"@nest\": \"labels\"},\n         \"other_label\": {\"@id\": \"skos:altLabel\", \"@nest\": \"labels\"},\n         \"homepage\": {\"@id\":\"http://schema.org/description\", \"@type\":\"@id\"}\n       },\n       \"@id\":\"http://example.org/myresource\",\n       \"homepage\": \"http://example.org\",\n       \"labels\": {\n          \"main_label\": \"This is the main label for my resource\",\n          \"other_label\": \"This is the other label\"\n       }\n     }\n\nIn this way, nesting survives round-tripping through expansion, and framed output can include nested properties.\n\n## Sinatra/Rack support\nJSON-LD 1.1 describes support for the _profile_ parameter to a media type in an HTTP ACCEPT header. This allows an HTTP request to specify the format (expanded/compacted/flattened/framed) along with a reference to a context or frame to use to format the returned document.\n\nAn HTTP header may be constructed as follows:\n\n    GET /ordinary-json-document.json HTTP/1.1\n    Host: example.com\n    Accept: application/ld+json;profile=\"http://www.w3.org/ns/json-ld#compacted http://conneg.example.com/context\", application/ld+json\n\nThis tells a server that the top priority is to return JSON-LD compacted using a context at `http://conneg.example.com/context`, and if not available, to just return any form of JSON-LD.\n\nThe {JSON::LD::ContentNegotiation} class provides a [Rack][Rack] `call` method, and [Sinatra][Sinatra] `registered` class method to allow content-negotiation using such profile parameters. For example:\n\n    #!/usr/bin/env rackup\n    require 'sinatra/base'\n    require 'json/ld'\n    \n    module My\n      class Application < Sinatra::Base\n        register JSON::LD::ContentNegotiation\n    \n        get '/hello' do\n          [{\n            \"http://example.org/input\": [{\n              \"@id\": \"http://example.com/g1\",\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }]\n            }]\n          }])\n        end\n      end\n    end\n    \n    run My::Application\n\nThe {JSON::LD::ContentNegotiation#call} method looks for a result which includes an object, with an acceptable `Accept` header and formats the result as JSON-LD, considering the profile parameters. This can be tested using something like the following:\n\n    $ rackup config.ru\n    \n    $ curl -iH 'Accept: application/ld+json;profile=\"http://www.w3.org/ns/json-ld#compacted http://conneg.example.com/context\"' http://localhost:9292/hello\n\nSee [Rack::LinkedData][] to do the same thing with an RDF Graph or Dataset as the source, rather than Ruby objects.\n\n## Documentation\nFull documentation available on [RubyDoc](https://ruby-rdf.github.io/json-ld/file/README.md)\n\n## Differences from [JSON-LD API][]\nThe specified JSON-LD API is based on a WebIDL definition implementing [Promises][] intended for use within a browser.\nThis version implements a more Ruby-like variation of this API without the use\nof promises or callback arguments, preferring Ruby blocks. All API methods\nexecute synchronously, so that the return from a method can typically be used as well as a block.\n\nNote, the API method signatures differed in versions before 1.0, in that they also had a callback parameter. And 1.0.6 has some other minor method signature differences than previous versions. This should be the only exception to the use of semantic versioning.\n\n### Principal Classes\n* {JSON::LD}\n  * {JSON::LD::API}\n  * {JSON::LD::Compact}\n  * {JSON::LD::Context}\n  * {JSON::LD::Format}\n  * {JSON::LD::Frame}\n  * {JSON::LD::FromRDF}\n  * {JSON::LD::Reader}\n  * {JSON::LD::ToRDF}\n  * {JSON::LD::Writer}\n\n## Dependencies\n* [Ruby](https://ruby-lang.org/) (>= 3.0)\n* [RDF.rb](https://rubygems.org/gems/rdf) (~> 3.3)\n* [JSON](https://rubygems.org/gems/json) (>= 2.6)\n\n## Installation\nThe recommended installation method is via [RubyGems](https://rubygems.org/).\nTo install the latest official release of the `JSON-LD` gem, do:\n\n    % [sudo] gem install json-ld\n\n## Download\nTo get a local working copy of the development repository, do:\n\n    % git clone git://github.com/ruby-rdf/json-ld.git\n\n## Change Log\n\nSee [Release Notes on GitHub](https://github.com/ruby-rdf/json-ld/releases)\n\n## Mailing List\n* <https://lists.w3.org/Archives/Public/public-rdf-ruby/>\n\n## Author\n* [Gregg Kellogg](https://github.com/gkellogg) - <https://greggkellogg.net/>\n\n## Contributing\n* Do your best to adhere to the existing coding conventions and idioms.\n* Don't use hard tabs, and don't leave trailing whitespace on any line.\n* Do document every method you add using [YARD][] annotations. Read the\n  [tutorial][YARD-GS] or just look at the existing code for examples.\n* Don't touch the `json-ld.gemspec`, `VERSION` or `AUTHORS` files. If you need to\n  change them, do so on your private branch only.\n* Do feel free to add yourself to the `CREDITS` file and the corresponding\n  list in the the `README`. Alphabetical order applies.\n* Do note that in order for us to merge any non-trivial changes (as a rule\n  of thumb, additions larger than about 15 lines of code), we need an\n  explicit [public domain dedication][PDD] on record from you,\n  which you will be asked to agree to on the first commit to a repo within the organization.\n  Note that the agreement applies to all repos in the [Ruby RDF](https://github.com/ruby-rdf/) organization.\n\n## License\n\nThis is free and unencumbered public domain software. For more information,\nsee <https://unlicense.org/> or the accompanying {file:UNLICENSE} file.\n\n[Ruby]:             https://ruby-lang.org/\n[RDF]:              https://www.w3.org/RDF/\n[YARD]:             https://yardoc.org/\n[YARD-GS]:          https://rubydoc.info/docs/yard/file/docs/GettingStarted.md\n[PDD]:              https://unlicense.org/#unlicensing-contributions\n[RDF.rb]:           https://rubygems.org/gems/rdf\n[JSON-LD-star]:             https://json-ld.github.io/json-ld-star/\n[Rack::LinkedData]: https://rubygems.org/gems/rack-linkeddata\n[Backports]:        https://rubygems.org/gems/backports\n[JSON-LD]:          https://www.w3.org/TR/json-ld11/ \"JSON-LD 1.1\"\n[JSON-LD API]:      https://www.w3.org/TR/json-ld11-api/ \"JSON-LD 1.1 Processing Algorithms and API\"\n[JSON-LD Framing]:  https://www.w3.org/TR/json-ld11-framing/ \"JSON-LD 1.1 Framing\"\n[Promises]:         https://dom.spec.whatwg.org/#promises\n[jsonlint]:         https://rubygems.org/gems/jsonlint\n[Sinatra]:          https://www.sinatrarb.com/\n[Rack]:             https://rack.github.com/\n"
  },
  {
    "path": "Rakefile",
    "content": "# frozen_string_literal: true\n\nrequire 'rubygems'\n\ntask default: [:spec]\n\nnamespace :gem do\n  desc \"Build the json-ld-#{File.read('VERSION').chomp}.gem file\"\n  task :build do\n    sh \"gem build json-ld.gemspec && mv json-ld-#{File.read('VERSION').chomp}.gem pkg/\"\n  end\n\n  desc \"Release the json-ld-#{File.read('VERSION').chomp}.gem file\"\n  task :release do\n    sh \"gem push pkg/json-ld-#{File.read('VERSION').chomp}.gem\"\n  end\nend\n\nrequire 'rspec/core/rake_task'\ndesc 'Run specifications'\nRSpec::Core::RakeTask.new(:spec) do |spec|\n  spec.rspec_opts = %w[--options spec/spec.opts] if File.exist?('spec/spec.opts')\nend\n\ndesc \"Generate schema.org context\"\ntask :schema_context do\n  `\n    script/gen_context https://schema.org/docs/schema_org_rdfa.html \\\n      --vocab http://schema.org/ \\\n      --prefix 'schema http://schema.org/' \\\n      --body --hier \\\n      --o etc/schema.org.jsonld\n  `\nend\n\ndesc \"Create concatenated test manifests\"\nfile \"etc/manifests.nt\" do\n  require 'rdf'\n  require 'json/ld'\n  require 'rdf/ntriples'\n  graph = RDF::Graph.new do |g|\n    %w[ https://w3c.github.io/json-ld-api/tests/compact-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/expand-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/flatten-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/fromRdf-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/html-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/remote-doc-manifest.jsonld\n        https://w3c.github.io/json-ld-api/tests/toRdf-manifest.jsonld\n        https://w3c.github.io/json-ld-framing/tests/frame-manifest.jsonld].each do |man|\n      puts \"load #{man}\"\n      g.load(man, unique_bnodes: true)\n    end\n  end\n  puts \"write\"\n  RDF::NTriples::Writer.open(\"etc/manifests.nt\", unique_bnodes: true, validate: false) { |w| w << graph }\nend\n\n# Presentation building\nnamespace :presentation do\n  desc \"Clean presentation files\"\n  task :clean do\n    FileUtils.rm %w[compacted expanded framed].map { |f| \"presentation/dbpedia/#{f}.jsonld\" }\n  end\n\n  desc \"Build presentation files\"\n  task build: %w[\n    presentation/dbpedia/expanded.jsonld\n    presentation/dbpedia/compacted.jsonld\n    presentation/dbpedia/framed.jsonld\n  ]\n\n  desc \"Build expanded example\"\n  file \"presentation/dbpedia/expanded.jsonld\" => %w[\n    presentation/dbpedia/orig.jsonld\n    presentation/dbpedia/expanded-context.jsonld\n  ] do\n    system(%w[\n      script/parse\n      --expand presentation/dbpedia/orig.jsonld\n      --context presentation/dbpedia/expanded-context.jsonld\n      -o presentation/dbpedia/expanded.jsonld\n    ].join(\" \"))\n  end\n\n  desc \"Build compacted example\"\n  file \"presentation/dbpedia/compacted.jsonld\" => %w[\n    presentation/dbpedia/expanded.jsonld\n    presentation/dbpedia/compact-context.jsonld\n  ] do\n    system(%w[\n      script/parse\n      --compact presentation/dbpedia/expanded.jsonld\n      --context presentation/dbpedia/compact-context.jsonld\n      -o presentation/dbpedia/compacted.jsonld\n    ].join(\" \"))\n  end\n\n  desc \"Build framed example\"\n  file \"presentation/dbpedia/framed.jsonld\" => %w[\n    presentation/dbpedia/expanded.jsonld\n    presentation/dbpedia/frame.jsonld\n  ] do\n    system(%w[\n      script/parse\n      --frame presentation/dbpedia/frame.jsonld\n      presentation/dbpedia/expanded.jsonld\n      -o presentation/dbpedia/framed.jsonld\n    ].join(\" \"))\n  end\nend\n\nrequire 'yard'\nnamespace :doc do\n  YARD::Rake::YardocTask.new\nend\n\ntask default: :spec\ntask specs: :spec\n"
  },
  {
    "path": "UNLICENSE",
    "content": "This is free and unencumbered software released into the public domain.\n\nAnyone is free to copy, modify, publish, use, compile, sell, or\ndistribute this software, either in source code form or as a compiled\nbinary, for any purpose, commercial or non-commercial, and by any\nmeans.\n\nIn jurisdictions that recognize copyright laws, the author or authors\nof this software dedicate any and all copyright interest in the\nsoftware to the public domain. We make this dedication for the benefit\nof the public at large and to the detriment of our heirs and\nsuccessors. We intend this dedication to be an overt act of\nrelinquishment in perpetuity of all present and future rights to this\nsoftware under copyright law.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR\nOTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,\nARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR\nOTHER DEALINGS IN THE SOFTWARE.\n\nFor more information, please refer to <https://unlicense.org/>\n"
  },
  {
    "path": "VERSION",
    "content": "3.3.2\n"
  },
  {
    "path": "bin/jsonld",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\nbegin\n  require 'linkeddata'\nrescue LoadError\nend\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nrequire 'json/ld'\nrequire 'getoptlong'\nrequire 'open-uri'\nrequire 'logger'\n\ndef run(input, options, parser_options)\n  reader_class = RDF::Reader.for(options[:input_format].to_sym)\n  raise \"Reader not found for #{options[:input_format]}\" unless reader_class\n\n  # Override default (or specified) output format when framing\n  options[:format] = :jsonld if options[:compact] || options[:frame]\n\n  # If input format is not JSON-LD, transform input to JSON-LD first\n  reader = if options[:input_format] != :jsonld\n    reader_class.new(input, parser_options)\n  end\n\n  start = Time.new\n  if options[:expand]\n    parser_options = parser_options.merge(expandContext: parser_options.delete(:context)) if parser_options.key?(:context)\n    input = JSON::LD::API.fromRdf(reader) if reader\n    output = JSON::LD::API.expand(input, **parser_options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    STDERR.puts \"Expanded in #{secs} seconds.\" unless options[:quiet]\n  elsif options[:compact]\n    input = JSON::LD::API.fromRdf(reader) if reader\n    output = JSON::LD::API.compact(input, parser_options[:context], **parser_options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    STDERR.puts \"Compacted in #{secs} seconds.\" unless options[:quiet]\n  elsif options[:flatten]\n    input = JSON::LD::API.fromRdf(reader) if reader\n    output = JSON::LD::API.flatten(input, parser_options[:context], **parser_options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    STDERR.puts \"Flattened in #{secs} seconds.\" unless options[:quiet]\n  elsif options[:frame]\n    input = JSON::LD::API.fromRdf(reader) if reader\n    output = JSON::LD::API.frame(input, parser_options[:frame], **parser_options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    STDERR.puts \"Framed in #{secs} seconds.\" unless options[:quiet]\n  else\n    parser_options = parser_options.merge(expandContext: parser_options.delete(:context)) if parser_options.key?(:context)\n    parser_options[:standard_prefixes] = true\n    reader ||= JSON::LD::Reader.new(input, **parser_options)\n    num = 0\n    RDF::Writer.for(options[:output_format]).new(options[:output], **parser_options) do |w|\n      reader.each do |statement|\n        num += 1\n        w << statement\n      end\n    end\n    secs = Time.new - start\n    STDERR.puts \"\\nParsed #{num} statements in #{secs} seconds @ #{num/secs} statements/second.\" unless options[:quiet]\n  end\nrescue\n  fname = case\n  when input.respond_to?(:path) then input.path\n  when input.respond_to?(:requested_url) && input.requested_url then input.requested_url\n  when input.respond_to?(:base_uri) then input.base_uri\n  else  \"-stdin-\"\n  end\n  STDERR.puts(\"Error in #{fname}\")\n  raise\nend\n\nlogger = Logger.new(STDERR)\nlogger.level = Logger::WARN\nlogger.formatter = lambda {|severity, datetime, progname, msg| \"#{severity}: #{msg}\\n\"}\n\nparser_options = {\n  base:     nil,\n  validate: false,\n  stream:   false,\n  strict:   false,\n  logger:   logger,\n}\n\noptions = {\n  output:         STDOUT,\n  output_format:  :jsonld,\n  input_format:   :jsonld,\n  logger:         logger,\n}\ninput = nil\n\nOPT_ARGS = [\n  [\"--debug\",         GetoptLong::NO_ARGUMENT,      \"Turn on verbose debugging\"],\n  [\"--compact\",       GetoptLong::NO_ARGUMENT,      \"Compact document, using --context\"],\n  [\"--compactArrays\", GetoptLong::OPTIONAL_ARGUMENT, \"Set compactArrays option\"],\n  [\"--context\",       GetoptLong::REQUIRED_ARGUMENT,\"Context to apply for expand, compact and converting from RDF\"],\n  [\"--embed\",         GetoptLong::REQUIRED_ARGUMENT,\"a flag specifying that objects should be directly embedded in the output, instead of being referred to by their IRI\"],\n  [\"--evaluate\",\"-e\", GetoptLong::REQUIRED_ARGUMENT,\"Evaluate argument as a JSON-LD document\"],\n  [\"--expand\",        GetoptLong::NO_ARGUMENT,      \"Expand document, using an optional --context\"],\n  [\"--expanded\",      GetoptLong::OPTIONAL_ARGUMENT, \"Input is already expanded\"],\n  [\"--explicit\",      GetoptLong::OPTIONAL_ARGUMENT, \"a flag specifying that for properties to be included in the output, they must be explicitly declared in the framing context\"],\n  [\"--flatten\",       GetoptLong::NO_ARGUMENT,      \"Flatten document, using an optional --context\"],\n  [\"--format\",        GetoptLong::REQUIRED_ARGUMENT,\"Specify output format when converting to RDF\"],\n  [\"--frame\",         GetoptLong::REQUIRED_ARGUMENT,\"Frame document, using the file or URL as a frame specification\"],\n  [\"--input-format\",  GetoptLong::REQUIRED_ARGUMENT,\"Format of the input document, when converting from RDF.\"],\n  [\"--omitDefault\",   GetoptLong::OPTIONAL_ARGUMENT,\"a flag specifying that properties that are missing from the JSON-LD input should be omitted from the output\"],\n  [\"--output\", \"-o\",  GetoptLong::REQUIRED_ARGUMENT,\"Output to the specified file path\"],\n  [\"--parse-only\",    GetoptLong::NO_ARGUMENT,      \"Parse the document for well-formedness only\"],\n  [\"--processingMode\",GetoptLong::REQUIRED_ARGUMENT,\"Set processing mode, defaults to json-ld-1.1\"],\n  [\"--quiet\",         GetoptLong::NO_ARGUMENT,      \"Supress most output other than progress indicators\"],\n  [\"--rename_bnodes\", GetoptLong::OPTIONAL_ARGUMENT,\"Rename bnodes as part of expansion, or keep them the same\"],\n  [\"--rdfstar\",       GetoptLong::NO_ARGUMENT,      \"Parse JSON-LD-star\"],\n  [\"--requireAll\",    GetoptLong::OPTIONAL_ARGUMENT,\"Rename bnodes as part of expansion, or keep them the same\"],\n  [\"--stream\",        GetoptLong::NO_ARGUMENT,      \"Use Streaming reader/writer\"],\n  [\"--unique_bnodes\", GetoptLong::OPTIONAL_ARGUMENT,\"Use unique bnode identifiers\"],\n  [\"--uri\",           GetoptLong::REQUIRED_ARGUMENT,\"URI to be used as the document base\"],\n  [\"--validate\",      GetoptLong::NO_ARGUMENT,      \"Validate while processing\"],\n  [\"--help\", \"-?\",    GetoptLong::NO_ARGUMENT,      \"This message\"]\n]\ndef usage\n  STDERR.puts %{Usage: #{$0} [options] file ...}\n  width = OPT_ARGS.map do |o|\n    l = o.first.length\n    l += o[1].length + 2 if o[1].is_a?(String)\n    l\n  end.max\n  OPT_ARGS.each do |o|\n    s = \"  %-*s  \" % [width, (o[1].is_a?(String) ? \"#{o[0,2].join(', ')}\" : o[0])]\n    s += o.last\n    STDERR.puts s\n  end\n  exit(1)\nend\n\nopts = GetoptLong.new(*OPT_ARGS.map {|o| o[0..-2]})\n\nopts.each do |opt, arg|\n  case opt\n  when '--debug'          then logger.level = Logger::DEBUG\n  when '--compact'        then options[:compact] = true\n  when \"--compactArrays\"  then parser_options[:compactArrays] = (arg || 'true') == 'true'\n  when '--context'        then parser_options[:context] = RDF::URI(arg).absolute? ? arg : File.open(arg)\n  when '--evaluate'       then input = arg\n  when '--expand'         then options[:expand] = true\n  when \"--expanded\"       then parser_options[:expanded] = (arg || 'true') == 'true'\n  when \"--explicit\"       then parser_options[:compactArrays] = (arg || 'true') == 'true'\n  when '--format'         then options[:output_format] = arg.to_sym\n  when '--flatten'        then options[:flatten] = arg\n  when '--frame'          then options[:frame] = parser_otpions[:frame] = RDF::URI(arg).absolute? ? arg : File.open(arg)\n  when '--input-format'   then options[:input_format] = arg.to_sym\n  when \"--omitDefault\"    then parser_options[:omitDefault] = (arg || 'true') == 'true'\n  when '--output'         then options[:output] = File.open(arg, \"w\")\n  when '--parse-only'     then options[:parse_only] = true\n  when '--processingMode' then parser_options[:processingMode] = arg\n  when '--quiet'\n    options[:quiet] = true\n    logger.level = Logger::FATAL\n  when \"--rdfstar\"        then parser_options[:rdfstar] = true\n  when \"--rename_bnodes\"  then parser_options[:rename_bnodes] = (arg || 'true') == 'true'\n  when \"--requireAll\"     then parser_options[:requireAll] = (arg || 'true') == 'true'\n  when '--stream'         then parser_options[:stream] = true\n  when \"--unique_bnodes\"  then parser_options[:unique_bnodes] = (arg || 'true') == 'true'\n  when '--uri'            then parser_options[:base] = arg\n  when '--validate'       then parser_options[:validate] = true\n  when '--help'           then usage\n  when '--embed'\n    case arg\n    when '@always', '@never', '@link', '@once'\n      parser_options[:embed] = arg\n    when 'true'\n      parser_options[:embed] = '@never'\n    when 'false'\n      parser_options[:embed] = '@first'\n    else\n      STDERR.puts \"--embed option takes one of @always, @never, @link, or @once\"\n      exit(1)\n    end\n  end\nend\n\n# Hack\nif !(options.keys & %i{expand compact flatten frame}).empty? &&\n   (parser_options[:stream] || options[:output_format] != :jsonld)\n   STDERR.puts \"Incompatible options\"\n   exit(1)\nend\n\nif ARGV.empty?\n  s = input ? input : $stdin.read\n  run(StringIO.new(s), options, parser_options)\nelse\n  ARGV.each do |file|\n    # Call with opened files\n    RDF::Util::File.open_file(file, **options) {|f| run(f, options, parser_options)}\n  end\nend\nputs\n"
  },
  {
    "path": "dependencyci.yml",
    "content": "platform:\n  Rubygems:\n    rdf-isomorphic:\n      tests:\n        unmaintained: skip"
  },
  {
    "path": "earl.jsonld",
    "content": ""
  },
  {
    "path": "etc/.earl",
    "content": "---\n:format: :json\n:manifest: manifests.nt\n:bibRef: ! '[[json-ld-api]]'\n:name: JSON-LD 1.1 Processing Algorithms and API\n:query: |\n  PREFIX mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#>\n  PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>\n  PREFIX jld: <https://w3c.github.io/json-ld-api/tests/vocab#>\n\n  SELECT ?uri ?testAction ?manUri\n  WHERE {\n    ?uri mf:action ?testAction .\n    OPTIONAL {\n      ?uri jld:option [jld:specVersion ?version] .\n    }\n    FILTER (!bound(?version) || ?version != 'json-ld-1.0')\n    OPTIONAL {\n      ?manUri a mf:Manifest; mf:entries ?lh .\n      ?lh rdf:first ?uri .\n    }\n  }\n"
  },
  {
    "path": "etc/.gitignore",
    "content": "/.byebug_history\n"
  },
  {
    "path": "etc/README",
    "content": "This is a collection of individual EARL reports for\ntest subjects claiming Turtle processor conformance.\n\nThe consolodated report is saved to index.html generated\nusing the earl-report Ruby gem. Run it as follows:\n\ngem install earl-report\n\nrm manifests.nt && (cd ..; rake etc/manifests.nt)\nearl-report --format json -o earl.jsonld earl.ttl\nearl-report --json --format html --template template.haml -o earl.html earl.jsonld\n"
  },
  {
    "path": "etc/doap.jsonld",
    "content": "{\n  \"@context\": {\n      \"dc\":   \"http://purl.org/dc/terms/\",\n      \"doap\": \"http://usefulinc.com/ns/doap#\",\n      \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n      \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n      \"xsd\":  \"http://www.w3.org/2001/XMLSchema#\",\n      \"dc:creator\": {\"@type\": \"@id\"},\n      \"doap:created\": {\"@type\": \"xsd:date\"},\n      \"doap:homepage\": {\"@type\": \"@id\"},\n      \"doap:bug-database\": {\"@type\": \"@id\"},\n      \"doap:blog\": {\"@type\": \"@id\"},\n      \"doap:developer\": {\"@type\": \"@id\"},\n      \"doap:implements\": {\"@type\": \"@id\"},\n      \"doap:maintainer\": {\"@type\": \"@id\"},\n      \"doap:documenter\": {\"@type\": \"@id\"},\n      \"doap:license\": {\"@type\": \"@id\"},\n      \"doap:description\": {\"@language\": \"en\"},\n      \"doap:shortdesc\": {\"@language\": \"en\"},\n      \"foaf:maker\": {\"@type\": \"@id\"},\n      \"foaf:mbox\": {\"@type\": \"@id\"},\n      \"foaf:made\": {\"@type\": \"@id\"},\n      \"rdfs:isDefinedBy\": {\"@type\": \"@id\"}\n    },\n    \"@id\":                \"https://rubygems.org/gems/json-ld\",\n    \"@type\":              \"doap:Project\",\n    \"doap:name\":          \"JSON::LD\",\n    \"doap:homepage\":      \"https://github.com/ruby-rdf/json-ld/\",\n    \"doap:license\":       \"https://unlicense.org/1.0/\",\n    \"doap:shortdesc\":     \"JSON-LD support for RDF.rb.\",\n    \"doap:description\":   \"RDF.rb extension for parsing/serializing JSON-LD data.\",\n    \"doap:created\":       \"2011-05-07\",\n    \"doap:programming-language\": \"Ruby\",\n    \"doap:implements\":    [\n                            \"https://www.w3.org/TR/json-ld11/\",\n                            \"https://www.w3.org/TR/json-ld11-api/\",\n                            \"https://www.w3.org/TR/json-ld11-framing/\"\n    ],\n    \"doap:bug-database\":  \"https://github.com/ruby-rdf/json-ld/issues\",\n    \"doap:blog\":          \"https://greggkellogg.net/\",\n    \"doap:developer\":     \"https://greggkellogg.net/foaf#me\",\n    \"doap:maintainer\":    \"https://greggkellogg.net/foaf#me\",\n    \"doap:documenter\":    \"https://greggkellogg.net/foaf#me\",\n    \"foaf:maker\":         \"https://greggkellogg.net/foaf#me\",\n    \"dc:creator\":         {\n        \"@id\":              \"https://greggkellogg.net/foaf#me\",\n        \"@type\":            \"foaf:Person\",\n        \"foaf:name\":        \"Gregg Kellogg\",\n        \"foaf:mbox\":        \"mailto:gregg@greggkellogg.net\",\n        \"foaf:made\":        \"https://rubygems.org/gems/json-ld\",\n        \"rdfs:isDefinedBy\": \"https://greggkellogg.net/foaf\"\n    }\n}\n"
  },
  {
    "path": "etc/doap.nt",
    "content": "<https://greggkellogg.net/foaf#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .\n<https://greggkellogg.net/foaf#me> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <https://greggkellogg.net/foaf> .\n<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/made> <https://rubygems.org/gems/json-ld> .\n<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/mbox> <mailto:gregg@greggkellogg.net> .\n<https://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> \"Gregg Kellogg\" .\n<https://rubygems.org/gems/json-ld> <http://purl.org/dc/terms/creator> <https://greggkellogg.net/foaf#me> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#blog> <https://greggkellogg.net/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#bug-database> <https://github.com/ruby-rdf/json-ld/issues> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#created> \"2011-05-07\"^^<http://www.w3.org/2001/XMLSchema#date> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#description> \"RDF.rb extension for parsing/serializing JSON-LD data.\"@en .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#developer> <https://greggkellogg.net/foaf#me> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#documenter> <https://greggkellogg.net/foaf#me> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#homepage> <https://github.com/ruby-rdf/json-ld/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11-api/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11-framing/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#implements> <https://www.w3.org/TR/json-ld11/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#license> <https://unlicense.org/1.0/> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#maintainer> <https://greggkellogg.net/foaf#me> .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#name> \"JSON::LD\" .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#programming-language> \"Ruby\" .\n<https://rubygems.org/gems/json-ld> <http://usefulinc.com/ns/doap#shortdesc> \"JSON-LD support for RDF.rb.\"@en .\n<https://rubygems.org/gems/json-ld> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://usefulinc.com/ns/doap#Project> .\n<https://rubygems.org/gems/json-ld> <http://xmlns.com/foaf/0.1/maker> <https://greggkellogg.net/foaf#me> .\n"
  },
  {
    "path": "etc/doap.ttl",
    "content": "@base         <https://rubygems.org/gems/json-ld> .\n@prefix dc:   <http://purl.org/dc/terms/> .\n@prefix earl: <http://www.w3.org/ns/earl#> .\n@prefix doap: <http://usefulinc.com/ns/doap#> .\n@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix rdf:  <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix xsd:  <http://www.w3.org/2001/XMLSchema#> .\n\n<> a doap:Project;\n   doap:name \"JSON::LD\"^^xsd:string;\n   doap:shortdesc \"JSON-LD support for Ruby.\"@en;\n   doap:description \"JSON::LD parses and serializes JSON-LD into RDF and implements expansion, compaction and framing API interfaces for the Ruby RDF.rb library suite.\"@en;\n   dc:creator <https://greggkellogg.net/foaf#me>;\n   doap:blog <https://greggkellogg.net/>;\n   doap:bug-database <https://github.com/ruby-rdf/json-ld/issues>;\n   doap:created \"2011-05-07\"^^xsd:date;\n   doap:developer <https://greggkellogg.net/foaf#me>;\n   doap:documenter <https://greggkellogg.net/foaf#me>;\n   doap:homepage <https://github.com/ruby-rdf/json-ld/>;\n   doap:implements <https://www.w3.org/TR/json-ld11/>,\n     <https://www.w3.org/TR/json-ld11-api/>,\n     <https://www.w3.org/TR/json-ld11-framing/>;\n   doap:license <https://unlicense.org/1.0/>;\n   doap:maintainer <https://greggkellogg.net/foaf#me>;\n   doap:programming-language \"Ruby\";\n   foaf:maker <https://greggkellogg.net/foaf#me> .\n\n<https://greggkellogg.net/foaf#me> a foaf:Person;\n   rdfs:isDefinedBy <https://greggkellogg.net/foaf>;\n   foaf:made <>;\n   foaf:mbox <mailto:gregg@greggkellogg.net>;\n   foaf:name \"Gregg Kellogg\"^^xsd:string .\n"
  },
  {
    "path": "etc/earl-stream.ttl",
    "content": "@prefix dc: <http://purl.org/dc/terms/> .\n@prefix earl: <http://www.w3.org/ns/earl#> .\n@prefix doap: <http://usefulinc.com/ns/doap#> .\n@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n<https://rubygems.org/gems/json-ld> a doap:Project;\n   dc:creator <https://greggkellogg.net/foaf#me>;\n   doap:blog <https://greggkellogg.net/>;\n   doap:bug-database <https://github.com/ruby-rdf/json-ld/issues>;\n   doap:created \"2011-05-07\"^^xsd:date;\n   doap:description \"RDF.rb extension for parsing/serializing JSON-LD data.\"@en;\n   doap:developer <https://greggkellogg.net/foaf#me>;\n   doap:documenter <https://greggkellogg.net/foaf#me>;\n   doap:homepage <https://github.com/ruby-rdf/json-ld/>;\n   doap:implements <https://www.w3.org/TR/json-ld11/>,\n     <https://www.w3.org/TR/json-ld11-api/>,\n     <https://www.w3.org/TR/json-ld11-framing/>;\n   doap:license <https://unlicense.org/1.0/>;\n   doap:maintainer <https://greggkellogg.net/foaf#me>;\n   doap:name \"JSON::LD\"^^xsd:string;\n   doap:programming-language \"Ruby\"^^xsd:string;\n   doap:shortdesc \"JSON-LD support for RDF.rb.\"@en;\n   foaf:maker <https://greggkellogg.net/foaf#me> .\n\n<https://greggkellogg.net/foaf#me> a foaf:Person;\n   rdfs:isDefinedBy <https://greggkellogg.net/foaf>;\n   foaf:made <https://rubygems.org/gems/json-ld>;\n   foaf:mbox <mailto:gregg@greggkellogg.net>;\n   foaf:name \"Gregg Kellogg\"^^xsd:string .\n\n<https://rubygems.org/gems/json-ld> doap:release [\n  doap:name \"json-ld-3.1.4\";\n  doap:revision \"3.1.4\";\n  doap:created \"2020-04-28\"^^xsd:date;\n] .\n<> foaf:primaryTopic <https://rubygems.org/gems/json-ld>;\n  dc:issued \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime;\n  foaf:maker <http://greggkellogg.net/foaf#me> .\n\n<http://greggkellogg.net/foaf#me> a earl:Assertor;\n  foaf:title \"Implementor\" .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0113>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0114>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0115>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0116>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0117>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0119>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0120>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0121>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0122>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0123>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0124>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0125>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0126>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0127>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0128>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0129>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0130>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0131>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0132>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tc035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tdi12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te051>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te052>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te053>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te054>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te055>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te056>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te057>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te058>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te059>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te060>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te061>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te062>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te063>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te064>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te065>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te066>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te067>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te068>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te069>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te070>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te072>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te073>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te074>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te075>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te076>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te077>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te078>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te079>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te080>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te081>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te082>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te083>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te084>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te085>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te086>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te087>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te088>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te089>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te090>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te091>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te092>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te093>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te094>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te095>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te096>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te097>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te098>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te099>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te100>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te101>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te102>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te103>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te104>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te105>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te106>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te107>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te108>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te109>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te110>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te111>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te112>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te113>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te114>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te117>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te118>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te119>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te120>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te121>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te122>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te123>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0124>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#t0125>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te126>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te127>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te128>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te129>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#te130>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tec01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tec02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tem01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ten06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tep02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tep03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter41>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter42>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter43>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter44>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter48>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter49>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter50>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter51>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter52>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ter53>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:failed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tin09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tjs23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tli10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tm020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tn008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tnt16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tp004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr24>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr32>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tpr40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#trt01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tse09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tso13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ttn01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#ttn02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#tv022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-streaming/tests/stream-toRdf-manifest#twf07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:47:11-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n"
  },
  {
    "path": "etc/earl.html",
    "content": "<!DOCTYPE html>\n<html prefix='earl: http://www.w3.org/ns/earl# doap: http://usefulinc.com/ns/doap# mf: http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#'>\n<head>\n<meta content='text/html;charset=utf-8' http-equiv='Content-Type' />\n<meta content='width=device-width, initial-scale=1.0' name='viewport' />\n<link href='https://www.w3.org/StyleSheets/TR/base' rel='stylesheet' type='text/css' />\n<title>\nJSON-LD 1.1 Processing Algorithms and API\nImplementation Report\n</title>\n<style type='text/css'>\n  /*<![CDATA[*/\n    span[property='dc:description'] { display: none; }\n    td.PASS { color: green; }\n    td.FAIL { color: red; }\n    table.report {\n      border-width: 1px;\n      border-spacing: 2px;\n      border-style: outset;\n      border-color: gray;\n      border-collapse: separate;\n      background-color: white;\n    }\n    table.report th {\n      border-width: 1px;\n      padding: 1px;\n      border-style: inset;\n      border-color: gray;\n      background-color: white;\n      -moz-border-radius: ;\n    }\n    table.report td {\n      border-width: 1px;\n      padding: 1px;\n      border-style: inset;\n      border-color: gray;\n      background-color: white;\n      -moz-border-radius: ;\n    }\n    tr.summary {font-weight: bold;}\n    td.passed-all {color: green;}\n    td.passed-most {color: darkorange;}\n    td.passed-some {color: red;}\n    td.passed-none {color: gray;}\n    em.rfc2119 { \n      text-transform: lowercase;\n      font-variant:   small-caps;\n      font-style:     normal;\n      color:          #900;\n    }\n    a.testlink {\n      color: inherit;\n      text-decoration: none;\n    }\n    a.testlink:hover {\n      text-decoration: underline;\n    }\n  /*]]>*/\n</style>\n</head>\n<body>\n<section about='' typeof='doap:Project Software'>\n<h2>\nRuby JSON-LD gem test results\n</h2>\n<p>\nThis document reports conformance for for\n<a href='https://www.w3.org/TR/json-ld11-api/' property='doap:name'>JSON-LD 1.1 Processing Algorithms and API</a>\n<a href='https://www.w3.org/TR/json-ld11-framing/' property='doap:name'>JSON-LD 1.1 Framing</a>\n</p>\n<dl>\n<dt id='subj_0'>\n<a href='https://rubygems.org/gems/json-ld'>\n<span about='https://rubygems.org/gems/json-ld' property='doap:name'>JSON::LD</span>\n</a>\n</dt>\n<dd property='earl:testSubjects' resource='https://rubygems.org/gems/json-ld' typeof='TestSubject doap:Project Software'>\n<dl>\n<dt>Description</dt>\n<dd lang='en' property='doap:description'>RDF.rb extension for parsing/serializing JSON-LD data.</dd>\n<dt>Release</dt>\n<dd property='doap:release'><span property='doap:revision'>3.1.4</span></dd>\n<dt>Home Page</dt>\n<dd property='doap:homepage'>\n<a href='https://github.com/ruby-rdf/json-ld/'>\nhttps://github.com/ruby-rdf/json-ld/\n</a>\n</dd>\n<dt>Developer</dt>\n<dd rel='doap:developer'>\n<div resource='https://greggkellogg.net/foaf#me' typeof='foaf:Person'>\n<a href='https://greggkellogg.net/foaf#me'>\n<span property='foaf:name'>Gregg Kellogg</span>\n</a>\n</div>\n</dd>\n<dt>\nTest Suite Compliance\n</dt>\n<dd>\n<table class='report'>\n<tbody>\n<tr>\n<td>\n<a href='#These-tests-implement-the-requirements-for-the-JSON-LD-[Compaction-Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm).'>\nThese tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm).\n</a>\n</td>\n<td class='passed-all'>\n238/238 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#These-tests-implement-the-requirements-for-the-JSON-LD-[Expansion-Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm).'>\nThese tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm).\n</a>\n</td>\n<td class='passed-all'>\n366/366 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#These-tests-implement-the-requirements-for-the-JSON-LD-[Flattening-Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm).'>\nThese tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm).\n</a>\n</td>\n<td class='passed-all'>\n55/55 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#These-tests-implement-the-requirements-for-the-JSON-LD-[Framing-Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm).'>\nThese tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm).\n</a>\n</td>\n<td class='passed-all'>\n89/89 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#These-tests-implement-the-requirements-for-the-JSON-LD-[HTML-Content-Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms).'>\nThese tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms).\n</a>\n</td>\n<td class='passed-all'>\n49/49 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#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).'>\nThese 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).\n</a>\n</td>\n<td class='passed-all'>\n18/18 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#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).'>\nThese 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).\n</a>\n</td>\n<td class='passed-all'>\n442/442 (100.0%)\n</td>\n</tr>\n<tr>\n<td>\n<a href='#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).'>\nThese 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).\n</a>\n</td>\n<td class='passed-all'>\n51/51 (100.0%)\n</td>\n</tr>\n</tbody>\n</table>\n</dd>\n</dl>\n</dd>\n</dl>\n</section>\n<section>\n<h2>\nIndividual Test Results\n</h2>\n<section id='These-tests-implement-the-requirements-for-the-JSON-LD-[Compaction-Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm).' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0001: drop free-floating nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0002: basic\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0003: drop null and unmapped properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0004: optimize @set, keep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0005: @type and prefix compaction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0006: keep expanded object format if @type doesn&#39;t match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0007: add context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0008: alias keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0009: compact @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0010: array to @graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0011: compact date\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0012: native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0013: @value with @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0014: array to aliased @graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0015: best match compaction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0016: recursive named graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0017: A term mapping to null removes the mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0018: best matching term for lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0019: Keep duplicate values in @list and @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0020: Compact @id that is a property IRI when @container is @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0021: Compact properties and types using @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0022: @list compaction of nested properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0023: prefer @vocab over compacted IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0024: most specific term matching in @list.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0025: Language maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0026: Language map term selection with complications\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0027: @container: @set with multiple values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0028: Alias keywords and use @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0029: Simple @index map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0030: non-matching @container: @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0031: Compact @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0032: Compact keys in reverse-maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0033: Compact reverse-map to reverse property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0034: Skip property with @reverse if no match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0035: Compact @reverse node references using strings\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0036: Compact reverse properties using index containers\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0037: Compact keys in @reverse using @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ta038: Index map round-tripping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0039: @graph is array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0040: @list is array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0041: index rejects term having @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0042: @list keyword aliasing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0043: select term over @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0044: @type: @vocab in reverse-map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0045: @id value uses relative IRI, not term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0046: multiple objects without @context use @graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0047: Round-trip relative URLs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0048: term with @language: null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0049: Round tripping of lists that contain just IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0050: Reverse properties require @type: @id to use string values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0051: Round tripping @list with scalar\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0052: Round tripping @list with scalar and @graph alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0053: Use @type: @vocab if no @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0054: Compact to @type: @vocab and compact @id to term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0055: Round tripping @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0056: Prefer @type: @vocab over @type: @id for terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0057: Complex round tripping @type: @vocab and @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0058: Prefer @type: @id over @type: @vocab for non-terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0059: Term with @type: @vocab if no @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0060: Term with @type: @id if no @type: @vocab and term value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0061: @type: @vocab/@id with values matching either\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0062: @type: @vocab and relative IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0063: Compact IRI round-tripping with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0064: Compact language-tagged and indexed strings to index-map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0065: Language-tagged and indexed strings with language-map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0066: Relative IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0067: Reverse properties with blank nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0068: Single value reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0069: Single value reverse properties with @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0070: compactArrays option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0071: Input has multiple @contexts, output has one\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0072: Default language and unmapped properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0073: Mapped @id and @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0074: Container as a list with type of @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0075: Compact using relative fragment identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0076: Compacting IRI equivalent to base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0077: Compact a @graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0078: Compact a [@graph, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0079: Compact a @graph container having @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0080: Do not compact a graph having @id with a term having an @graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0081: Compact a [@graph, @index] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0082: Compact a [@graph, @index, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0083: [@graph, @index] does not compact graph with @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0084: Compact a simple graph with a [@graph, @id] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0085: Compact a named graph with a [@graph, @id] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0086: Compact a simple graph with a [@graph, @id, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0087: Compact a named graph with a [@graph, @id, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0088: Compact a graph with @index using a [@graph, @id] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0089: Language map term selection with complications\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0090: Compact input with @graph container to output without @graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0091: Compact input with @graph container to output without @graph container with compactArrays unset\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0092: Compact input with [@graph, @set] container to output without [@graph, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0093: Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0094: Compact input with [@graph, @set] container to output without [@graph, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0095: Relative propererty IRIs with @vocab: &#39;&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0096: Compact @graph container (multiple graphs)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0097: Compact [@graph, @set] container (multiple graphs)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0098: Compact [@graph, @index] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0099: Compact [@graph, @index, @set] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0100: Compact [@graph, @id] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0101: Compact [@graph, @id, @set] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0102: Compact [@graph, @index] container (multiple indexes and objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0103: Compact [@graph, @id] container (multiple ids and objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0104: Compact @type with @container: @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0105: Compact @type with @container: @set using an alias of @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0106: Do not compact @type with @container: @set to an array using an alias of @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0107: Relative propererty IRIs with @vocab: &#39;&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0108: context with JavaScript Object property names\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0109: Compact @graph container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest t0110: Compact [@graph, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc001: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc002: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc003: property and value with different terms mapping to the same expanded property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc004: deep @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc005: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc006: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc007: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc008: alias of @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc009: deep @type-scoped @context does NOT affect nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc010: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc011: applies context for all values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc012: orders @type terms when applying scoped contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc013: deep property-term scoped @context in @type-scoped @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc014: type-scoped context nullification\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc015: type-scoped base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc016: type-scoped vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc017: multiple type-scoped contexts are properly reverted\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc018: multiple type-scoped types resolved against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc019: type-scoped context with multiple property scoped terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc020: type-scoped value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc021: type-scoped value mix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc022: type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc023: composed type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc024: type-scoped + property-scoped + values evaluates against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc025: type-scoped + graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc026: @propagate: true on type-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc027: @propagate: false on property-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi01: term direction null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi02: use alias of @direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi03: term selection with lists and direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi04: simple language map with term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi05: simple language map with overriding term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi06: simple language map with overriding null direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tdi07: simple language map with mismatching term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#te002' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest te002: Absolute IRI confused with Compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#te002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ten01: Nest term not defined\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep05: processingMode json-ld-1.0 conflicts with @version: 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep06: @version must be 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep07: @prefix is not allowed in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep08: @prefix must be a boolean\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep09: @prefix not allowed on compact IRI term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep10: @nest is not allowed in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep11: @context is not allowed in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep12: @container may not be an array in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep13: @container may not be @id in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep14: @container may not be @type in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tep15: @container may not be @graph in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tin01: Basic Included array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tin02: Basic Included object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tin03: Multiple properties mapping to @included are folded together\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tin04: Included containing @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tin05: Property value with @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs01: Compact JSON literal (boolean true)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs02: Compact JSON literal (boolean false)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs03: Compact JSON literal (double)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs04: Compact JSON literal (double-zero)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs05: Compact JSON literal (integer)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs06: Compact JSON literal (object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs07: Compact JSON literal (array)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs08: Compact already expanded JSON literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs09: Compact already expanded JSON literal with aliased keys\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs10: Compact JSON literal (string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tjs11: Compact JSON literal (null)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tla01: most specific term matching in @list.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tli01: coerced @list containing an empty list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tli02: coerced @list containing a list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tli03: coerced @list containing an deep list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tli04: coerced @list containing multiple lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tli05: coerced @list containing mixed list values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm001: Indexes to object not having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm002: Indexes to object already having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm003: Indexes to object not having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm004: Indexes to object already having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm005: Indexes to object using compact IRI @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm006: Indexes using compacted @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm007: When type is in a type map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm008: @index map with @none node definition\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm009: @index map with @none value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm010: @index map with @none value using alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm011: @language map with no @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm012: language map with no @language using alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm013: id map using @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm014: id map using @none with alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm015: type map using @none with alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm016: type map using @none with alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm017: graph index map using @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm018: graph id map using @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm019: graph id map using alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm020: node reference compacts to string value of type map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm021: node reference compacts to string value of type map with @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tm022: node reference compacts to string value of type map with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn001: Indexes to @nest for property with @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn002: Indexes to @nest for all properties with @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn003: Nests using alias of @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn004: Arrays of nested values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn005: Nested @container: @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn006: Nested @container: @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn007: Nested @container: @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn008: Nested @container: @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn009: Nested @container: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn010: Multiple nest aliases\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tn011: Nests using alias of @nest (defined with @id)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp001: Compact IRI will not use an expanded term definition in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp002: Compact IRI does not use expanded term definition in 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp003: Compact IRI does not use simple term that does not end with a gen-delim\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp004: Compact IRIs using simple terms ending with gen-delim\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp005: Compact IRI uses term with definition including @prefix: true\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp006: Compact IRI uses term with definition including @prefix: true\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp007: Compact IRI not used as prefix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tp008: Compact IRI does not use term with definition including @prefix: false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi01: property-valued index indexes property value, instead of property (value)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi02: property-valued index indexes property value, instead of property (multiple values)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi03: property-valued index indexes property value, instead of property (node)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi04: property-valued index indexes property value, instead of property (multiple nodes)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi05: property-valued index indexes using @none if no property value exists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpi06: property-valued index indexes using @none if no property value does not compact to string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpr01: Check illegal clearing of context with protected terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpr02: Check illegal overriding of protected term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpr03: Check illegal overriding of protected term from type-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpr04: Check legal overriding of protected term from property-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tpr05: Check legal overriding of type-scoped protected term from nested node\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tr001: Expands and compacts to document base by default\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tr002: Expands and does not compact to document base with compactToRelative false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ts001: @context with single array values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ts002: @context with array including @set uses array values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ttn01: @type: @none does not compact values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ttn02: @type: @none does not use arrays by default\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest ttn03: @type: @none uses arrays with @container: @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 238 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='These-tests-implement-the-requirements-for-the-JSON-LD-[Expansion-Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm).' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>These tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0001: drop free-floating nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0002: basic\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0003: drop null and unmapped properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0004: optimize @set, keep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0005: do not expand aliased @id/@type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0006: alias keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0007: date type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0008: @value with @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0009: @graph with terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0010: native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0011: coerced @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0012: @graph with embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0013: expand already expanded\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0014: @set of @value objects with keyword aliases\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0015: collapse set of sets, keep empty lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0016: context reset\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0017: @graph and @id aliased\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0018: override default @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0019: remove @value = null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0020: do not remove @graph if not at top-level\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0021: do not remove @graph at top-level if not only property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0022: expand value with default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0023: Expanding list/set with coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0024: Multiple contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0025: Problematic IRI expansion tests\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0027: Duplicate values in @list and @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0028: Use @vocab in properties and @type but not in @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0029: Relative IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0030: Language maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0031: type-coercion of native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0032: Null term and @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0033: Using @vocab with with type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0034: Multiple properties expanding to the same IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0035: Language maps with @vocab, default language, and colliding property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0036: Expanding @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0037: Expanding @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0039: Using terms in a reverse-maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0040: language and index expansion on non-objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0041: @language: null resets the default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0042: Reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0043: Using reverse properties inside a @reverse-container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0044: Index maps with language mappings\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0045: Top-level value objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0046: Free-floating nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0047: Free-floating values in sets and free-floating lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0048: Terms are ignored in @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0049: String values of reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0050: Term definitions with prefix separate from prefix definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0051: Expansion of keyword aliases in term definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0052: @vocab-relative IRIs in term definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0053: Expand absolute IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0054: Expand term with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0055: Expand @vocab-relative term with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0056: Use terms with @type: @vocab but not with @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0057: Expand relative IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0058: Expand compact IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0059: Reset @vocab by setting it to null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0060: Overwrite document base with @base and reset it again\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0061: Coercing native types to arbitrary datatypes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0062: Various relative IRIs with with @base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0063: Reverse property and index container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0064: bnode values of reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0065: Drop unmapped keys in reverse map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0066: Reverse-map keys with @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0067: prefix://suffix not a compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0068: _:suffix values are not a compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0069: Compact IRI as term with type mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0070: Compact IRI as term defined using equivalent compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0072: Redefine term using @vocab, not itself\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0073: @context not first property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0074: @id not first property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0075: @vocab as blank node identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0076: base option overrides document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0077: expandContext option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0078: multiple reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0079: expand @graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0080: expand [@graph, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0081: Creates an @graph container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0082: expand [@graph, @index] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0083: expand [@graph, @index, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0084: Do not expand [@graph, @index] container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0085: expand [@graph, @id] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0086: expand [@graph, @id, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0087: Do not expand [@graph, @id] container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0088: Do not expand native values to IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0089: empty @base applied to the base option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0090: relative @base overrides base option and document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0091: relative and absolute @base overrides base option and document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0092: Various relative IRIs as properties with with @vocab: &#39;&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0093: expand @graph container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0094: expand [@graph, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0095: Creates an @graph container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0096: expand [@graph, @index] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0097: expand [@graph, @index, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0098: Do not expand [@graph, @index] container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0099: expand [@graph, @id] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0100: expand [@graph, @id, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0101: Do not expand [@graph, @id] container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0102: Expand @graph container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0103: Expand @graph container if value is a graph (multiple graphs)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0104: Creates an @graph container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0105: Do not expand [@graph, @index] container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0106: Do not expand [@graph, @id] container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0107: expand [@graph, @index] container (indexes with multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0108: expand [@graph, @id] container (multiple ids and objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0109: IRI expansion of fragments including &#39;:&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0110: Various relative IRIs as properties with with relative @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0111: Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0112: Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0113: context with JavaScript Object property names\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0114: Expansion allows multiple properties expanding to @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0117: A term starting with a colon can expand to a different IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0118: Expanding a value staring with a colon does not treat that value as an IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0119: Ignore some terms with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0120: Ignore some values of @id with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0121: Ignore some values of @reverse with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0122: Ignore some IRIs when that start with @ when expanding.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0123: Value objects including invalid literal datatype IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0124: compact IRI as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0125: term as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0126: A scoped context may include itself recursively (direct)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0127: A scoped context may include itself recursively (indirect)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0128: Two scoped context may include a shared context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0129: Base without trailing slash, without path\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0130: Base without trailing slash, with path\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc001: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc002: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc003: property and value with different terms mapping to the same expanded property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc004: deep @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc005: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc006: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc007: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc008: alias of @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc009: deep @type-scoped @context does NOT affect nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc010: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc011: orders @type terms when applying scoped contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc012: deep property-term scoped @context in @type-scoped @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc013: type maps use scoped context from type index and not scoped context from containing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc014: type-scoped context nullification\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc015: type-scoped base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc016: type-scoped vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc017: multiple type-scoped contexts are properly reverted\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc018: multiple type-scoped types resolved against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc019: type-scoped context with multiple property scoped terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc020: type-scoped value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc021: type-scoped value mix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc022: type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc023: composed type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc024: type-scoped + property-scoped + values evaluates against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc025: type-scoped + graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc026: @propagate: true on type-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc027: @propagate: false on property-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc028: @propagate: false on embedded context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc029: @propagate is invalid in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc030: @propagate must be boolean valued\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc031: @context resolutions respects relative URLs.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc032: Unused embedded context with error.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc033: Unused context with an embedded context error.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc034: Remote scoped context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc035: Term scoping with embedded contexts.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi01: Expand string using default and term directions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi02: Expand string using default and term directions and languages\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi03: expand list values with @direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi04: simple language map with term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi05: simple language mapwith overriding term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi06: simple language mapwith overriding null direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi07: simple language map with mismatching term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tdi08: @direction must be one of ltr or rtl\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tdi09: @direction is incompatible with @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tec01: Invalid keyword in term definition\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tec02: Term definition on @type with empty map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tem01: Invalid container mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten01: @nest MUST NOT have a string value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten02: @nest MUST NOT have a boolen value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten03: @nest MUST NOT have a numeric value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten04: @nest MUST NOT have a value object value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten05: does not allow a keyword other than @nest for the value of @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten06: does not allow @nest with @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tep02: processingMode json-ld-1.0 conflicts with @version: 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tep03: @version must be 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter01: Keywords cannot be aliased to other keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter04: Error dereferencing a remote context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter05: Invalid remote context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter06: Invalid local context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter07: Invalid base IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter08: Invalid vocab mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter09: Invalid default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter10: Cyclic IRI mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter11: Invalid term definition\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter12: Invalid type mapping (not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter13: Invalid type mapping (not absolute IRI)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter14: Invalid reverse property (contains @id)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter15: Invalid IRI mapping (@reverse not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter17: Invalid reverse property (invalid @container)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter18: Invalid IRI mapping (@id not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter19: Invalid keyword alias (@context)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter20: Invalid IRI mapping (no vocab mapping)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter21: Invalid container mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter22: Invalid language mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter23: Invalid IRI mapping (relative IRI in @type)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter25: Invalid reverse property map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter26: Colliding keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter27: Invalid @id value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter28: Invalid type value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter29: Invalid value object value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter30: Invalid language-tagged string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter31: Invalid @index value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter33: Invalid @reverse value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter34: Invalid reverse property value (in @reverse)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter35: Invalid language map value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter36: Invalid reverse property value (through coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter37: Invalid value object (unexpected keyword)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter38: Invalid value object (@type and @language)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter39: Invalid language-tagged value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter40: Invalid typed value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter41: Invalid set or list object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter42: Keywords may not be redefined in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter43: Term definition with @id: @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter44: Redefine terms looking like compact IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter48: Invalid term as relative IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter49: A relative IRI cannot be used as a prefix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter50: Invalid reverse id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter51: Invalid value object value using a value alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter52: Definition for the empty term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter53: Invalid prefix value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tes01: Using an array value for @context is illegal in JSON-LD 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tes02: Mapping @container: [@list, @set] is invalid\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin01: Basic Included array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin02: Basic Included object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin03: Multiple properties mapping to @included are folded together\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin04: Included containing @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin05: Property value with @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin06: json.api example\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin07: Error if @included value is a string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin08: Error if @included value is a value object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin09: Error if @included value is a list object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs01: Expand JSON literal (boolean true)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs02: Expand JSON literal (boolean false)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs03: Expand JSON literal (double)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs04: Expand JSON literal (double-zero)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs05: Expand JSON literal (integer)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs06: Expand JSON literal (object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs07: Expand JSON literal (array)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs08: Expand JSON literal with array canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs09: Transform JSON literal with string canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs10: Expand JSON literal with structural canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs11: Expand JSON literal with unicode canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs12: Expand JSON literal with value canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs13: Expand JSON literal with wierd canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs14: Expand JSON literal without expanding contents\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs15: Expand JSON literal aleady in expanded form\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs16: Expand JSON literal aleady in expanded form with aliased keys\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs17: Expand JSON literal (string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs18: Expand JSON literal (null)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs19: Expand JSON literal with aliased @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs20: Expand JSON literal with aliased @value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs21: Expand JSON literal with @context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs22: Expand JSON literal (null) aleady in expanded form.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs23: Expand JSON literal (empty array).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tl001: Language map with null value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli01: @list containing @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli02: @list containing empty @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli03: @list containing @list (with coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli04: @list containing empty @list (with coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli05: coerced @list containing an array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli06: coerced @list containing an empty array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli07: coerced @list containing deep arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli08: coerced @list containing deep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli09: coerced @list containing multiple lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli10: coerced @list containing mixed list values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm001: Adds @id to object not having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm002: Retains @id in object already having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm003: Adds @type to object not having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm004: Prepends @type in object already having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm005: Adds expanded @id to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm006: Adds vocabulary expanded @type to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm007: Adds document expanded @type to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm008: When type is in a type map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm009: language map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm010: language map with alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm011: id map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm012: type map with alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm013: graph index map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm014: graph index map with alias @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm015: graph id index map with aliased @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm016: graph id index map with aliased @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm017: string value of type map expands to node reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm018: string value of type map expands to node reference with @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm019: string value of type map expands to node reference with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tm020: string value of type map must not be a literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn001: Expands input using @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn002: Expands input using aliased @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn003: Appends nested values when property at base and nested\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn004: Appends nested values from all @nest aliases\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn005: Nested nested containers\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn006: Arrays of nested values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn007: A nest of arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn008: Multiple keys may mapping to @type when nesting\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp001: @version may be specified after first context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp002: @version setting [1.0, 1.1, 1.0]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp003: @version setting [1.1, 1.0]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp004: @version setting [1.1, 1.0, 1.1]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi01: error if @version is json-ld-1.0 for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi02: error if @container does not include @index for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi03: error if @index is a keyword for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi04: error if @index is not a string for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi05: error if attempting to add property to value object for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi06: property-valued index expands to property value, instead of @index (value)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi07: property-valued index appends to property value, instead of @index (value)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi08: property-valued index expands to property value, instead of @index (node)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi09: property-valued index appends to property value, instead of @index (node)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi10: property-valued index does not output property for @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi11: property-valued index adds property to graph object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr01: Protect a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr02: Set a term to not be protected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr03: Protect all terms in context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr04: Do not protect term with @protected: false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr05: Clear active context with protected terms from an embedded context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr06: Clear active context of protected terms from a term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr08: Term with protected scoped context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr09: Attempt to redefine term in other protected context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr10: Simple protected and unprotected terms.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr11: Fail to override protected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr12: Scoped context fail to override protected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr13: Override unprotected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr14: Clear protection with null context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr15: Clear protection with array with null context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr16: Override protected terms after null.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr17: Fail to override protected terms with type.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr18: Fail to override protected terms with type+null+ctx.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr19: Mix of protected and unprotected terms.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr20: Fail with mix of protected and unprotected terms with type+null+ctx.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr21: Fail with mix of protected and unprotected terms with type+null.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr22: Check legal overriding of type-scoped protected term from nested node.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr23: Allows redefinition of protected alias term with same definition.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr24: Allows redefinition of protected prefix term with same definition.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr25: Allows redefinition of terms with scoped contexts using same definitions.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr26: Fails on redefinition of terms with scoped contexts using different definitions.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr27: Allows redefinition of protected alias term with same definition modulo protected flag.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr28: Fails if trying to redefine a protected null term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr29: Does not expand a Compact IRI using a non-prefix term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr30: Keywords may be protected.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr31: Protected keyword aliases cannot be overridden.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr32: Protected @type cannot be overridden.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr33: Fails if trying to declare a keyword alias as prefix.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr34: Ignores a non-keyword term starting with &#39;@&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr35: Ignores a non-keyword term starting with &#39;@&#39; (with @vocab)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr36: Ignores a term mapping to a value in the form of a keyword.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr37: Ignores a term mapping to a value in the form of a keyword (with @vocab).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr38: Ignores a term mapping to a value in the form of a keyword (@reverse).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr39: Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr40: Protected terms and property-scoped contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso01: @import is invalid in 1.0.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso02: @import must be a string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso03: @import overflow\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso05: @propagate: true on type-scoped context with @import\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso06: @propagate: false on property-scoped context with @import\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso07: Protect all terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso08: Override term defined in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso09: Override @vocab defined in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso10: Protect terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso11: Override protected terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso12: @import may not be used in an imported context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso13: @import can only reference a single context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ttn01: @type: @none is illegal in 1.0.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest ttn02: @type: @none expands strings as value objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 366 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='These-tests-implement-the-requirements-for-the-JSON-LD-[Flattening-Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm).' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0001: drop free-floating nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0002: basic\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0003: drop null and unmapped properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0004: optimize @set, keep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0005: do not expand aliased @id/@type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0006: alias keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0007: date type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0008: @value with @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0009: @graph with terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0010: native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0011: coerced @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0012: @graph with embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0013: flatten already expanded\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0015: collapse set of sets, keep empty lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0016: context reset\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0017: @graph and @id aliased\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0018: override default @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0019: remove @value = null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0020: do not remove @graph if not at top-level\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0021: do not remove @graph at top-level if not only property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0022: flatten value with default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0023: Flattening list/set with coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0024: Multiple contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0025: Problematic IRI flattening tests\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0027: Duplicate values in @list and @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0028: Use @vocab in properties and @type but not in @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0030: Language maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0031: type-coercion of native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0032: Null term and @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0033: Using @vocab with with type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0034: Multiple properties expanding to the same IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0035: Language maps with @vocab, default language, and colliding property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0036: Flattening @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0037: Flattening reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0039: Using terms in a reverse-maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0040: language and index expansion on non-objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0041: Free-floating sets and lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0042: List objects not equivalent\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0043: Sample test manifest extract\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0044: compactArrays option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0045: Blank nodes with reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0046: Empty string as identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0047: Flatten using relative fragment identifier properly joins to base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0048: @list with embedded object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0049: context with JavaScript Object property names\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te001: Conflicting indexes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin01: Basic Included array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin02: Basic Included object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin03: Multiple properties mapping to @included are folded together\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin04: Included containing @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin05: Property value with @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin06: json.api example\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli01: @list containing an deep list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli02: @list containing empty @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli03: @list containing mixed list values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 55 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='These-tests-implement-the-requirements-for-the-JSON-LD-[Framing-Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm).' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0001: Library framing example\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0002: reframe w/extra CURIE value.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0003: reframe (null)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0004: reframe (type)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0005: reframe (explicit)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0006: reframe (non-explicit)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0007: input has multiple types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0008: array framing cases\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0009: default value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0011: @embed true/false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0012: Array frame\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0013: Replace existing embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0014: Replace existing embed on 2nd pass\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0015: Replace deeply-nested embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0016: Use @type in ducktype filter\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0017: Non-flat input\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0018: no frame @context but @graph output\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0019: Resources can be re-embedded again in each top-level frame match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0020: Blank nodes in an array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0021: Blank nodes in @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0022: Match on @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0023: No match on []\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0024: match on any common properties if @requireAll: false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0025: @requireAll with missing values and @default\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0026: explicitly excludes unframed properties (@explicit: true)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0027: non-existent framed properties create null property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0028: embed matched frames with @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0029: embed matched frames with reversed property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0030: @embed @always/@never\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0031: match none @type match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0032: single @id match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0033: multiple @id match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0034: wildcard and match none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0035: matches a deep node pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0036: matches exact value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0037: matches wildcard @value in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0038: matches wildcard @type in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0039: matches wildcard @language in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0040: matches match none @type in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0041: matches match none @language in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0042: matches some @value in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0043: matches some @type in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0044: matches some @language in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0045: excludes non-matched values in value pattern\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0046: Merge graphs if no outer @graph is used\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0047: Frame default graph if outer @graph is used\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0048: Merge one graph and preserve another\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0049: Merge one graph and deep preserve another\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0050: Library example with named graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0051: Compacting values of @preserve\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0052: @id must not include a blank node identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0053: @type must not include a blank node identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0054: Out of range @embed value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0055: Framing list with mixed values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0056: Frame matching on matching value in list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0057: Frame matching on any matching value in list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0058: Frame matching with no matching value in list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0059: @embed: @last replaces previous embed values with node reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0060: @embed: @once only embeds first value with node reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0061: Matching embedded nodes with @default\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0062: An array with a single value remains an array if container is @set.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0063: Using @null in @default.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0064: Using @default in @type.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0065: Match on value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0066: Match on value reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0067: Match on list value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0068: Merge @type from different graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest teo01: @embed true/false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg001: Library framing example with @graph and omitGraph is true.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg002: Simple embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg003: Embed with direct circular reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg004: Embed with indirect circular reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg005: Embed with indirect circular reference via set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg006: Embed with nested indirect circular reference via set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg007: Multi-level simple embeds\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg008: A tangle of nastiness\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg009: Recursive property embed w/o circular reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tg010: Framing blank node unnamed graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin01: Basic Included array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin02: Basic Included object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin03: json.api example\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp020: Blank nodes in an array (prune bnodes)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp021: Blank nodes in @type (prune bnodes)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp046: Merge graphs if no outer @graph is used (prune bnodes)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp049: Merge one graph and deep preserve another (prune bnodes)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp050: Prune blank nodes with alias of @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tra01: @requireAll only matches if @type and other properties are present\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tra02: @requireAll only matches if @id and @type match\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FrameTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tra03: @requireAll with type and properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 89 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='These-tests-implement-the-requirements-for-the-JSON-LD-[HTML-Content-Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms).' resource='https://w3c.github.io/json-ld-api/tests/html-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>These tests implement the requirements for the JSON-LD [HTML Content Algorithms](https://www.w3.org/TR/json-ld11-api/#html-content-algorithms).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te001: Expands embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tex01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tex01: Expands embedded JSON-LD script element (xhtml)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tex01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te002: Expands first embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te003: Expands targeted JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te004: Expands all embedded JSON-LD script elements with extractAllScripts option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te005: Expands multiple embedded JSON-LD script elements where one is an array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te006: Expands as empty with no embedded JSON-LD script elements\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te007: Expands as empty with no embedded JSON-LD script elements and extractAllScripts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te010: Expands embedded JSON-LD script element with HTML character references\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te011: Errors if no element found at target\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te012: Errors if targeted element is not a script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te013: Errors if targeted element does not have type application/ld+json\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te014: Errors if uncommented script text contains comment\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te015: Errors if end comment missing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te016: Errors if start comment missing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te017: Errors if uncommented script is not valid JSON\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te018: Expands embedded JSON-LD script element relative to document base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te019: Expands embedded JSON-LD script element relative to base option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te020: Expands embedded JSON-LD script element relative to HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te021: Expands embedded JSON-LD script element relative to relative HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#te022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te022: Expands targeted JSON-LD script element with fragment and HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#te022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tc001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc001: Compacts embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tc001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tc002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc002: Compacts first embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tc002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tc003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc003: Compacts targeted JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tc003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tc004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#CompactTest'>\n<td>\nTest tc004: Compacts all embedded JSON-LD script elements with extractAllScripts option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tc004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tf001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tf001: Flattens embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tf001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tf002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tf002: Flattens first embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tf002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tf003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tf003: Flattens targeted JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tf003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tf004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tf004: Flattens all script elements by default\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tf004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr001: Transforms embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr002: Transforms first embedded JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr003: Transforms targeted JSON-LD script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr004: Expands all embedded JSON-LD script elements with extractAllScripts option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr005: Expands multiple embedded JSON-LD script elements where one is an array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr006: Expands as empty with no embedded JSON-LD script elements\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr007: Expands as empty with no embedded JSON-LD script elements and extractAllScripts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr010: Expands embedded JSON-LD script element with HTML character references\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr011: Errors if no element found at target\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr012: Errors if targeted element is not a script element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr013: Errors if targeted element does not have type application/ld+json\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr014: Errors if uncommented script text contains comment\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr015: Errors if end comment missing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr016: Errors if start comment missing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tr017: Errors if uncommented script is not valid JSON\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr018: Expands embedded JSON-LD script element relative to document base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr019: Expands embedded JSON-LD script element relative to base option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr020: Expands embedded JSON-LD script element relative to HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr021: Expands embedded JSON-LD script element relative to relative HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/html-manifest#tr022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tr022: Expands targeted JSON-LD script element with fragment and HTML base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/html-manifest#tr022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 49 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='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).' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>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).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0001: load JSON-LD document\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0002: load JSON document\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0003: load JSON document with extension-type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0004: loading an unknown type raises loading document failed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0005: Load JSON-LD through 301 redirect\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0006: Load JSON-LD through 303 redirect\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0007: Load JSON-LD through 307 redirect\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0008: Non-existant file (404)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0009: load JSON-LD document with link\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0010: load JSON document with link\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0011: load JSON document with extension-type with link\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest t0012: Multiple context link headers\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0013: load JSON document with link to HTML document\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tla01: Redirects if type is text/html\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tla02: Does not redirect if type is application/ld+json\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tla03: Does not redirect if link type is not application/ld+json\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tla04: Does not redirect if type is application/json\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tla05: Base is that of the alternate URL\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 18 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='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).' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>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).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0001: Plain literal with URIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0002: Plain literal with CURIE from default context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0003: Default subject is BNode\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0004: Literal with language tag\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0005: Extended character set literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0006: Typed literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0007: Tests &#39;a&#39; generates rdf:type and object is implicit IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0008: Test prefix defined in @context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0009: Test using an empty suffix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0010: Test object processing defines object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0011: Test object processing defines object with implicit BNode\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0012: Multiple Objects for a Single Property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0013: Creation of an empty list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0014: Creation of a list with single element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0015: Creation of a list with multiple elements\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0016: Empty IRI expands to resource location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0017: Relative IRI expands relative resource location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0018: Frag ID expands relative resource location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0019: Test type coercion to anyURI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0020: Test type coercion to typed literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0022: Test coercion of double value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0023: Test coercion of integer value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0024: Test coercion of boolean value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0025: Test list coercion with single element\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0026: Test creation of multiple types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0027: Simple named graph (Wikidata)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0028: Simple named graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0029: named graph with embedded named graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0030: top-level graph with string subject reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0031: Reverse property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0032: @context reordering\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0033: @id reordering\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0034: context properties reordering\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0035: non-fractional numbers converted to xsd:double\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0036: Use nodeMapGeneration bnode labels\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0113: Dataset with a IRI named graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0114: Dataset with a IRI named graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0115: Dataset with a default and two named graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0116: Dataset from node with embedded named graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0117: Dataset from node with embedded named graph (bnode)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0119: Blank nodes with reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0120: IRI Resolution (0)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0121: IRI Resolution (1)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0122: IRI Resolution (2)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0123: IRI Resolution (3)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0124: compact IRI as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0125: term as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0126: IRI Resolution (6)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0127: IRI Resolution (7)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0128: IRI Resolution (8)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0129: IRI Resolution (9)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0130: IRI Resolution (10)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0131: IRI Resolution (11)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0132: IRI Resolution (12)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc001: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc002: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc003: property and value with different terms mapping to the same expanded property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc004: deep @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc005: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc006: adding new term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc007: overriding a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc008: alias of @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc009: deep @type-scoped @context does NOT affect nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc010: scoped context layers on intemediate contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc011: orders @type terms when applying scoped contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc012: deep property-term scoped @context in @type-scoped @context affects nested nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc013: type maps use scoped context from type index and not scoped context from containing\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc014: type-scoped context nullification\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc015: type-scoped base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc016: type-scoped vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc017: multiple type-scoped contexts are properly reverted\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc018: multiple type-scoped types resolved against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc019: type-scoped context with multiple property scoped terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc020: type-scoped value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc021: type-scoped value mix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc022: type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc023: composed type-scoped property-scoped contexts including @type:@vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc024: type-scoped + property-scoped + values evaluates against previous context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc025: type-scoped + graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc026: @propagate: true on type-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc027: @propagate: false on property-scoped context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc028: @propagate: false on embedded context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc029: @propagate is invalid in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc030: @propagate must be boolean valued\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc031: @context resolutions respects relative URLs.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc032: Unused embedded context with error.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tc033: Unused context with an embedded context error.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc034: Remote scoped context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tc035: Term scoping with embedded contexts.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi01: Expand string using default and term directions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi02: Expand string using default and term directions and languages\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi03: expand list values with @direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi04: simple language map with term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi05: simple language mapwith overriding term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi06: simple language mapwith overriding null direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi07: simple language map with mismatching term direction\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tdi08: @direction must be one of ltr or rtl\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi09: rdfDirection: i18n-datatype with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi10: rdfDirection: i18n-datatype with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi11: rdfDirection: compound-literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tdi12: rdfDirection: compound-literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te001: drop free-floating nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te002: basic\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te003: drop null and unmapped properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te004: optimize @set, keep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te005: do not expand aliased @id/@type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te006: alias keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te007: date type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te008: @value with @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te009: @graph with terms\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te010: native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te011: coerced @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te012: @graph with embed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te013: expand already expanded\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te015: collapse set of sets, keep empty lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te016: context reset\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te017: @graph and @id aliased\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te018: override default @language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te019: remove @value = null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te020: do not remove @graph if not at top-level\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te021: do not remove @graph at top-level if not only property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te022: expand value with default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te023: Lists and sets of properties with list/set coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te024: Multiple contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te025: Problematic IRI expansion tests\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te027: Keep duplicate values in @list and @set\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te028: Use @vocab in properties and @type but not in @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te029: Relative IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te030: Language maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te031: type-coercion of native types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te032: Mapping a term to null decouples it from @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te033: Using @vocab with with type-coercion\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te034: Multiple properties expanding to the same IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te035: Language maps with @vocab, default language, and colliding property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te036: Expanding @index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te037: Expanding @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te039: Using terms in a reverse-maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te040: language and index expansion on non-objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te041: Reset the default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te042: Expanding reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te043: Using reverse properties inside a @reverse-container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te044: Ensure index maps use language mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te045: Top-level value objects are removed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te046: Free-floating nodes are removed\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te047: Remove free-floating set values and lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te048: Terms are ignored in @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te049: Using strings as value of a reverse property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te050: Term definitions with prefix separate from prefix definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te051: Expansion of keyword aliases in term definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te052: @vocab-relative IRIs in term definitions\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te053: Expand absolute IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te054: Expand term with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te055: Expand @vocab-relative term with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te056: Use terms with @type: @vocab but not with @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te057: Expand relative IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te058: Expand compact IRI with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te059: Reset @vocab by setting it to null\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te060: Overwrite document base with @base and reset it again\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te061: Coercing native types to arbitrary datatypes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te062: Various relative IRIs with with @base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te063: Expand a reverse property with an index-container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te064: Expand reverse property whose values are unlabeled blank nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te065: Keys that are not mapped to an IRI in a reverse-map are dropped\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te066: Use @vocab to expand keys in reverse-maps\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te067: prefix:://sufffix not a compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te068: _::sufffix not a compact IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te069: Compact IRI as term with type mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te070: Redefine compact IRI with itself\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te072: Redefine term using @vocab, not itself\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te073: @context not first property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te074: @id not first property\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te075: @vocab as blank node identifier\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te076: base option overrides document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te077: expandContext option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te078: multiple reverse properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te079: expand @graph container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te080: expand [@graph, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te081: Creates an @graph container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te082: expand [@graph, @index] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te083: expand [@graph, @index, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te084: Do not expand [@graph, @index] container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te085: expand [@graph, @id] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te086: expand [@graph, @id, @set] container\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te087: Do not expand [@graph, @id] container if value is a graph\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te088: Do not expand native values to IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te089: empty @base applied to the base option\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te090: relative @base overrides base option and document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te091: relative and absolute @base overrides base option and document location\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te092: Various relative IRIs as properties with with @vocab: &#39;&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te093: expand @graph container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te094: expand [@graph, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te095: Creates an @graph container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te096: expand [@graph, @index] container (multiple indexed objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te097: expand [@graph, @index, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te098: Do not expand [@graph, @index] container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te099: expand [@graph, @id] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te100: expand [@graph, @id, @set] container (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te101: Do not expand [@graph, @id] container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te102: Expand @graph container if value is a graph (multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te103: Expand @graph container if value is a graph (multiple graphs)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te104: Creates an @graph container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te105: Do not expand [@graph, @index] container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te106: Do not expand [@graph, @id] container if value is a graph (mixed graph and object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te107: expand [@graph, @index] container (indexes with multiple objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te108: expand [@graph, @id] container (multiple ids and objects)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te109: IRI expansion of fragments including &#39;:&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te110: Various relative IRIs as properties with with relative @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te111: Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te112: Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te113: context with JavaScript Object property names\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te114: Expansion allows multiple properties expanding to @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te117: A term starting with a colon can expand to a different IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te118: Expanding a value staring with a colon does not treat that value as an IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te119: Ignore some terms with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te120: Ignore some values of @id with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te121: Ignore some values of @reverse with @, allow others.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te122: Ignore some IRIs when that start with @ when expanding.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest te123: Value objects including invalid literal datatype IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0124: compact IRI as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest t0125: term as @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te126: A scoped context may include itself recursively (direct)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te127: A scoped context may include itself recursively (indirect)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te128: Two scoped context may include a shared context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te129: Base without trailing slash, without path\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest te130: Base without trailing slash, with path\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tec01: Invalid keyword in term definition\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tec02: Term definition on @type with empty map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tem01: Invalid container mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten01: @nest MUST NOT have a string value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten02: @nest MUST NOT have a boolen value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten03: @nest MUST NOT have a numeric value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten04: @nest MUST NOT have a value object value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten05: does not allow a keyword other than @nest for the value of @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ten06: does not allow @nest with @reverse\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tep02: processingMode json-ld-1.0 conflicts with @version: 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tep03: @version must be 1.1\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter01: Keywords cannot be aliased to other keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter04: Error dereferencing a remote context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter05: Invalid remote context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter06: Invalid local context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter07: Invalid base IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter08: Invalid vocab mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter09: Invalid default language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter10: Cyclic IRI mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter11: Invalid term definition\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter12: Invalid type mapping (not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter13: Invalid type mapping (not absolute IRI)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter14: Invalid reverse property (contains @id)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter15: Invalid IRI mapping (@reverse not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter17: Invalid reverse property (invalid @container)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter18: Invalid IRI mapping (@id not a string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter19: Invalid keyword alias (@context)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter20: Invalid IRI mapping (no vocab mapping)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter21: Invalid container mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter22: Invalid language mapping\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter23: Invalid IRI mapping (relative IRI in @type)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter25: Invalid reverse property map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter26: Colliding keywords\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter27: Invalid @id value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter28: Invalid type value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter29: Invalid value object value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter30: Invalid language-tagged string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter31: Invalid @index value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter33: Invalid @reverse value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter34: Invalid reverse property value (in @reverse)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter35: Invalid language map value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter36: Invalid reverse property value (through coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter37: Invalid value object (unexpected keyword)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter38: Invalid value object (@type and @language)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter39: Invalid language-tagged value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter40: Invalid typed value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter41: Invalid set or list object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter42: Keywords may not be redefined in 1.0\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter43: Term definition with @id: @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter44: Redefine terms looking like compact IRIs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter48: Invalid term as relative IRI\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter49: A relative IRI cannot be used as a prefix\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter50: Invalid reverse id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter51: Invalid value object value using a value alias\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter52: Definition for the empty term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ter53: Invalid prefix value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin01: Basic Included array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin02: Basic Included object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin03: Multiple properties mapping to @included are folded together\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin04: Included containing @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin05: Property value with @included\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tin06: json.api example\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin07: Error if @included value is a string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin08: Error if @included value is a value object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tin09: Error if @included value is a list object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs01: Transform JSON literal (boolean true)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs02: Transform JSON literal (boolean false)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs03: Transform JSON literal (double)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs04: Transform JSON literal (double-zero)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs05: Transform JSON literal (integer)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs06: Transform JSON literal (object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs07: Transform JSON literal (array)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs08: Transform JSON literal with array canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs09: Transform JSON literal with string canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs10: Transform JSON literal with structural canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs11: Transform JSON literal with unicode canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs12: Transform JSON literal with value canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs13: Transform JSON literal with wierd canonicalization\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs14: Transform JSON literal without expanding contents\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs15: Transform JSON literal aleady in expanded form\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs16: Transform JSON literal aleady in expanded form with aliased keys\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs17: Transform JSON literal (string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs18: Transform JSON literal (null)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs19: Transform JSON literal with aliased @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs20: Transform JSON literal with aliased @value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs21: Transform JSON literal with @context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs22: Transform JSON literal (null) aleady in expanded form.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tjs23: Transform JSON literal (empty array).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli01: @list containing @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli02: @list containing empty @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli03: @list containing @list (with coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli04: @list containing empty @list (with coercion)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli05: coerced @list containing an array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli06: coerced @list containing an empty array\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli07: coerced @list containing deep arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli08: coerced @list containing deep empty arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli09: coerced @list containing multiple lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tli10: coerced @list containing mixed list values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm001: Adds @id to object not having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm002: Retains @id in object already having an @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm003: Adds @type to object not having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm004: Prepends @type in object already having an @type\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm005: Adds expanded @id to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm006: Adds vocabulary expanded @type to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm007: Adds document expanded @type to object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm008: When type is in a type map\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm009: language map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm010: language map with alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm011: id map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm012: type map with alias of @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm013: graph index map with @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm014: graph index map with alias @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm015: graph id index map with aliased @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm016: graph id index map with aliased @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm017: string value of type map expands to node reference\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm018: string value of type map expands to node reference with @type: @id\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tm019: string value of type map expands to node reference with @type: @vocab\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tm020: string value of type map must not be a literal\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn001: Expands input using @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn002: Expands input using aliased @nest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn003: Appends nested values when property at base and nested\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn004: Appends nested values from all @nest aliases in term order\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn005: Nested nested containers\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn006: Arrays of nested values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn007: A nest of arrays\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tn008: Multiple keys may mapping to @type when nesting\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt01: literal_ascii_boundaries\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt02: literal_with_UTF8_boundaries\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt03: literal_all_controls\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt04: literal_all_punctuation\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt05: literal_with_squote\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt06: literal_with_2_squotes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt07: literal_with_dquote\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt08: literal_with_2_dquotes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt09: literal_with_REVERSE_SOLIDUS2\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt10: literal_with_CHARACTER_TABULATION\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt11: literal_with_BACKSPACE\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt12: literal_with_LINE_FEED\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt13: literal_with_CARRIAGE_RETURN\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt14: literal_with_FORM_FEED\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt15: literal_with_REVERSE_SOLIDUS\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16' typeof='https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase'>\n<td>\nTest tnt16: literal_with_numeric_escape4\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp001: @version may be specified after first context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp002: @version setting [1.0, 1.1, 1.0]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp003: @version setting [1.1, 1.0]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tp004: @version setting [1.1, 1.0, 1.1]\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi01: error if @version is json-ld-1.0 for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi02: error if @container does not include @index for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi03: error if @index is a keyword for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi04: error if @index is not a string for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpi05: error if attempting to add property to value object for property-valued index\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi06: property-valued index expands to property value, instead of @index (value)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi07: property-valued index appends to property value, instead of @index (value)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi08: property-valued index expands to property value, instead of @index (node)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi09: property-valued index appends to property value, instead of @index (node)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi10: property-valued index does not output property for @none\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpi11: property-valued index adds property to graph object\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr01: Protect a term\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr02: Set a term to not be protected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr03: Protect all terms in context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr04: Do not protect term with @protected: false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr05: Clear active context with protected terms from an embedded context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr06: Clear active context of protected terms from a term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr08: Term with protected scoped context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr09: Attempt to redefine term in other protected context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr10: Simple protected and unprotected terms.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr11: Fail to override protected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr12: Scoped context fail to override protected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr13: Override unprotected term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr14: Clear protection with null context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr15: Clear protection with array with null context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr16: Override protected terms after null.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr17: Fail to override protected terms with type.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr18: Fail to override protected terms with type+null+ctx.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr19: Mix of protected and unprotected terms.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr20: Fail with mix of protected and unprotected terms with type+null+ctx.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr21: Fail with mix of protected and unprotected terms with type+null.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr22: Check legal overriding of type-scoped protected term from nested node.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr23: Allows redefinition of protected alias term with same definition.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr24: Allows redefinition of protected prefix term with same definition.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr25: Allows redefinition of terms with scoped contexts using same definitions.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr26: Fails on redefinition of terms with scoped contexts using different definitions.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr27: Allows redefinition of protected alias term with same definition modulo protected flag.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr28: Fails if trying to redefine a protected null term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr29: Does not expand a Compact IRI using a non-prefix term.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr30: Keywords may be protected.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr31: Protected keyword aliases cannot be overridden.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr32: Protected @type cannot be overridden.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tpr33: Fails if trying to declare a keyword alias as prefix.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr34: Ignores a non-keyword term starting with &#39;@&#39;\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr35: Ignores a non-keyword term starting with &#39;@&#39; (with @vocab)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr36: Ignores a term mapping to a value in the form of a keyword.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr37: Ignores a term mapping to a value in the form of a keyword (with @vocab).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr38: Ignores a term mapping to a value in the form of a keyword (@reverse).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr39: Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tpr40: Protected terms and property-scoped contexts\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest trt01: Representing numbers &gt;= 1e21\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso01: @import is invalid in 1.0.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso02: @import must be a string\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso03: @import overflow\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso05: @propagate: true on type-scoped context with @import\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso06: @propagate: false on property-scoped context with @import\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso07: Protect all terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso08: Override term defined in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso09: Override @vocab defined in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso10: Protect terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest tso11: Override protected terms in sourced context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso12: @import may not be used in an imported context.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest tso13: @import can only reference a single context\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase'>\n<td>\nTest ttn01: @type: @none is illegal in 1.0.\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest ttn02: @type: @none expands strings as value objects\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf01: Triples including invalid subject IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf02: Triples including invalid predicate IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf03: Triples including invalid object IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf04: Triples including invalid type IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf05: Triples including invalid language tags are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07' typeof='https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest'>\n<td>\nTest twf07: Triples including invalid graph name IRIs are rejected\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 442 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n<section id='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).' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest' typeof='Report mf:Manifest'>\n<h2 property='rdfs:comment mf:name'>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).</h2>\n<table class='report'>\n<tr>\n<th>\nTest\n</th>\n<th>\n<a href='#subj_0'>JSON::LD</a>\n</th>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0001: Object Lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0002: Native Types\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0003: BNodes and references\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0004: Lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0005: Document with list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0006: Two graphs having same subject but different values\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0007: Graph with multiple named graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0009: List conversion with IRI nodes\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0010: List pattern without rdf:nil\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0011: List pattern with extra properties\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0012: List pattern with cycles\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0013: List pattern with multiple values of rdf:first\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0014: List pattern with multiple values of rdf:rest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0015: List pattern with IRI rdf:rest\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0016: List pattern with type rdf:List\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0017: Remove duplicate triples\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0018: use native types flag set to true\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0019: use rdf:type flag set to false\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0020: list with node shared across graphs\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0021: list with node shared across graphs (same triple in different graphs)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0022: list from duplicate triples\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0023: triple with RDF nil subject\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0024: multiple languages for same subject+property+value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0025: multiple types for same subject+property+value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest t0026: triple with rdf:first property and rdf:nil value\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi01: rdfDirection: null with i18n literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi02: rdfDirection: null with i18n literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi03: rdfDirection: null with compound literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi04: rdfDirection: null with compound literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi05: rdfDirection: i18n-datatype with i18n literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi06: rdfDirection: i18n-datatype with i18n literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi07: rdfDirection: i18n-datatype with compound literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi08: rdfDirection: i18n-datatype with compound literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi09: rdfDirection: compound-literal with i18n literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi10: rdfDirection: compound-literal with i18n literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi11: rdfDirection: compound-literal with compound literal with direction and no language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tdi12: rdfDirection: compound-literal with compound literal with direction and language\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs01: JSON literal (boolean true)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs02: JSON literal (boolean false)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs03: JSON literal (double)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs04: JSON literal (double-zero)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs05: JSON literal (integer)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs06: JSON literal (object)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs07: JSON literal (array)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs08: Invalid JSON literal (bare-word)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09' typeof='TestCriterion https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest TestCase https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs09: Invalid JSON literal (invalid structure)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs10: JSON literal (string)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tjs11: JSON literal (null)\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tli01: @list containing empty @list\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tli02: @list containing multiple lists\n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr inlist='inlist' rel='mf:entries' resource='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03' typeof='TestCriterion TestCase https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest'>\n<td>\nTest tli03: t0008 as interpreted for 1.1. \n</td>\n<td class='PASS' property='earl:assertions' typeof='Assertion'>\n<link href='http://greggkellogg.net/foaf#me' property='earl:assertedBy' />\n<link href='https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03' property='earl:test' />\n<link href='https://rubygems.org/gems/json-ld' property='earl:subject' />\n<link href='earl:automatic' property='earl:mode' />\n<span property='earl:result' typeof='TestResult'>\n<span property='earl:outcome' resource='earl:passed'>\nPASS\n</span>\n</span>\n</td>\n</tr>\n<tr class='summary'>\n<td>\nPercentage passed out of 51 Tests\n</td>\n<td class='passed-all'>\n100.0%\n</td>\n</tr>\n</table>\n</section>\n</section>\n<section id='appendix' property='earl:generatedBy' resource='https://rubygems.org/gems/earl-report' typeof='[&quot;doap:Project&quot;, &quot;Software&quot;]'>\n<h2>\nReport Generation Software\n</h2>\n<p>\nThis report generated by\n<span property='doap:name'><a href='https://rubygems.org/gems/earl-report'>earl-report</a></span>\n<meta content='Earl Report summary generator' lang='en' property='doap:shortdesc' />\n<meta content='EarlReport generates HTML+RDFa rollups of multiple EARL reports' lang='en' property='doap:description' />\nversion\n<span property='doap:release' resource='https://github.com/gkellogg/earl-report/tree/0.5.1' typeof='doap:Version'>\n<span property='doap:revision'>0.5.1</span>\n<meta content='earl-report-0.5.1' property='doap:name' />\n<meta datatype='xsd:date' property='doap:created' />\n</span>\nan\n<a href='http://unlicense.org' property='doap:license'>Unlicensed</a>\n<span property='doap:programming-language'>Ruby</span>\napplication. More information is available at\n<a href='https://github.com/gkellogg/earl-report' property='doap:homepage'>https://github.com/gkellogg/earl-report</a>\n.\n</p>\n</section>\n</body>\n</html>\n"
  },
  {
    "path": "etc/earl.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"@vocab\": \"http://www.w3.org/ns/earl#\",\n    \"foaf:homepage\": {\n      \"@type\": \"@id\"\n    },\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"doap\": \"http://usefulinc.com/ns/doap#\",\n    \"earl\": \"http://www.w3.org/ns/earl#\",\n    \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"assertedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"assertions\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"bibRef\": {\n      \"@id\": \"dc:bibliographicCitation\"\n    },\n    \"created\": {\n      \"@id\": \"doap:created\",\n      \"@type\": \"xsd:date\"\n    },\n    \"description\": {\n      \"@id\": \"rdfs:comment\",\n      \"@language\": \"en\"\n    },\n    \"developer\": {\n      \"@id\": \"doap:developer\",\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"doapDesc\": {\n      \"@id\": \"doap:description\",\n      \"@language\": \"en\"\n    },\n    \"generatedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"homepage\": {\n      \"@id\": \"doap:homepage\",\n      \"@type\": \"@id\"\n    },\n    \"language\": {\n      \"@id\": \"doap:programming-language\"\n    },\n    \"license\": {\n      \"@id\": \"doap:license\",\n      \"@type\": \"@id\"\n    },\n    \"mode\": {\n      \"@type\": \"@id\"\n    },\n    \"name\": {\n      \"@id\": \"doap:name\"\n    },\n    \"outcome\": {\n      \"@type\": \"@id\"\n    },\n    \"release\": {\n      \"@id\": \"doap:release\",\n      \"@type\": \"@id\"\n    },\n    \"revision\": {\n      \"@id\": \"doap:revision\"\n    },\n    \"shortdesc\": {\n      \"@id\": \"doap:shortdesc\",\n      \"@language\": \"en\"\n    },\n    \"subject\": {\n      \"@type\": \"@id\"\n    },\n    \"test\": {\n      \"@type\": \"@id\"\n    },\n    \"testAction\": {\n      \"@id\": \"mf:action\",\n      \"@type\": \"@id\"\n    },\n    \"testResult\": {\n      \"@id\": \"mf:result\",\n      \"@type\": \"@id\"\n    },\n    \"title\": {\n      \"@id\": \"mf:name\"\n    },\n    \"entries\": {\n      \"@id\": \"mf:entries\",\n      \"@type\": \"@id\",\n      \"@container\": \"@list\"\n    },\n    \"testSubjects\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"xsd\": {\n      \"@id\": \"http://www.w3.org/2001/XMLSchema#\"\n    }\n  },\n  \"@id\": \"\",\n  \"@type\": [\n    \"doap:Project\",\n    \"Software\"\n  ],\n  \"generatedBy\": {\n    \"@id\": \"https://rubygems.org/gems/earl-report\",\n    \"@type\": [\n      \"doap:Project\",\n      \"Software\"\n    ],\n    \"shortdesc\": \"Earl Report summary generator\",\n    \"developer\": [\n      \"http://greggkellogg.net/foaf#me\"\n    ],\n    \"name\": \"earl-report\",\n    \"language\": \"Ruby\",\n    \"homepage\": \"https://github.com/gkellogg/earl-report\",\n    \"doapDesc\": \"EarlReport generates HTML+RDFa rollups of multiple EARL reports\",\n    \"release\": {\n      \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.5.1\",\n      \"@type\": \"doap:Version\",\n      \"name\": \"earl-report-0.5.1\",\n      \"revision\": \"0.5.1\",\n      \"doap:created\": {\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#date\",\n        \"@value\": \"2020-04-16\"\n      }\n    },\n    \"license\": \"http://unlicense.org\"\n  },\n  \"assertions\": [\n    \"earl.ttl\"\n  ],\n  \"name\": \"JSON-LD 1.1 Processing Algorithms and API\",\n  \"testSubjects\": [\n    {\n      \"@id\": \"https://rubygems.org/gems/json-ld\",\n      \"@type\": [\n        \"TestSubject\",\n        \"doap:Project\",\n        \"Software\"\n      ],\n      \"developer\": [\n        {\n          \"@id\": \"https://greggkellogg.net/foaf#me\",\n          \"@type\": \"foaf:Person\",\n          \"foaf:name\": \"Gregg Kellogg\"\n        }\n      ],\n      \"name\": \"JSON::LD\",\n      \"homepage\": \"https://github.com/ruby-rdf/json-ld/\",\n      \"doapDesc\": \"RDF.rb extension for parsing/serializing JSON-LD data.\",\n      \"release\": {\n        \"@id\": \"_:b121\",\n        \"revision\": \"3.1.4\"\n      }\n    }\n  ],\n  \"entries\": [\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"rdfs:comment\": \"These tests implement the requirements for the JSON-LD [Compaction Algorithm](https://www.w3.org/TR/json-ld11-api/#compaction-algorithm).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b45\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b49\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0001-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Unreferenced nodes not containing properties are dropped\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0001-out.jsonld\",\n          \"title\": \"drop free-floating nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b41\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b868\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0002-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Basic term and value compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0002-out.jsonld\",\n          \"title\": \"basic\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b21\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b1701\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0003-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Properties mapped to null or which are never mapped are dropped\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0003-out.jsonld\",\n          \"title\": \"drop null and unmapped properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b26\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b869\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0004-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Containers mapped to @set keep empty arrays\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0004-out.jsonld\",\n          \"title\": \"optimize @set, keep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3382\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b3418\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0005-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact uses prefixes in @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0005-out.jsonld\",\n          \"title\": \"@type and prefix compaction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b33\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b34\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0006-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Values not matching a coerced @type remain in expanded form\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0006-out.jsonld\",\n          \"title\": \"keep expanded object format if @type doesn't match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b29\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b30\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0007-context.jsonld\"\n          },\n          \"rdfs:comment\": \"External context is added to the compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0007-out.jsonld\",\n          \"title\": \"add context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b4\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0008-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Aliases for keywords are used in compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0008-out.jsonld\",\n          \"title\": \"alias keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b5\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b6\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0009-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Value with @id is compacted to string if property cast to @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0009-out.jsonld\",\n          \"title\": \"compact @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b50\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b51\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0010-context.jsonld\"\n          },\n          \"rdfs:comment\": \"An array of objects is serialized with @graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0010-out.jsonld\",\n          \"title\": \"array to @graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b22\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b2358\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0011-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Expanded value with type xsd:dateTime is represented as string with type coercion\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0011-out.jsonld\",\n          \"title\": \"compact date\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1383\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b2384\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0012-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Native values are unmodified during compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0012-out.jsonld\",\n          \"title\": \"native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3137\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b3138\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0013-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Values with @language remain in expanded form by default\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0013-out.jsonld\",\n          \"title\": \"@value with @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2559\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014\",\n              \"result\": {\n                \"@id\": \"_:b858\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0014-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Aliasing @graph uses alias in compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0014-out.jsonld\",\n          \"title\": \"array to aliased @graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3226\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b3227\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0015-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Property with values of different types use most appropriate term when compacting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0015-out.jsonld\",\n          \"title\": \"best match compaction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b752\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b753\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0016-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compacting a document with multiple embedded uses of @graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0016-out.jsonld\",\n          \"title\": \"recursive named graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b607\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b3377\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0017-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Mapping a term to null causes the property and its values to be removed from the compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0017-out.jsonld\",\n          \"title\": \"A term mapping to null removes the mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2413\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b2414\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0018-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Lists with values of different types use best term in compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0018-out.jsonld\",\n          \"title\": \"best matching term for lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2098\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b2708\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0019-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Duplicate values in @list or @set are retained in compacted document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0019-out.jsonld\",\n          \"title\": \"Keep duplicate values in @list and @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b10\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b11\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0020-context.jsonld\"\n          },\n          \"rdfs:comment\": \"A term with @container: @list is also used as the value of an @id, if appropriate\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0020-out.jsonld\",\n          \"title\": \"Compact @id that is a property IRI when @container is @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3340\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021\",\n              \"result\": {\n                \"@id\": \"_:b2241\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0021-context.jsonld\"\n          },\n          \"rdfs:comment\": \"@vocab is used to create relative properties and types if no other term matches\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0021-out.jsonld\",\n          \"title\": \"Compact properties and types using @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2494\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b3280\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0022-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact nested properties using @list containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0022-out.jsonld\",\n          \"title\": \"@list compaction of nested properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b700\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b701\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0023-context.jsonld\"\n          },\n          \"rdfs:comment\": \"@vocab takes precedence over prefixes - even if the result is longer\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0023-out.jsonld\",\n          \"title\": \"prefer @vocab over compacted IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b46\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b47\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0024-context.jsonld\"\n          },\n          \"rdfs:comment\": \"The most specific term that matches all of the elements in the list, taking into account the default language, must be selected.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0024-out.jsonld\",\n          \"title\": \"most specific term matching in @list.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1241\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b1242\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0025-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Multiple values with different languages use language maps if property has @container: @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0025-out.jsonld\",\n          \"title\": \"Language maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b823\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026\",\n              \"result\": {\n                \"@id\": \"_:b824\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0026-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Test appropriate property use given language maps with @vocab, a default language, and a competing term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0026-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0026-out.jsonld\",\n          \"title\": \"Language map term selection with complications\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3370\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027\",\n              \"result\": {\n                \"@id\": \"_:b3371\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0027-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Fall back to term with @set container if term with language map is defined\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0027-out.jsonld\",\n          \"title\": \"@container: @set with multiple values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b524\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028\",\n              \"result\": {\n                \"@id\": \"_:b525\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0028-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Combination of keyword aliases and @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0028-out.jsonld\",\n          \"title\": \"Alias keywords and use @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1553\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029\",\n              \"result\": {\n                \"@id\": \"_:b180\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0029-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Output uses index mapping if term is defined with @container: @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0029-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0029-out.jsonld\",\n          \"title\": \"Simple @index map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b37\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030\",\n              \"result\": {\n                \"@id\": \"_:b38\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0030-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Preserve @index tags if not compacted to an index map\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0030-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0030-out.jsonld\",\n          \"title\": \"non-matching @container: @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3388\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031\",\n              \"result\": {\n                \"@id\": \"_:b957\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0031-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact traverses through @reverse\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0031-out.jsonld\",\n          \"title\": \"Compact @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1886\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032\",\n              \"result\": {\n                \"@id\": \"_:b1887\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0032-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact traverses through @reverse\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0032-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0032-out.jsonld\",\n          \"title\": \"Compact keys in reverse-maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b401\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033\",\n              \"result\": {\n                \"@id\": \"_:b402\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0033-context.jsonld\"\n          },\n          \"rdfs:comment\": \"A reverse map is replaced with a matching property defined with @reverse\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0033-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0033-out.jsonld\",\n          \"title\": \"Compact reverse-map to reverse property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2352\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034\",\n              \"result\": {\n                \"@id\": \"_:b2353\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0034-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Do not use reverse property if no other property matches as normal property\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0034-out.jsonld\",\n          \"title\": \"Skip property with @reverse if no match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2406\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035\",\n              \"result\": {\n                \"@id\": \"_:b2407\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0035-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact node references to strings for reverse properties using @type: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0035-out.jsonld\",\n          \"title\": \"Compact @reverse node references using strings\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1603\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036\",\n              \"result\": {\n                \"@id\": \"_:b1604\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0036-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact using both reverse properties and index containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0036-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0036-out.jsonld\",\n          \"title\": \"Compact reverse properties using index containers\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1766\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037\",\n              \"result\": {\n                \"@id\": \"_:b2996\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0037-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact keys in @reverse using @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0037-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0037-out.jsonld\",\n          \"title\": \"Compact keys in @reverse using @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b689\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038\",\n              \"result\": {\n                \"@id\": \"_:b690\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0038-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b691\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Complex round-tripping use case from Drupal\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0038-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0038a-out.jsonld\",\n          \"title\": \"Index map round-tripping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1670\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039\",\n              \"result\": {\n                \"@id\": \"_:b470\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0039-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Value of @graph is always an array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0039-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0039-out.jsonld\",\n          \"title\": \"@graph is array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1635\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040\",\n              \"result\": {\n                \"@id\": \"_:b1168\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0040-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Ensure that value of @list is always an array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0040-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0040-out.jsonld\",\n          \"title\": \"@list is array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3183\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041\",\n              \"result\": {\n                \"@id\": \"_:b3425\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0041-context.jsonld\"\n          },\n          \"rdfs:comment\": \"If an index is present, a term having an @list container is not selected\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0041-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0041-out.jsonld\",\n          \"title\": \"index rejects term having @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3307\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042\",\n              \"result\": {\n                \"@id\": \"_:b3308\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0042-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Make sure keyword aliasing works if a list can't be compacted\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0042-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0042-out.jsonld\",\n          \"title\": \"@list keyword aliasing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3225\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043\",\n              \"result\": {\n                \"@id\": \"_:b2915\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0043-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Ensure that @vocab compaction isn't used if the result collides with a term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0043-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0043-out.jsonld\",\n          \"title\": \"select term over @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b537\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044\",\n              \"result\": {\n                \"@id\": \"_:b538\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0044-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Prefer properties with @type: @vocab in reverse-maps if the value can be compacted to a term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0044-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0044-out.jsonld\",\n          \"title\": \"@type: @vocab in reverse-map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1018\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045\",\n              \"result\": {\n                \"@id\": \"_:b1561\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0045-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Values of @id are transformed to relative IRIs, terms are ignored\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0045-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0045-out.jsonld\",\n          \"title\": \"@id value uses relative IRI, not term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b916\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046\",\n              \"result\": {\n                \"@id\": \"_:b917\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0046-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Wrap top-level array into @graph even if no context is passed\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0046-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0046-out.jsonld\",\n          \"title\": \"multiple objects without @context use @graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b35\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047\",\n              \"result\": {\n                \"@id\": \"_:b36\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0047-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Relative URLs remain relative after compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0047-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0047-out.jsonld\",\n          \"title\": \"Round-trip relative URLs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2823\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048\",\n              \"result\": {\n                \"@id\": \"_:b2824\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0048-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Prefer terms with a language mapping set to null over terms without language-mapping for non-strings\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0048-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0048-out.jsonld\",\n          \"title\": \"term with @language: null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3209\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049\",\n              \"result\": {\n                \"@id\": \"_:b3210\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0049-context.jsonld\"\n          },\n          \"rdfs:comment\": \"List compaction without @container: @list still uses strings if @type: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0049-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0049-out.jsonld\",\n          \"title\": \"Round tripping of lists that contain just IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b769\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050\",\n              \"result\": {\n                \"@id\": \"_:b341\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0050-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Node references in reverse properties are not compacted to strings without explicit type-coercion\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0050-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0050-out.jsonld\",\n          \"title\": \"Reverse properties require @type: @id to use string values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3364\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051\",\n              \"result\": {\n                \"@id\": \"_:b1875\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0051-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Native values survive round-tripping with @list\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0051-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0051-out.jsonld\",\n          \"title\": \"Round tripping @list with scalar\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1842\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052\",\n              \"result\": {\n                \"@id\": \"_:b1843\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0052-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Native values survive round-tripping with @list and @graph alias\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0052-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0052-out.jsonld\",\n          \"title\": \"Round tripping @list with scalar and @graph alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2381\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053\",\n              \"result\": {\n                \"@id\": \"_:b1461\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0053-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact to @type: @vocab when no @type: @id term available\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0053-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0053-out.jsonld\",\n          \"title\": \"Use @type: @vocab if no @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1934\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054\",\n              \"result\": {\n                \"@id\": \"_:b1935\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0054-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact to @type: @vocab and compact @id to term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0054-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0054-out.jsonld\",\n          \"title\": \"Compact to @type: @vocab and compact @id to term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b323\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055\",\n              \"result\": {\n                \"@id\": \"_:b1660\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0055-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compacting IRI value of property with @type: @vocab can use term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0055-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0055-out.jsonld\",\n          \"title\": \"Round tripping @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2221\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056\",\n              \"result\": {\n                \"@id\": \"_:b908\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0056-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compacting IRI value of property with @type: @vocab can use term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0056-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0056-out.jsonld\",\n          \"title\": \"Prefer @type: @vocab over @type: @id for terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b52\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057\",\n              \"result\": {\n                \"@id\": \"_:b53\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0057-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compacting IRI value of property with @type: @vocab can use term; more complex\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0057-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0057-out.jsonld\",\n          \"title\": \"Complex round tripping @type: @vocab and @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3189\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058\",\n              \"result\": {\n                \"@id\": \"_:b3190\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0058-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Choose a term having @type: @id over @type: @value if value is not a term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0058-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0058-out.jsonld\",\n          \"title\": \"Prefer @type: @id over @type: @vocab for non-terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1596\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059\",\n              \"result\": {\n                \"@id\": \"_:b1597\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0059-context.jsonld\"\n          },\n          \"rdfs:comment\": \"If there's no term with @type: @id, use terms with @type: @vocab for IRIs not mapped to terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0059-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0059-out.jsonld\",\n          \"title\": \"Term with @type: @vocab if no @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3329\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060\",\n              \"result\": {\n                \"@id\": \"_:b3330\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0060-context.jsonld\"\n          },\n          \"rdfs:comment\": \"If there's no term with @type: @vocab, use terms with @type: @id for IRIs mapped to terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0060-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0060-out.jsonld\",\n          \"title\": \"Term with @type: @id if no @type: @vocab and term value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b400\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061\",\n              \"result\": {\n                \"@id\": \"_:b1478\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0061-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Separate IRIs for the same property to use term with more specific @type (@id vs. @vocab)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0061-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0061-out.jsonld\",\n          \"title\": \"@type: @vocab/@id with values matching either\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3179\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062\",\n              \"result\": {\n                \"@id\": \"_:b2389\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0062-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Relative IRIs don't round-trip with @type: @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0062-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0062-out.jsonld\",\n          \"title\": \"@type: @vocab and relative IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b978\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063\",\n              \"result\": {\n                \"@id\": \"_:b979\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0063-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Term with @type: @vocab will use compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0063-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0063-out.jsonld\",\n          \"title\": \"Compact IRI round-tripping with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1386\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064\",\n              \"result\": {\n                \"@id\": \"_:b1382\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0064-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Given values with both @index and @language and term index-map term, use index map\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0064-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0064-out.jsonld\",\n          \"title\": \"Compact language-tagged and indexed strings to index-map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2841\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065\",\n              \"result\": {\n                \"@id\": \"_:b356\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0065-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Language-tagged and indexed strings don't compact to language-map\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0065-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0065-out.jsonld\",\n          \"title\": \"Language-tagged and indexed strings with language-map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2584\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066\",\n              \"result\": {\n                \"@id\": \"_:b3376\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0066-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Complex use cases for relative IRI compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0066-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0066-out.jsonld\",\n          \"title\": \"Relative IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b663\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067\",\n              \"result\": {\n                \"@id\": \"_:b3122\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0067-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact reverse property whose values are unlabeled blank nodes\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0067-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0067-out.jsonld\",\n          \"title\": \"Reverse properties with blank nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2757\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068\",\n              \"result\": {\n                \"@id\": \"_:b2758\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0068-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Single values of reverse properties are compacted as values of ordinary properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0068-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0068-out.jsonld\",\n          \"title\": \"Single value reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1941\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069\",\n              \"result\": {\n                \"@id\": \"_:b1130\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0069-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Single values are kept in array form for reverse properties if the container is to @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0069-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0069-out.jsonld\",\n          \"title\": \"Single value reverse properties with @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1767\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070\",\n              \"result\": {\n                \"@id\": \"_:b1405\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0070-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1768\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#compactArrays\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            }\n          },\n          \"rdfs:comment\": \"Setting compactArrays to false causes single element arrays to be retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0070-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0070-out.jsonld\",\n          \"title\": \"compactArrays option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3184\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071\",\n              \"result\": {\n                \"@id\": \"_:b2632\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0071-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Expanding input with multiple @contexts and compacting with just one doesn't output undefined properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0071-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0071-out.jsonld\",\n          \"title\": \"Input has multiple @contexts, output has one\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2680\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072\",\n              \"result\": {\n                \"@id\": \"_:b2681\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0072-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Ensure that the default language is handled correctly for unmapped properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0072-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0072-out.jsonld\",\n          \"title\": \"Default language and unmapped properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b366\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073\",\n              \"result\": {\n                \"@id\": \"_:b367\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0073-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Ensure that compaction works with mapped @id and @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0073-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0073-out.jsonld\",\n          \"title\": \"Mapped @id and @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1676\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074\",\n              \"result\": {\n                \"@id\": \"_:b1677\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0074-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Ensure that compaction works for empty list when property has container declared as @list and type as @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0074-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0074-out.jsonld\",\n          \"title\": \"Container as a list with type of @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1647\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075\",\n              \"result\": {\n                \"@id\": \"_:b1649\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0075-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1648\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example.org/\"\n            }\n          },\n          \"rdfs:comment\": \"Compacting a relative round-trips\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0075-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0075-out.jsonld\",\n          \"title\": \"Compact using relative fragment identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b872\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076\",\n              \"result\": {\n                \"@id\": \"_:b820\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0076-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compacting IRI equivalent to base, uses last path segment of base ending in '/'\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0076-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0076-out.jsonld\",\n          \"title\": \"Compacting IRI equivalent to base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2847\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077\",\n              \"result\": {\n                \"@id\": \"_:b3201\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0077-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2848\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a @graph container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0077-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0077-out.jsonld\",\n          \"title\": \"Compact a @graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1305\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078\",\n              \"result\": {\n                \"@id\": \"_:b3004\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0078-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1306\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact with [@graph, @set]\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0078-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0078-out.jsonld\",\n          \"title\": \"Compact a [@graph, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2376\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079\",\n              \"result\": {\n                \"@id\": \"_:b2377\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0079-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2378\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify that having both @graph and @index allows @graph container compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0079-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0079-out.jsonld\",\n          \"title\": \"Compact a @graph container having @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2050\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080\",\n              \"result\": {\n                \"@id\": \"_:b1311\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0080-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2051\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Graph compaction works only on simple graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0080-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0080-out.jsonld\",\n          \"title\": \"Do not compact a graph having @id with a term having an @graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1858\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081\",\n              \"result\": {\n                \"@id\": \"_:b1859\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0081-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1860\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a @graph container with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0081-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0081-out.jsonld\",\n          \"title\": \"Compact a [@graph, @index] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1942\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082\",\n              \"result\": {\n                \"@id\": \"_:b2935\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0082-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b706\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a @graph container with @index and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0082-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0082-out.jsonld\",\n          \"title\": \"Compact a [@graph, @index, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2641\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083\",\n              \"result\": {\n                \"@id\": \"_:b1813\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0083-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2642\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Graph compaction with @graph and @index works only on simple graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0083-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0083-out.jsonld\",\n          \"title\": \"[@graph, @index] does not compact graph with @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1726\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084\",\n              \"result\": {\n                \"@id\": \"_:b338\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0084-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1727\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a simple graph using a @graph container with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0084-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0084-out.jsonld\",\n          \"title\": \"Compact a simple graph with a [@graph, @id] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2022\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085\",\n              \"result\": {\n                \"@id\": \"_:b2023\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0085-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2024\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a named graph using a @graph container with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0085-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0085-out.jsonld\",\n          \"title\": \"Compact a named graph with a [@graph, @id] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1585\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086\",\n              \"result\": {\n                \"@id\": \"_:b1587\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0086-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1586\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a simple graph using a @graph container with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0086-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0086-out.jsonld\",\n          \"title\": \"Compact a simple graph with a [@graph, @id, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1456\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087\",\n              \"result\": {\n                \"@id\": \"_:b1410\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0087-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1457\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a named graph using a @graph container with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0087-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0087-out.jsonld\",\n          \"title\": \"Compact a named graph with a [@graph, @id, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2586\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088\",\n              \"result\": {\n                \"@id\": \"_:b3060\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0088-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b558\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact a @graph container with @id and @set, discarding an @index value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0088-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0088-out.jsonld\",\n          \"title\": \"Compact a graph with @index using a [@graph, @id] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1165\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089\",\n              \"result\": {\n                \"@id\": \"_:b1166\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0089-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Test appropriate property use given language maps with @vocab, a default language, no language, and competing terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0089-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0089-out.jsonld\",\n          \"title\": \"Language map term selection with complications\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3253\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090\",\n              \"result\": {\n                \"@id\": \"_:b2297\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0090-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1189\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0090-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0090-out.jsonld\",\n          \"title\": \"Compact input with @graph container to output without @graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2010\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091\",\n              \"result\": {\n                \"@id\": \"_:b2530\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0091-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1223\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#compactArrays\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output with compactArrays unset\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0091-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0091-out.jsonld\",\n          \"title\": \"Compact input with @graph container to output without @graph container with compactArrays unset\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1780\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092\",\n              \"result\": {\n                \"@id\": \"_:b2145\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0092-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1781\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0092-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0092-out.jsonld\",\n          \"title\": \"Compact input with [@graph, @set] container to output without [@graph, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2754\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093\",\n              \"result\": {\n                \"@id\": \"_:b2755\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0093-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2756\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#compactArrays\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output with compactArrays unset\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0093-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0093-out.jsonld\",\n          \"title\": \"Compact input with [@graph, @set] container to output without [@graph, @set] container with compactArrays unset\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3180\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094\",\n              \"result\": {\n                \"@id\": \"_:b2750\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0094-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3181\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0094-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0094-out.jsonld\",\n          \"title\": \"Compact input with [@graph, @set] container to output without [@graph, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2233\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095\",\n              \"result\": {\n                \"@id\": \"_:b2234\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0095-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Complex use cases for relative IRI compaction or properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0095-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0095-out.jsonld\",\n          \"title\": \"Relative propererty IRIs with @vocab: ''\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b998\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096\",\n              \"result\": {\n                \"@id\": \"_:b1000\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0096-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b999\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0096-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0096-out.jsonld\",\n          \"title\": \"Compact @graph container (multiple graphs)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2704\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097\",\n              \"result\": {\n                \"@id\": \"_:b2706\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0097-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2705\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0097-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0097-out.jsonld\",\n          \"title\": \"Compact [@graph, @set] container (multiple graphs)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2429\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098\",\n              \"result\": {\n                \"@id\": \"_:b2430\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0098-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2431\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0098-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0098-out.jsonld\",\n          \"title\": \"Compact [@graph, @index] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1915\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099\",\n              \"result\": {\n                \"@id\": \"_:b1916\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0099-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1917\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0099-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0099-out.jsonld\",\n          \"title\": \"Compact [@graph, @index, @set] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b720\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100\",\n              \"result\": {\n                \"@id\": \"_:b3433\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0100-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b721\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0100-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0100-out.jsonld\",\n          \"title\": \"Compact [@graph, @id] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b31\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101\",\n              \"result\": {\n                \"@id\": \"_:b3073\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0101-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b32\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0101-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0101-out.jsonld\",\n          \"title\": \"Compact [@graph, @id, @set] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2630\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102\",\n              \"result\": {\n                \"@id\": \"_:b3141\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0102-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2631\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0102-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0102-out.jsonld\",\n          \"title\": \"Compact [@graph, @index] container (multiple indexes and objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b943\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103\",\n              \"result\": {\n                \"@id\": \"_:b945\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0103-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b944\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensure @graph appears properly in output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0103-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0103-out.jsonld\",\n          \"title\": \"Compact [@graph, @id] container (multiple ids and objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1944\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104\",\n              \"result\": {\n                \"@id\": \"_:b1946\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0104-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1945\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensures that a single @type value is represented as an array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0104-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0104-out.jsonld\",\n          \"title\": \"Compact @type with @container: @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3208\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105\",\n              \"result\": {\n                \"@id\": \"_:b2563\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0105-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2988\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensures that a single @type value is represented as an array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0105-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0105-out.jsonld\",\n          \"title\": \"Compact @type with @container: @set using an alias of @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2771\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106\",\n              \"result\": {\n                \"@id\": \"_:b2772\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0106-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2773\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Ensures that a single @type value is not represented as an array in 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0106-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0106-out.jsonld\",\n          \"title\": \"Do not compact @type with @container: @set to an array using an alias of @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1728\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107\",\n              \"result\": {\n                \"@id\": \"_:b1729\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0107-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Complex use cases for relative IRI compaction or properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0107-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0107-out.jsonld\",\n          \"title\": \"Relative propererty IRIs with @vocab: ''\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1137\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108\",\n              \"result\": {\n                \"@id\": \"_:b804\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0108-context.jsonld\"\n          },\n          \"rdfs:comment\": \"Compact with context including JavaScript Object property names\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0108-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0108-out.jsonld\",\n          \"title\": \"context with JavaScript Object property names\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b938\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109\",\n              \"result\": {\n                \"@id\": \"_:b3295\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0109-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b939\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Multiple objects in a simple graph with a graph container need to use @included\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0109-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0109-out.jsonld\",\n          \"title\": \"Compact @graph container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1365\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110\",\n              \"result\": {\n                \"@id\": \"_:b1366\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/0110-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1367\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Multiple objects in a simple graph with a graph container need to use @included\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/0110-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/0110-out.jsonld\",\n          \"title\": \"Compact [@graph, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b522\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001\",\n              \"result\": {\n                \"@id\": \"_:b3420\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b523\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c001-out.jsonld\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3339\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002\",\n              \"result\": {\n                \"@id\": \"_:b3239\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3293\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c002-out.jsonld\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2609\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003\",\n              \"result\": {\n                \"@id\": \"_:b946\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2610\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c003-out.jsonld\",\n          \"title\": \"property and value with different terms mapping to the same expanded property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2699\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004\",\n              \"result\": {\n                \"@id\": \"_:b3011\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2700\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c004-out.jsonld\",\n          \"title\": \"deep @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1198\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005\",\n              \"result\": {\n                \"@id\": \"_:b1341\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c005-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1199\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c005-out.jsonld\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1679\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006\",\n              \"result\": {\n                \"@id\": \"_:b3051\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c006-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1680\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c006-out.jsonld\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3207\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007\",\n              \"result\": {\n                \"@id\": \"_:b193\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c007-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b985\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c007-out.jsonld\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1696\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008\",\n              \"result\": {\n                \"@id\": \"_:b2466\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c008-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1697\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c008-out.jsonld\",\n          \"title\": \"alias of @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1454\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009\",\n              \"result\": {\n                \"@id\": \"_:b2560\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c009-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1455\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c009-out.jsonld\",\n          \"title\": \"deep @type-scoped @context does NOT affect nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2428\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010\",\n              \"result\": {\n                \"@id\": \"_:b2367\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c010-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1107\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c010-out.jsonld\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1753\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011\",\n              \"result\": {\n                \"@id\": \"_:b1754\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c011-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1260\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c011-out.jsonld\",\n          \"title\": \"applies context for all values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1782\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012\",\n              \"result\": {\n                \"@id\": \"_:b457\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c012-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1783\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c012-out.jsonld\",\n          \"title\": \"orders @type terms when applying scoped contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b910\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013\",\n              \"result\": {\n                \"@id\": \"_:b3432\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c013-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b911\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c013-out.jsonld\",\n          \"title\": \"deep property-term scoped @context in @type-scoped @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2752\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014\",\n              \"result\": {\n                \"@id\": \"_:b2753\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c014-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b28\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Nullifying a type-scoped context continues to use the previous context when compacting @type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c014-out.jsonld\",\n          \"title\": \"type-scoped context nullification\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3337\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015\",\n              \"result\": {\n                \"@id\": \"_:b543\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c015-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3338\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c015-out.jsonld\",\n          \"title\": \"type-scoped base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b147\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016\",\n              \"result\": {\n                \"@id\": \"_:b149\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c016-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b148\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c016-out.jsonld\",\n          \"title\": \"type-scoped vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2655\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017\",\n              \"result\": {\n                \"@id\": \"_:b1058\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c017-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2656\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped contexts are property reverted\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c017-out.jsonld\",\n          \"title\": \"multiple type-scoped contexts are properly reverted\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b175\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018\",\n              \"result\": {\n                \"@id\": \"_:b2573\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c018-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b176\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped types resolved against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c018-out.jsonld\",\n          \"title\": \"multiple type-scoped types resolved against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b995\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019\",\n              \"result\": {\n                \"@id\": \"_:b997\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c019-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b996\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with multiple property scoped terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c019-out.jsonld\",\n          \"title\": \"type-scoped context with multiple property scoped terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1153\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020\",\n              \"result\": {\n                \"@id\": \"_:b1836\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c020-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1154\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c020-out.jsonld\",\n          \"title\": \"type-scoped value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2662\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021\",\n              \"result\": {\n                \"@id\": \"_:b2664\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c021-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2663\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value mix\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c021-out.jsonld\",\n          \"title\": \"type-scoped value mix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1208\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022\",\n              \"result\": {\n                \"@id\": \"_:b662\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c022-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1209\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c022-out.jsonld\",\n          \"title\": \"type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3496\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023\",\n              \"result\": {\n                \"@id\": \"_:b2986\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c023-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2537\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"composed type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c023-out.jsonld\",\n          \"title\": \"composed type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2326\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024\",\n              \"result\": {\n                \"@id\": \"_:b674\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c024-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2327\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + property-scoped + values evaluates against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c024-out.jsonld\",\n          \"title\": \"type-scoped + property-scoped + values evaluates against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3469\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025\",\n              \"result\": {\n                \"@id\": \"_:b1432\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c025-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1291\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + graph container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c025-out.jsonld\",\n          \"title\": \"type-scoped + graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1135\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026\",\n              \"result\": {\n                \"@id\": \"_:b3399\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c026-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1136\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with @propagate: true survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c026-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c026-out.jsonld\",\n          \"title\": \"@propagate: true on type-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b18\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027\",\n              \"result\": {\n                \"@id\": \"_:b20\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/c027-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b19\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"property-scoped context with @propagate: false do not survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/c027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/c027-out.jsonld\",\n          \"title\": \"@propagate: false on property-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2617\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01\",\n              \"result\": {\n                \"@id\": \"_:b3479\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1206\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Uses term with null direction when two terms conflict on direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di01-out.jsonld\",\n          \"title\": \"term direction null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2524\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02\",\n              \"result\": {\n                \"@id\": \"_:b2477\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b834\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use alias of @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di02-out.jsonld\",\n          \"title\": \"use alias of @direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b974\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03\",\n              \"result\": {\n                \"@id\": \"_:b975\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b976\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection includes values of @list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di03-out.jsonld\",\n          \"title\": \"term selection with lists and direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1974\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04\",\n              \"result\": {\n                \"@id\": \"_:b2068\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1975\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di04-out.jsonld\",\n          \"title\": \"simple language map with term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b732\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05\",\n              \"result\": {\n                \"@id\": \"_:b734\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b733\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di05-out.jsonld\",\n          \"title\": \"simple language map with overriding term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1839\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06\",\n              \"result\": {\n                \"@id\": \"_:b1840\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di06-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b678\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di06-out.jsonld\",\n          \"title\": \"simple language map with overriding null direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3347\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07\",\n              \"result\": {\n                \"@id\": \"_:b212\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/di07-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3348\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/di07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/di07-out.jsonld\",\n          \"title\": \"simple language map with mismatching term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#te002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1912\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#te002\",\n              \"result\": {\n                \"@id\": \"_:b1913\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/e002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1914\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that IRI compaction detects when the result is an absolute IRI with a scheme matching a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/e002-in.jsonld\",\n          \"mf:result\": \"IRI confused with prefix\",\n          \"title\": \"Absolute IRI confused with Compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1307\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01\",\n              \"result\": {\n                \"@id\": \"_:b1962\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/en01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1308\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/en01-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"Nest term not defined\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2301\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05\",\n              \"result\": {\n                \"@id\": \"_:b2302\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1755\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep05-in.jsonld\",\n          \"mf:result\": \"processing mode conflict\",\n          \"title\": \"processingMode json-ld-1.0 conflicts with @version: 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2621\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06\",\n              \"result\": {\n                \"@id\": \"_:b2623\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep06-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2622\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @version is specified, it must be 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep06-in.jsonld\",\n          \"mf:result\": \"invalid @version value\",\n          \"title\": \"@version must be 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1815\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07\",\n              \"result\": {\n                \"@id\": \"_:b3358\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep07-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1816\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@prefix is not allowed in a term definition 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep07-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"@prefix is not allowed in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3489\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08\",\n              \"result\": {\n                \"@id\": \"_:b3404\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep08-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3490\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@prefix must be a boolean in a term definition in 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep08-in.jsonld\",\n          \"mf:result\": \"invalid @prefix value\",\n          \"title\": \"@prefix must be a boolean\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2528\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09\",\n              \"result\": {\n                \"@id\": \"_:b2953\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep09-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2354\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep09-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"@prefix not allowed on compact IRI term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2083\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10\",\n              \"result\": {\n                \"@id\": \"_:b2085\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep10-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2084\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@nest is not allowed in a term definitionin 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep10-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"@nest is not allowed in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2669\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11\",\n              \"result\": {\n                \"@id\": \"_:b2671\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep11-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2670\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@context is not allowed in a term definitionin 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep11-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"@context is not allowed in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b429\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12\",\n              \"result\": {\n                \"@id\": \"_:b431\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep12-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b430\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"validate appropriate values of @container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep12-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"@container may not be an array in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2153\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13\",\n              \"result\": {\n                \"@id\": \"_:b2155\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep13-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2154\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"validate appropriate values of @container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep13-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"@container may not be @id in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b626\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14\",\n              \"result\": {\n                \"@id\": \"_:b627\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep14-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b628\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"validate appropriate values of @container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep14-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"@container may not be @type in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2737\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15\",\n              \"result\": {\n                \"@id\": \"_:b2320\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/ep15-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1014\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"validate appropriate values of @container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/ep15-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"@container may not be @graph in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2936\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01\",\n              \"result\": {\n                \"@id\": \"_:b2246\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/in01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1020\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/in01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/in01-out.jsonld\",\n          \"title\": \"Basic Included array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b653\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02\",\n              \"result\": {\n                \"@id\": \"_:b1869\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/in02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b654\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/in02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/in02-out.jsonld\",\n          \"title\": \"Basic Included object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2424\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03\",\n              \"result\": {\n                \"@id\": \"_:b2425\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/in03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2426\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/in03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/in03-out.jsonld\",\n          \"title\": \"Multiple properties mapping to @included are folded together\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3091\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04\",\n              \"result\": {\n                \"@id\": \"_:b3092\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/in04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2763\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/in04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/in04-out.jsonld\",\n          \"title\": \"Included containing @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2347\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05\",\n              \"result\": {\n                \"@id\": \"_:b2689\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/in05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2348\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/in05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/in05-out.jsonld\",\n          \"title\": \"Property value with @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2314\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01\",\n              \"result\": {\n                \"@id\": \"_:b3113\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2315\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (boolean true).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js01-out.jsonld\",\n          \"title\": \"Compact JSON literal (boolean true)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2960\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02\",\n              \"result\": {\n                \"@id\": \"_:b3061\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2884\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (boolean false).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js02-out.jsonld\",\n          \"title\": \"Compact JSON literal (boolean false)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2265\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03\",\n              \"result\": {\n                \"@id\": \"_:b2267\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2266\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (double).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js03-out.jsonld\",\n          \"title\": \"Compact JSON literal (double)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2980\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04\",\n              \"result\": {\n                \"@id\": \"_:b2981\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2982\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (double-zero).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js04-out.jsonld\",\n          \"title\": \"Compact JSON literal (double-zero)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1861\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05\",\n              \"result\": {\n                \"@id\": \"_:b1234\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1328\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (integer).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js05-out.jsonld\",\n          \"title\": \"Compact JSON literal (integer)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1116\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06\",\n              \"result\": {\n                \"@id\": \"_:b1117\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js06-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1118\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (object).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js06-out.jsonld\",\n          \"title\": \"Compact JSON literal (object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1674\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07\",\n              \"result\": {\n                \"@id\": \"_:b1178\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js07-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1675\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js07-out.jsonld\",\n          \"title\": \"Compact JSON literal (array)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3460\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08\",\n              \"result\": {\n                \"@id\": \"_:b1415\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js08-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3367\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting JSON literal does not expand terms inside json.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js08-out.jsonld\",\n          \"title\": \"Compact already expanded JSON literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2105\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09\",\n              \"result\": {\n                \"@id\": \"_:b2107\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js09-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2106\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting JSON literal in expanded form.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js09-out.jsonld\",\n          \"title\": \"Compact already expanded JSON literal with aliased keys\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b812\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10\",\n              \"result\": {\n                \"@id\": \"_:b813\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js10-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b814\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (string).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js10-out.jsonld\",\n          \"title\": \"Compact JSON literal (string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1846\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11\",\n              \"result\": {\n                \"@id\": \"_:b1847\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/js11-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1848\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests compacting property with @type @json to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/js11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/js11-out.jsonld\",\n          \"title\": \"Compact JSON literal (null)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1210\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01\",\n              \"result\": {\n                \"@id\": \"_:b688\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/la01-context.jsonld\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/la01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/la01-out.jsonld\",\n          \"title\": \"most specific term matching in @list.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2495\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01\",\n              \"result\": {\n                \"@id\": \"_:b2746\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/li01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2496\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of Lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/li01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/li01-out.jsonld\",\n          \"title\": \"coerced @list containing an empty list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2170\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02\",\n              \"result\": {\n                \"@id\": \"_:b2077\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/li02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2171\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of Lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/li02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/li02-out.jsonld\",\n          \"title\": \"coerced @list containing a list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b784\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03\",\n              \"result\": {\n                \"@id\": \"_:b949\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/li03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b649\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of Lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/li03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/li03-out.jsonld\",\n          \"title\": \"coerced @list containing an deep list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2126\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04\",\n              \"result\": {\n                \"@id\": \"_:b2127\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/li04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2128\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of Lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/li04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/li04-out.jsonld\",\n          \"title\": \"coerced @list containing multiple lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b286\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05\",\n              \"result\": {\n                \"@id\": \"_:b287\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/li05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b288\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of Lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/li05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/li05-out.jsonld\",\n          \"title\": \"coerced @list containing mixed list values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1287\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001\",\n              \"result\": {\n                \"@id\": \"_:b3250\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1288\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m001-out.jsonld\",\n          \"title\": \"Indexes to object not having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3254\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002\",\n              \"result\": {\n                \"@id\": \"_:b3369\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3255\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m002-out.jsonld\",\n          \"title\": \"Indexes to object already having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b116\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003\",\n              \"result\": {\n                \"@id\": \"_:b118\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b117\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m003-out.jsonld\",\n          \"title\": \"Indexes to object not having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3048\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004\",\n              \"result\": {\n                \"@id\": \"_:b1911\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2835\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m004-out.jsonld\",\n          \"title\": \"Indexes to object already having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b675\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005\",\n              \"result\": {\n                \"@id\": \"_:b676\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m005-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b677\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m005-out.jsonld\",\n          \"title\": \"Indexes to object using compact IRI @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b393\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006\",\n              \"result\": {\n                \"@id\": \"_:b2765\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m006-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b394\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m006-out.jsonld\",\n          \"title\": \"Indexes using compacted @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b56\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007\",\n              \"result\": {\n                \"@id\": \"_:b58\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m007-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b57\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m007-out.jsonld\",\n          \"title\": \"When type is in a type map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3223\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008\",\n              \"result\": {\n                \"@id\": \"_:b3081\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m008-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3224\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m008-out.jsonld\",\n          \"title\": \"@index map with @none node definition\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1747\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009\",\n              \"result\": {\n                \"@id\": \"_:b1748\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m009-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1749\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m009-out.jsonld\",\n          \"title\": \"@index map with @none value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3031\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010\",\n              \"result\": {\n                \"@id\": \"_:b3032\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m010-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2886\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m010-out.jsonld\",\n          \"title\": \"@index map with @none value using alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b304\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011\",\n              \"result\": {\n                \"@id\": \"_:b305\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m011-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b306\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m011-out.jsonld\",\n          \"title\": \"@language map with no @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b78\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012\",\n              \"result\": {\n                \"@id\": \"_:b80\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m012-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b79\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m012-out.jsonld\",\n          \"title\": \"language map with no @language using alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3310\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013\",\n              \"result\": {\n                \"@id\": \"_:b3311\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m013-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3312\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m013-out.jsonld\",\n          \"title\": \"id map using @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2857\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014\",\n              \"result\": {\n                \"@id\": \"_:b372\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m014-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2858\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m014-out.jsonld\",\n          \"title\": \"id map using @none with alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2099\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015\",\n              \"result\": {\n                \"@id\": \"_:b2100\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m015-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1549\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m015-out.jsonld\",\n          \"title\": \"type map using @none with alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b562\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016\",\n              \"result\": {\n                \"@id\": \"_:b563\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m016-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b564\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m016-out.jsonld\",\n          \"title\": \"type map using @none with alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b409\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017\",\n              \"result\": {\n                \"@id\": \"_:b2113\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m017-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b410\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m017-out.jsonld\",\n          \"title\": \"graph index map using @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2730\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018\",\n              \"result\": {\n                \"@id\": \"_:b2635\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m018-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2731\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m018-out.jsonld\",\n          \"title\": \"graph id map using @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b639\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019\",\n              \"result\": {\n                \"@id\": \"_:b641\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m019-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b640\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m019-out.jsonld\",\n          \"title\": \"graph id map using alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2403\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020\",\n              \"result\": {\n                \"@id\": \"_:b2404\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m020-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2360\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m020-out.jsonld\",\n          \"title\": \"node reference compacts to string value of type map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2034\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021\",\n              \"result\": {\n                \"@id\": \"_:b1517\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m021-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1309\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m021-out.jsonld\",\n          \"title\": \"node reference compacts to string value of type map with @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b70\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022\",\n              \"result\": {\n                \"@id\": \"_:b2868\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/m022-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b71\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/m022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/m022-out.jsonld\",\n          \"title\": \"node reference compacts to string value of type map with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2239\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001\",\n              \"result\": {\n                \"@id\": \"_:b3203\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2240\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n001-out.jsonld\",\n          \"title\": \"Indexes to @nest for property with @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3228\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002\",\n              \"result\": {\n                \"@id\": \"_:b3229\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3230\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n002-out.jsonld\",\n          \"title\": \"Indexes to @nest for all properties with @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1723\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003\",\n              \"result\": {\n                \"@id\": \"_:b1378\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1724\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n003-out.jsonld\",\n          \"title\": \"Nests using alias of @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1312\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004\",\n              \"result\": {\n                \"@id\": \"_:b1314\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1313\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n004-out.jsonld\",\n          \"title\": \"Arrays of nested values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2372\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005\",\n              \"result\": {\n                \"@id\": \"_:b2316\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n005-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1502\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n005-out.jsonld\",\n          \"title\": \"Nested @container: @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3313\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006\",\n              \"result\": {\n                \"@id\": \"_:b3314\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n006-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3038\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n006-out.jsonld\",\n          \"title\": \"Nested @container: @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1343\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007\",\n              \"result\": {\n                \"@id\": \"_:b1344\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n007-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1345\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n007-out.jsonld\",\n          \"title\": \"Nested @container: @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b576\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008\",\n              \"result\": {\n                \"@id\": \"_:b234\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n008-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b577\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n008-out.jsonld\",\n          \"title\": \"Nested @container: @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2299\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009\",\n              \"result\": {\n                \"@id\": \"_:b2300\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n009-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1554\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n009-out.jsonld\",\n          \"title\": \"Nested @container: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b983\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010\",\n              \"result\": {\n                \"@id\": \"_:b984\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n010-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b242\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n010-out.jsonld\",\n          \"title\": \"Multiple nest aliases\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2859\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011\",\n              \"result\": {\n                \"@id\": \"_:b1342\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/n011-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2860\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compaction using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/n011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/n011-out.jsonld\",\n          \"title\": \"Nests using alias of @nest (defined with @id)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2969\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001\",\n              \"result\": {\n                \"@id\": \"_:b1688\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2970\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms with an expanded term definition are not used for creating compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p001-out.jsonld\",\n          \"title\": \"Compact IRI will not use an expanded term definition in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2989\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002\",\n              \"result\": {\n                \"@id\": \"_:b3325\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2583\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms with an expanded term definition are not used for creating compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p002-out.jsonld\",\n          \"title\": \"Compact IRI does not use expanded term definition in 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2323\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003\",\n              \"result\": {\n                \"@id\": \"_:b2324\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2325\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms not ending with a gen-delim are not used for creating compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p003-out.jsonld\",\n          \"title\": \"Compact IRI does not use simple term that does not end with a gen-delim\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1087\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004\",\n              \"result\": {\n                \"@id\": \"_:b1088\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1089\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"All simple terms ending with gen-delim are suitable for compaction\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p004-out.jsonld\",\n          \"title\": \"Compact IRIs using simple terms ending with gen-delim\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3104\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005\",\n              \"result\": {\n                \"@id\": \"_:b3105\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p005-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1211\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanded term definition may set prefix explicitly in 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p005-out.jsonld\",\n          \"title\": \"Compact IRI uses term with definition including @prefix: true\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1683\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006\",\n              \"result\": {\n                \"@id\": \"_:b2885\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p006-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1684\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanded term definition may set prefix explicitly in 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p006-out.jsonld\",\n          \"title\": \"Compact IRI uses term with definition including @prefix: true\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2134\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007\",\n              \"result\": {\n                \"@id\": \"_:b2135\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p007-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2136\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms including a colon are excluded from being used as a prefix\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p007-out.jsonld\",\n          \"title\": \"Compact IRI not used as prefix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1278\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008\",\n              \"result\": {\n                \"@id\": \"_:b3035\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/p008-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b192\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanded term definition may set prefix explicitly in 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/p008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/p008-out.jsonld\",\n          \"title\": \"Compact IRI does not use term with definition including @prefix: false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2949\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01\",\n              \"result\": {\n                \"@id\": \"_:b471\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1764\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi01-out.jsonld\",\n          \"title\": \"property-valued index indexes property value, instead of property (value)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b809\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02\",\n              \"result\": {\n                \"@id\": \"_:b1605\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b810\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi02-out.jsonld\",\n          \"title\": \"property-valued index indexes property value, instead of property (multiple values)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2716\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03\",\n              \"result\": {\n                \"@id\": \"_:b2717\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2718\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi03-out.jsonld\",\n          \"title\": \"property-valued index indexes property value, instead of property (node)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3126\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04\",\n              \"result\": {\n                \"@id\": \"_:b956\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1092\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi04-out.jsonld\",\n          \"title\": \"property-valued index indexes property value, instead of property (multiple nodes)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1538\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05\",\n              \"result\": {\n                \"@id\": \"_:b512\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1522\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi05-out.jsonld\",\n          \"title\": \"property-valued index indexes using @none if no property value exists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1319\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06\",\n              \"result\": {\n                \"@id\": \"_:b1321\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pi06-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1320\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compacting property-valued indexes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pi06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pi06-out.jsonld\",\n          \"title\": \"property-valued index indexes using @none if no property value does not compact to string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1224\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01\",\n              \"result\": {\n                \"@id\": \"_:b2009\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pr01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1225\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check error when clearing a context with protected terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pr01-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Check illegal clearing of context with protected terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2421\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02\",\n              \"result\": {\n                \"@id\": \"_:b2422\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pr02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2423\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check error when overriding a protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pr02-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Check illegal overriding of protected term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1495\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03\",\n              \"result\": {\n                \"@id\": \"_:b378\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pr03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1496\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check error when overriding a protected term from type-scoped context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pr03-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Check illegal overriding of protected term from type-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1932\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04\",\n              \"result\": {\n                \"@id\": \"_:b3345\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pr04-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b458\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check overriding a protected term from property-scoped context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pr04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pr04-out.jsonld\",\n          \"title\": \"Check legal overriding of protected term from property-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3155\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05\",\n              \"result\": {\n                \"@id\": \"_:b3156\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/pr05-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1990\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check legal overriding of type-scoped protected term from nested node.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/pr05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/pr05-out.jsonld\",\n          \"title\": \"Check legal overriding of type-scoped protected term from nested node\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b914\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001\",\n              \"result\": {\n                \"@id\": \"_:b213\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/r001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b915\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example.org/\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Compact IRI attempts to compact document-relative IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/r001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/r001-out.jsonld\",\n          \"title\": \"Expands and compacts to document base by default\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1445\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002\",\n              \"result\": {\n                \"@id\": \"_:b1447\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/r002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1446\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"With compactToRelative option set to false, IRIs which could be made relative to the document base are not made relative.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/r002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/r002-out.jsonld\",\n          \"title\": \"Expands and does not compact to document base with compactToRelative false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3191\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001\",\n              \"result\": {\n                \"@id\": \"_:b3192\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/s001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3193\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@context values may be in an array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/s001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/s001-out.jsonld\",\n          \"title\": \"@context with single array values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2919\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002\",\n              \"result\": {\n                \"@id\": \"_:b2920\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/s002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2921\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@context values may include @set along with another compatible value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/s002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/s002-out.jsonld\",\n          \"title\": \"@context with array including @set uses array values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b861\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01\",\n              \"result\": {\n                \"@id\": \"_:b862\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/tn01-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b863\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none does not compact values.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/tn01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/tn01-out.jsonld\",\n          \"title\": \"@type: @none does not compact values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3206\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02\",\n              \"result\": {\n                \"@id\": \"_:b3395\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/tn02-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1449\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none honors @container.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/tn02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/tn02-out.jsonld\",\n          \"title\": \"@type: @none does not use arrays by default\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b789\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03\",\n              \"result\": {\n                \"@id\": \"_:b1167\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/compact/tn03-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b790\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none honors @container.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/compact/tn03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/compact/tn03-out.jsonld\",\n          \"title\": \"@type: @none uses arrays with @container: @set\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Compaction\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"rdfs:comment\": \"These tests implement the requirements for the JSON-LD [Flattening Algorithm](https://www.w3.org/TR/json-ld11-api/#flattening-algorithm).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1995\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b1996\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening drops unreferenced nodes having only @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0001-out.jsonld\",\n          \"title\": \"drop free-floating nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2791\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b2933\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening terms with different types of values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0002-out.jsonld\",\n          \"title\": \"basic\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2057\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b2058\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that null values and unmapped properties are removed from expanded output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0003-out.jsonld\",\n          \"title\": \"drop null and unmapped properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2709\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b350\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0004-out.jsonld\",\n          \"title\": \"optimize @set, keep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2793\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b2657\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If a keyword is aliased, it is not used when flattening\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0005-out.jsonld\",\n          \"title\": \"do not expand aliased @id/@type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1692\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b224\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Aliased keywords expand in resulting document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0006-out.jsonld\",\n          \"title\": \"alias keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b696\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b697\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand strings to expanded value with @type: xsd:dateTime\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0007-out.jsonld\",\n          \"title\": \"date type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1232\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b1233\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Keep expanded values with @language, drop non-conforming value objects containing just @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0008-out.jsonld\",\n          \"title\": \"@value with @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b324\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b325\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Use of @graph to contain multiple nodes within array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0009-out.jsonld\",\n          \"title\": \"@graph with terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2895\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b1599\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening native scalar retains native scalar within expanded value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0010-out.jsonld\",\n          \"title\": \"native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3422\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b2339\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"A value of a property with @type: @id coercion expands to a node reference\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0011-out.jsonld\",\n          \"title\": \"coerced @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2492\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b2493\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening objects containing chained objects flattens all objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0012-out.jsonld\",\n          \"title\": \"@graph with embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2411\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b1943\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening an expanded/flattened document maintains input document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0013-out.jsonld\",\n          \"title\": \"flatten already expanded\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2433\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b2434\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"An array of multiple @set nodes are collapsed into a single array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0015-out.jsonld\",\n          \"title\": \"collapse set of sets, keep empty lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1448\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b2983\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Setting @context to null within an embedded object resets back to initial context state\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0016-out.jsonld\",\n          \"title\": \"context reset\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1264\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b1265\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening with @graph and @id aliases\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0017-out.jsonld\",\n          \"title\": \"@graph and @id aliased\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1831\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b2379\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"override default @language in terms; only language-tag strings\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0018-out.jsonld\",\n          \"title\": \"override default @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3494\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b3182\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening a value of null removes the value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0019-out.jsonld\",\n          \"title\": \"remove @value = null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3232\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b3233\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@graph used under a node is retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0020-out.jsonld\",\n          \"title\": \"do not remove @graph if not at top-level\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1030\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021\",\n              \"result\": {\n                \"@id\": \"_:b1031\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@graph used at the top level is retained if there are other properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0021-out.jsonld\",\n          \"title\": \"do not remove @graph at top-level if not only property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b781\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b782\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening with a default language applies that language to string values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0022-out.jsonld\",\n          \"title\": \"flatten value with default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3499\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b3402\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening lists and sets with properties having coercion coerces list/set values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0023-out.jsonld\",\n          \"title\": \"Flattening list/set with coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1792\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b1793\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that contexts in an array are merged\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0024-out.jsonld\",\n          \"title\": \"Multiple contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2926\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b2927\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening different kinds of terms and Compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0025-out.jsonld\",\n          \"title\": \"Problematic IRI flattening tests\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b704\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027\",\n              \"result\": {\n                \"@id\": \"_:b705\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Duplicate values in @list and @set are not merged\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0027-out.jsonld\",\n          \"title\": \"Duplicate values in @list and @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3076\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028\",\n              \"result\": {\n                \"@id\": \"_:b3077\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@vocab is used to compact properties and @type, but is not used for @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0028-out.jsonld\",\n          \"title\": \"Use @vocab in properties and @type but not in @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2026\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030\",\n              \"result\": {\n                \"@id\": \"_:b2760\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Language Maps expand values to include @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0030-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0030-out.jsonld\",\n          \"title\": \"Language maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b407\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031\",\n              \"result\": {\n                \"@id\": \"_:b408\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0031-out.jsonld\",\n          \"title\": \"type-coercion of native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3097\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032\",\n              \"result\": {\n                \"@id\": \"_:b494\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Mapping a term to null decouples it from @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0032-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0032-out.jsonld\",\n          \"title\": \"Null term and @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1090\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033\",\n              \"result\": {\n                \"@id\": \"_:b1091\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that terms can be defined using @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0033-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0033-out.jsonld\",\n          \"title\": \"Using @vocab with with type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b444\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034\",\n              \"result\": {\n                \"@id\": \"_:b445\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0034-out.jsonld\",\n          \"title\": \"Multiple properties expanding to the same IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2732\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035\",\n              \"result\": {\n                \"@id\": \"_:b2733\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Pathological tests of language maps\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0035-out.jsonld\",\n          \"title\": \"Language maps with @vocab, default language, and colliding property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b828\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036\",\n              \"result\": {\n                \"@id\": \"_:b829\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening index maps for terms defined with @container: @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0036-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0036-out.jsonld\",\n          \"title\": \"Flattening @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2892\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037\",\n              \"result\": {\n                \"@id\": \"_:b3167\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flattening @reverse keeps @reverse\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0037-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0037-out.jsonld\",\n          \"title\": \"Flattening reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2798\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039\",\n              \"result\": {\n                \"@id\": \"_:b331\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Terms within @reverse are expanded\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0039-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0039-out.jsonld\",\n          \"title\": \"Using terms in a reverse-maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b382\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040\",\n              \"result\": {\n                \"@id\": \"_:b899\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Only invoke language and index map expansion if the value is a JSON object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0040-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0040-out.jsonld\",\n          \"title\": \"language and index expansion on non-objects\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1907\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041\",\n              \"result\": {\n                \"@id\": \"_:b2036\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Free-floating values in sets are removed, free-floating lists are removed completely\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0041-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0041-out.jsonld\",\n          \"title\": \"Free-floating sets and lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2331\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042\",\n              \"result\": {\n                \"@id\": \"_:b2332\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Lists objects are implicit unlabeled blank nodes and thus never equivalent\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0042-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0042-out.jsonld\",\n          \"title\": \"List objects not equivalent\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1289\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043\",\n              \"result\": {\n                \"@id\": \"_:b1290\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flatten a test manifest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0043-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0043-out.jsonld\",\n          \"title\": \"Sample test manifest extract\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1179\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044\",\n              \"result\": {\n                \"@id\": \"_:b1180\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten/0044-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1181\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#compactArrays\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            }\n          },\n          \"rdfs:comment\": \"Setting compactArrays to false causes single element arrays to be retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0044-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0044-out.jsonld\",\n          \"title\": \"compactArrays option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3412\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045\",\n              \"result\": {\n                \"@id\": \"_:b3413\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Proper (re-)labeling of blank nodes if used with reverse properties.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0045-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0045-out.jsonld\",\n          \"title\": \"Blank nodes with reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b962\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046\",\n              \"result\": {\n                \"@id\": \"_:b1885\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Usage of empty strings in identifiers needs special care when constructing the node map.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0046-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0046-out.jsonld\",\n          \"title\": \"Empty string as identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1661\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047\",\n              \"result\": {\n                \"@id\": \"_:b1662\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1663\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example.org/\"\n            }\n          },\n          \"rdfs:comment\": \"Compacting a relative round-trips\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0047-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0047-out.jsonld\",\n          \"title\": \"Flatten using relative fragment identifier properly joins to base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b90\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048\",\n              \"result\": {\n                \"@id\": \"_:b91\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Node definitions contained within lists are flattend to top level.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0048-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0048-out.jsonld\",\n          \"title\": \"@list with embedded object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1239\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049\",\n              \"result\": {\n                \"@id\": \"_:b1240\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Flatten with context including JavaScript Object property names\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/0049-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/0049-out.jsonld\",\n          \"title\": \"context with JavaScript Object property names\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b369\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001\",\n              \"result\": {\n                \"@id\": \"_:b370\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b371\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised in Flattening when conflicting indexes are found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/e001-in.jsonld\",\n          \"mf:result\": \"conflicting indexes\",\n          \"title\": \"Conflicting indexes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1505\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01\",\n              \"result\": {\n                \"@id\": \"_:b791\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1506\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in01-out.jsonld\",\n          \"title\": \"Basic Included array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b358\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02\",\n              \"result\": {\n                \"@id\": \"_:b3263\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b359\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in02-out.jsonld\",\n          \"title\": \"Basic Included object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1215\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03\",\n              \"result\": {\n                \"@id\": \"_:b2836\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1216\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in03-out.jsonld\",\n          \"title\": \"Multiple properties mapping to @included are folded together\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b748\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04\",\n              \"result\": {\n                \"@id\": \"_:b750\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b749\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in04-out.jsonld\",\n          \"title\": \"Included containing @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1948\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05\",\n              \"result\": {\n                \"@id\": \"_:b1950\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1949\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in05-out.jsonld\",\n          \"title\": \"Property value with @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b76\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06\",\n              \"result\": {\n                \"@id\": \"_:b1190\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b77\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/in06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/in06-out.jsonld\",\n          \"title\": \"json.api example\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1870\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01\",\n              \"result\": {\n                \"@id\": \"_:b2452\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1578\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/li01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/li01-out.jsonld\",\n          \"title\": \"@list containing an deep list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2020\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02\",\n              \"result\": {\n                \"@id\": \"_:b2021\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1324\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/li02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/li02-out.jsonld\",\n          \"title\": \"@list containing empty @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b459\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03\",\n              \"result\": {\n                \"@id\": \"_:b460\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b461\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/flatten/li03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/flatten/li03-out.jsonld\",\n          \"title\": \"@list containing mixed list values\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Flattening\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"rdfs:comment\": \"These tests implement the requirements for the JSON-LD [Expansion Algorithm](https://www.w3.org/TR/json-ld11-api/#expansion-algorithm).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1579\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b1580\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand drops unreferenced nodes having only @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0001-out.jsonld\",\n          \"title\": \"drop free-floating nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b746\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b2779\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding terms with different types of values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0002-out.jsonld\",\n          \"title\": \"basic\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3471\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b3472\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that null values and unmapped properties are removed from expanded output\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0003-out.jsonld\",\n          \"title\": \"drop null and unmapped properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2445\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b2591\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Uses of @set are removed in expansion; values of @set, or just plain values which are empty arrays are retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0004-out.jsonld\",\n          \"title\": \"optimize @set, keep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1823\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b2535\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If a keyword is aliased, it is not used when expanding\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0005-out.jsonld\",\n          \"title\": \"do not expand aliased @id/@type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3078\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b3211\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Aliased keywords expand in resulting document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0006-out.jsonld\",\n          \"title\": \"alias keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2828\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b2829\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand strings to expanded value with @type: xsd:dateTime\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0007-out.jsonld\",\n          \"title\": \"date type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3001\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b2235\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Keep expanded values with @language, drop non-conforming value objects containing just @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0008-out.jsonld\",\n          \"title\": \"@value with @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1776\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b3405\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Use of @graph to contain multiple nodes within array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0009-out.jsonld\",\n          \"title\": \"@graph with terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b510\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b3449\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding native scalar retains native scalar within expanded value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0010-out.jsonld\",\n          \"title\": \"native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2541\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b2542\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"A value of a property with @type: @id coercion expands to a node reference\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0011-out.jsonld\",\n          \"title\": \"coerced @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b161\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b162\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Use of @graph to contain multiple nodes within array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0012-out.jsonld\",\n          \"title\": \"@graph with embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1769\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b259\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand does not mess up already expanded document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0013-out.jsonld\",\n          \"title\": \"expand already expanded\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2539\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014\",\n              \"result\": {\n                \"@id\": \"_:b2540\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding aliased @set and @value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0014-out.jsonld\",\n          \"title\": \"@set of @value objects with keyword aliases\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b276\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b277\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"An array of multiple @set nodes are collapsed into a single array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0015-out.jsonld\",\n          \"title\": \"collapse set of sets, keep empty lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1048\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b1049\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Setting @context to null within an embedded object resets back to initial context state\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0016-out.jsonld\",\n          \"title\": \"context reset\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1752\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b2147\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding with @graph and @id aliases\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0017-out.jsonld\",\n          \"title\": \"@graph and @id aliased\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2918\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b2208\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"override default @language in terms; only language-tag strings\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0018-out.jsonld\",\n          \"title\": \"override default @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2876\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b3198\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding a value of null removes the value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0019-out.jsonld\",\n          \"title\": \"remove @value = null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2003\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b1477\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@graph used under a node is retained\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0020-out.jsonld\",\n          \"title\": \"do not remove @graph if not at top-level\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1163\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021\",\n              \"result\": {\n                \"@id\": \"_:b1399\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@graph used at the top level is retained if there are other properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0021-out.jsonld\",\n          \"title\": \"do not remove @graph at top-level if not only property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2529\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b955\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding with a default language applies that language to string values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0022-out.jsonld\",\n          \"title\": \"expand value with default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b612\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b613\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding lists and sets with properties having coercion coerces list/set values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0023-out.jsonld\",\n          \"title\": \"Expanding list/set with coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1497\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b1498\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that contexts in an array are merged\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0024-out.jsonld\",\n          \"title\": \"Multiple contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3124\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b3125\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding different kinds of terms and Compact IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0025-out.jsonld\",\n          \"title\": \"Problematic IRI expansion tests\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3466\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027\",\n              \"result\": {\n                \"@id\": \"_:b3396\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Duplicate values in @list and @set are not merged\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0027-out.jsonld\",\n          \"title\": \"Duplicate values in @list and @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2002\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028\",\n              \"result\": {\n                \"@id\": \"_:b3455\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@vocab is used to compact properties and @type, but is not used for @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0028-out.jsonld\",\n          \"title\": \"Use @vocab in properties and @type but not in @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3215\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029\",\n              \"result\": {\n                \"@id\": \"_:b1327\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@base is used to compact @id; test with different relative IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0029-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0029-out.jsonld\",\n          \"title\": \"Relative IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b841\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030\",\n              \"result\": {\n                \"@id\": \"_:b3177\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Language Maps expand values to include @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0030-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0030-out.jsonld\",\n          \"title\": \"Language maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2889\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031\",\n              \"result\": {\n                \"@id\": \"_:b1059\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding native types with type coercion adds the coerced type to an expanded value representation and retains the native value representation\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0031-out.jsonld\",\n          \"title\": \"type-coercion of native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2203\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032\",\n              \"result\": {\n                \"@id\": \"_:b2204\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Mapping a term to null decouples it from @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0032-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0032-out.jsonld\",\n          \"title\": \"Null term and @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1266\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033\",\n              \"result\": {\n                \"@id\": \"_:b156\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that terms can be defined using @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0033-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0033-out.jsonld\",\n          \"title\": \"Using @vocab with with type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b294\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034\",\n              \"result\": {\n                \"@id\": \"_:b1789\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies multiple values from separate terms are deterministically made multiple values of the IRI associated with the terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0034-out.jsonld\",\n          \"title\": \"Multiple properties expanding to the same IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3446\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035\",\n              \"result\": {\n                \"@id\": \"_:b3447\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Pathological tests of language maps\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0035-out.jsonld\",\n          \"title\": \"Language maps with @vocab, default language, and colliding property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1396\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036\",\n              \"result\": {\n                \"@id\": \"_:b1397\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding index maps for terms defined with @container: @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0036-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0036-out.jsonld\",\n          \"title\": \"Expanding @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2594\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037\",\n              \"result\": {\n                \"@id\": \"_:b2595\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding @reverse keeps @reverse\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0037-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0037-out.jsonld\",\n          \"title\": \"Expanding @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2850\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039\",\n              \"result\": {\n                \"@id\": \"_:b2851\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Terms within @reverse are expanded\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0039-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0039-out.jsonld\",\n          \"title\": \"Using terms in a reverse-maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b309\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040\",\n              \"result\": {\n                \"@id\": \"_:b310\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Only invoke language and index map expansion if the value is a JSON object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0040-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0040-out.jsonld\",\n          \"title\": \"language and index expansion on non-objects\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2478\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041\",\n              \"result\": {\n                \"@id\": \"_:b2479\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0041-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0041-out.jsonld\",\n          \"title\": \"@language: null resets the default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2313\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042\",\n              \"result\": {\n                \"@id\": \"_:b1409\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding terms defined as reverse properties uses @reverse in expanded document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0042-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0042-out.jsonld\",\n          \"title\": \"Reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1042\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043\",\n              \"result\": {\n                \"@id\": \"_:b2817\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding a reverse property within a @reverse undoes both reversals\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0043-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0043-out.jsonld\",\n          \"title\": \"Using reverse properties inside a @reverse-container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3426\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044\",\n              \"result\": {\n                \"@id\": \"_:b2232\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Ensure index maps use language mapping\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0044-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0044-out.jsonld\",\n          \"title\": \"Index maps with language mappings\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2788\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045\",\n              \"result\": {\n                \"@id\": \"_:b1691\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding top-level value objects causes them to be removed\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0045-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0045-out.jsonld\",\n          \"title\": \"Top-level value objects\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3197\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046\",\n              \"result\": {\n                \"@id\": \"_:b3098\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding free-floating nodes causes them to be removed\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0046-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0046-out.jsonld\",\n          \"title\": \"Free-floating nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1626\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047\",\n              \"result\": {\n                \"@id\": \"_:b722\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Free-floating values in sets are removed, free-floating lists are removed completely\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0047-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0047-out.jsonld\",\n          \"title\": \"Free-floating values in sets and free-floating lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2247\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048\",\n              \"result\": {\n                \"@id\": \"_:b3419\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Values of @id are not expanded as terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0048-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0048-out.jsonld\",\n          \"title\": \"Terms are ignored in @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2668\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049\",\n              \"result\": {\n                \"@id\": \"_:b2974\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"String values of a reverse property with @type: @id are treated as IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0049-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0049-out.jsonld\",\n          \"title\": \"String values of reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2703\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050\",\n              \"result\": {\n                \"@id\": \"_:b2019\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Term definitions using compact IRIs don't inherit the definitions of the prefix\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0050-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0050-out.jsonld\",\n          \"title\": \"Term definitions with prefix separate from prefix definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2387\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051\",\n              \"result\": {\n                \"@id\": \"_:b2388\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding terms which are keyword aliases\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0051-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0051-out.jsonld\",\n          \"title\": \"Expansion of keyword aliases in term definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2345\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052\",\n              \"result\": {\n                \"@id\": \"_:b2346\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If @vocab is defined, term definitions are expanded relative to @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0052-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0052-out.jsonld\",\n          \"title\": \"@vocab-relative IRIs in term definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2506\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053\",\n              \"result\": {\n                \"@id\": \"_:b1899\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding values of properties of @type: @vocab does not further expand absolute IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0053-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0053-out.jsonld\",\n          \"title\": \"Expand absolute IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2319\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054\",\n              \"result\": {\n                \"@id\": \"_:b605\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding values of properties of @type: @vocab does not expand term values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0054-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0054-out.jsonld\",\n          \"title\": \"Expand term with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2286\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055\",\n              \"result\": {\n                \"@id\": \"_:b136\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding values of properties of @type: @vocab expands relative IRIs using @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0055-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0055-out.jsonld\",\n          \"title\": \"Expand @vocab-relative term with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2305\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056\",\n              \"result\": {\n                \"@id\": \"_:b2306\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Checks that expansion uses appropriate base depending on term definition having @type @id or @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0056-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0056-out.jsonld\",\n          \"title\": \"Use terms with @type: @vocab but not with @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2335\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057\",\n              \"result\": {\n                \"@id\": \"_:b346\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Relative values of terms with @type: @vocab expand relative to @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0057-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0057-out.jsonld\",\n          \"title\": \"Expand relative IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b229\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058\",\n              \"result\": {\n                \"@id\": \"_:b230\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Compact IRIs are expanded normally even if term has @type: @vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0058-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0058-out.jsonld\",\n          \"title\": \"Expand compact IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1177\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059\",\n              \"result\": {\n                \"@id\": \"_:b2518\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Setting @vocab to null removes a previous definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0059-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0059-out.jsonld\",\n          \"title\": \"Reset @vocab by setting it to null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2503\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060\",\n              \"result\": {\n                \"@id\": \"_:b2504\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Setting @base to an IRI and then resetting it to nil\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0060-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0060-out.jsonld\",\n          \"title\": \"Overwrite document base with @base and reset it again\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b582\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061\",\n              \"result\": {\n                \"@id\": \"_:b1093\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding native types when coercing to arbitrary datatypes\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0061-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0061-out.jsonld\",\n          \"title\": \"Coercing native types to arbitrary datatypes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2340\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062\",\n              \"result\": {\n                \"@id\": \"_:b2510\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Pathological relative IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0062-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0062-out.jsonld\",\n          \"title\": \"Various relative IRIs with with @base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1615\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063\",\n              \"result\": {\n                \"@id\": \"_:b3018\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expaning reverse properties with an index-container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0063-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0063-out.jsonld\",\n          \"title\": \"Reverse property and index container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2741\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064\",\n              \"result\": {\n                \"@id\": \"_:b1148\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand reverse property whose values are unlabeled blank nodes\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0064-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0064-out.jsonld\",\n          \"title\": \"bnode values of reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1837\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065\",\n              \"result\": {\n                \"@id\": \"_:b1814\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Keys that are not mapped to an IRI in a reverse-map are dropped\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0065-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0065-out.jsonld\",\n          \"title\": \"Drop unmapped keys in reverse map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3163\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066\",\n              \"result\": {\n                \"@id\": \"_:b3164\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand uses @vocab to expand keys in reverse-maps\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0066-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0066-out.jsonld\",\n          \"title\": \"Reverse-map keys with @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b660\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067\",\n              \"result\": {\n                \"@id\": \"_:b661\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"prefix:suffix values are not interpreted as compact IRIs if suffix begins with two slashes\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0067-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0067-out.jsonld\",\n          \"title\": \"prefix://suffix not a compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3361\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068\",\n              \"result\": {\n                \"@id\": \"_:b3362\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"prefix:suffix values are not interpreted as compact IRIs if prefix is an underscore\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0068-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0068-out.jsonld\",\n          \"title\": \"_:suffix values are not a compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b835\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069\",\n              \"result\": {\n                \"@id\": \"_:b1641\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Redefine compact IRI to define type mapping using the compact IRI itself as value of @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0069-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0069-out.jsonld\",\n          \"title\": \"Compact IRI as term with type mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b723\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070\",\n              \"result\": {\n                \"@id\": \"_:b207\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Redefine compact IRI to define type mapping using the compact IRI itself as string value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0070-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0070-out.jsonld\",\n          \"title\": \"Compact IRI as term defined using equivalent compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2222\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072\",\n              \"result\": {\n                \"@id\": \"_:b2223\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Redefining a term as itself when @vocab is defined uses @vocab, not previous term definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0072-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0072-out.jsonld\",\n          \"title\": \"Redefine term using @vocab, not itself\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1878\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073\",\n              \"result\": {\n                \"@id\": \"_:b1081\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0073-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0073-out.jsonld\",\n          \"title\": \"@context not first property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b315\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074\",\n              \"result\": {\n                \"@id\": \"_:b316\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0074-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0074-out.jsonld\",\n          \"title\": \"@id not first property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2279\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075\",\n              \"result\": {\n                \"@id\": \"_:b2280\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2281\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Use @vocab to map all properties to blank node identifiers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0075-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0075-out.jsonld\",\n          \"title\": \"@vocab as blank node identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b307\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076\",\n              \"result\": {\n                \"@id\": \"_:b2226\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b308\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of the base option overrides the document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0076-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0076-out.jsonld\",\n          \"title\": \"base option overrides document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1544\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077\",\n              \"result\": {\n                \"@id\": \"_:b1545\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b349\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#expandContext\": {\n              \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld\"\n            }\n          },\n          \"rdfs:comment\": \"Use of the expandContext option to expand the input document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0077-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0077-out.jsonld\",\n          \"title\": \"expandContext option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1811\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078\",\n              \"result\": {\n                \"@id\": \"_:b811\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Use of multiple reverse properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0078-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0078-out.jsonld\",\n          \"title\": \"multiple reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2344\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079\",\n              \"result\": {\n                \"@id\": \"_:b2827\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b913\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0079-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0079-out.jsonld\",\n          \"title\": \"expand @graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b687\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080\",\n              \"result\": {\n                \"@id\": \"_:b3341\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b69\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of [@graph, @set] containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0080-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0080-out.jsonld\",\n          \"title\": \"expand [@graph, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1247\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081\",\n              \"result\": {\n                \"@id\": \"_:b1249\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1248\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Don't double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0081-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0081-out.jsonld\",\n          \"title\": \"Creates an @graph container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1546\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082\",\n              \"result\": {\n                \"@id\": \"_:b1548\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1547\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0082-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0082-out.jsonld\",\n          \"title\": \"expand [@graph, @index] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2328\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083\",\n              \"result\": {\n                \"@id\": \"_:b2329\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2330\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0083-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0083-out.jsonld\",\n          \"title\": \"expand [@graph, @index, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1507\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084\",\n              \"result\": {\n                \"@id\": \"_:b1508\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1509\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0084-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0084-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1969\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085\",\n              \"result\": {\n                \"@id\": \"_:b1971\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1970\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0085-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0085-out.jsonld\",\n          \"title\": \"expand [@graph, @id] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2864\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086\",\n              \"result\": {\n                \"@id\": \"_:b3385\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2569\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0086-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0086-out.jsonld\",\n          \"title\": \"expand [@graph, @id, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1279\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087\",\n              \"result\": {\n                \"@id\": \"_:b1281\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1280\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0087-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0087-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3300\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088\",\n              \"result\": {\n                \"@id\": \"_:b3301\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Value Expansion does not expand native values, such as booleans, to a node object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0088-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0088-out.jsonld\",\n          \"title\": \"Do not expand native values to IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2722\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089\",\n              \"result\": {\n                \"@id\": \"_:b1742\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2432\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of an empty @base is applied to the base option\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0089-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0089-out.jsonld\",\n          \"title\": \"empty @base applied to the base option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1221\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090\",\n              \"result\": {\n                \"@id\": \"_:b1568\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1222\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of a relative @base overrides base option and document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0090-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0090-out.jsonld\",\n          \"title\": \"relative @base overrides base option and document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3212\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091\",\n              \"result\": {\n                \"@id\": \"_:b635\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2351\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of a relative and absolute @base overrides base option and document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0091-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0091-out.jsonld\",\n          \"title\": \"relative and absolute @base overrides base option and document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b489\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092\",\n              \"result\": {\n                \"@id\": \"_:b490\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b491\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0092-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0092-out.jsonld\",\n          \"title\": \"Various relative IRIs as properties with with @vocab: ''\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3042\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093\",\n              \"result\": {\n                \"@id\": \"_:b2707\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3043\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0093-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0093-out.jsonld\",\n          \"title\": \"expand @graph container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1499\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094\",\n              \"result\": {\n                \"@id\": \"_:b1500\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1501\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of [@graph, @set] containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0094-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0094-out.jsonld\",\n          \"title\": \"expand [@graph, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b993\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095\",\n              \"result\": {\n                \"@id\": \"_:b3259\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b994\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0095-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0095-out.jsonld\",\n          \"title\": \"Creates an @graph container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3096\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096\",\n              \"result\": {\n                \"@id\": \"_:b1894\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b785\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0096-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0096-out.jsonld\",\n          \"title\": \"expand [@graph, @index] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1720\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097\",\n              \"result\": {\n                \"@id\": \"_:b1721\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1722\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0097-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0097-out.jsonld\",\n          \"title\": \"expand [@graph, @index, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1947\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098\",\n              \"result\": {\n                \"@id\": \"_:b2191\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1784\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0098-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0098-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2628\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099\",\n              \"result\": {\n                \"@id\": \"_:b3079\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2629\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0099-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0099-out.jsonld\",\n          \"title\": \"expand [@graph, @id] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1011\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100\",\n              \"result\": {\n                \"@id\": \"_:b1013\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1012\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0100-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0100-out.jsonld\",\n          \"title\": \"expand [@graph, @id, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b671\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101\",\n              \"result\": {\n                \"@id\": \"_:b561\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b672\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0101-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0101-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1876\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102\",\n              \"result\": {\n                \"@id\": \"_:b3427\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1877\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Creates a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0102-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0102-out.jsonld\",\n          \"title\": \"Expand @graph container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1142\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103\",\n              \"result\": {\n                \"@id\": \"_:b1219\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1143\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Creates a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0103-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0103-out.jsonld\",\n          \"title\": \"Expand @graph container if value is a graph (multiple graphs)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3440\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104\",\n              \"result\": {\n                \"@id\": \"_:b1077\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3441\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0104-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0104-out.jsonld\",\n          \"title\": \"Creates an @graph container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2879\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105\",\n              \"result\": {\n                \"@id\": \"_:b843\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2880\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0105-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0105-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1699\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106\",\n              \"result\": {\n                \"@id\": \"_:b194\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1700\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0106-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0106-out.jsonld\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1174\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107\",\n              \"result\": {\n                \"@id\": \"_:b1175\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1176\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0107-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0107-out.jsonld\",\n          \"title\": \"expand [@graph, @index] container (indexes with multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1235\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108\",\n              \"result\": {\n                \"@id\": \"_:b1236\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1237\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0108-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0108-out.jsonld\",\n          \"title\": \"expand [@graph, @id] container (multiple ids and objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b736\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109\",\n              \"result\": {\n                \"@id\": \"_:b1326\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0109-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0109-out.jsonld\",\n          \"title\": \"IRI expansion of fragments including ':'\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1820\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110\",\n              \"result\": {\n                \"@id\": \"_:b1822\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1821\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0110-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0110-out.jsonld\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b668\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111\",\n              \"result\": {\n                \"@id\": \"_:b1479\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b669\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0111-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0111-out.jsonld\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2282\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112\",\n              \"result\": {\n                \"@id\": \"_:b1519\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2283\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0112-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0112-out.jsonld\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2225\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113\",\n              \"result\": {\n                \"@id\": \"_:b528\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand with context including JavaScript Object property names\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0113-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0113-out.jsonld\",\n          \"title\": \"context with JavaScript Object property names\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1524\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114\",\n              \"result\": {\n                \"@id\": \"_:b2768\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1525\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An exception for the colliding keywords error is made for @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0114-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0114-out.jsonld\",\n          \"title\": \"Expansion allows multiple properties expanding to @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1360\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117\",\n              \"result\": {\n                \"@id\": \"_:b1361\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1362\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms may begin with a colon and not be treated as IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0117-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0117-out.jsonld\",\n          \"title\": \"A term starting with a colon can expand to a different IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b548\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118\",\n              \"result\": {\n                \"@id\": \"_:b3204\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b549\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms may begin with a colon and not be treated as IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0118-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0118-out.jsonld\",\n          \"title\": \"Expanding a value staring with a colon does not treat that value as an IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b416\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119\",\n              \"result\": {\n                \"@id\": \"_:b418\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b417\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0119-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0119-out.jsonld\",\n          \"title\": \"Ignore some terms with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b693\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120\",\n              \"result\": {\n                \"@id\": \"_:b694\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b695\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0120-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0120-out.jsonld\",\n          \"title\": \"Ignore some values of @id with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b766\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121\",\n              \"result\": {\n                \"@id\": \"_:b768\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b767\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0121-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0121-out.jsonld\",\n          \"title\": \"Ignore some values of @reverse with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b23\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122\",\n              \"result\": {\n                \"@id\": \"_:b25\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b24\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0122-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0122-out.jsonld\",\n          \"title\": \"Ignore some IRIs when that start with @ when expanding.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b585\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123\",\n              \"result\": {\n                \"@id\": \"_:b362\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b586\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors MUST validate datatype IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0123-in.jsonld\",\n          \"mf:result\": \"invalid typed value\",\n          \"title\": \"Value objects including invalid literal datatype IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3437\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124\",\n              \"result\": {\n                \"@id\": \"_:b3439\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3438\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that @vocab defined as a compact IRI expands properly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0124-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0124-out.jsonld\",\n          \"title\": \"compact IRI as @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b487\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125\",\n              \"result\": {\n                \"@id\": \"_:b488\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b322\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that @vocab defined as a term expands properly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0125-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0125-out.jsonld\",\n          \"title\": \"term as @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b715\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126\",\n              \"result\": {\n                \"@id\": \"_:b717\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b716\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0126-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0126-out.jsonld\",\n          \"title\": \"A scoped context may include itself recursively (direct)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1972\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127\",\n              \"result\": {\n                \"@id\": \"_:b2556\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b600\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0127-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0127-out.jsonld\",\n          \"title\": \"A scoped context may include itself recursively (indirect)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2168\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128\",\n              \"result\": {\n                \"@id\": \"_:b3147\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2169\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0128-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0128-out.jsonld\",\n          \"title\": \"Two scoped context may include a shared context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1750\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129\",\n              \"result\": {\n                \"@id\": \"_:b1751\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0129-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0129-out.jsonld\",\n          \"title\": \"Base without trailing slash, without path\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1389\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130\",\n              \"result\": {\n                \"@id\": \"_:b1390\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/0130-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/0130-out.jsonld\",\n          \"title\": \"Base without trailing slash, with path\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3270\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001\",\n              \"result\": {\n                \"@id\": \"_:b3272\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3271\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c001-out.jsonld\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3266\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002\",\n              \"result\": {\n                \"@id\": \"_:b2093\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2534\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c002-out.jsonld\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2069\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003\",\n              \"result\": {\n                \"@id\": \"_:b1958\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2070\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c003-out.jsonld\",\n          \"title\": \"property and value with different terms mapping to the same expanded property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b940\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004\",\n              \"result\": {\n                \"@id\": \"_:b942\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b941\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c004-out.jsonld\",\n          \"title\": \"deep @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2931\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005\",\n              \"result\": {\n                \"@id\": \"_:b968\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2932\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c005-out.jsonld\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b413\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006\",\n              \"result\": {\n                \"@id\": \"_:b415\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b414\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c006-out.jsonld\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2119\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007\",\n              \"result\": {\n                \"@id\": \"_:b2120\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2121\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c007-out.jsonld\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2249\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008\",\n              \"result\": {\n                \"@id\": \"_:b2363\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1282\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c008-out.jsonld\",\n          \"title\": \"alias of @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b569\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009\",\n              \"result\": {\n                \"@id\": \"_:b570\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b571\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c009-out.jsonld\",\n          \"title\": \"deep @type-scoped @context does NOT affect nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1045\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010\",\n              \"result\": {\n                \"@id\": \"_:b1047\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1046\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c010-out.jsonld\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1421\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011\",\n              \"result\": {\n                \"@id\": \"_:b211\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1422\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c011-out.jsonld\",\n          \"title\": \"orders @type terms when applying scoped contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b101\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012\",\n              \"result\": {\n                \"@id\": \"_:b103\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b102\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c012-out.jsonld\",\n          \"title\": \"deep property-term scoped @context in @type-scoped @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1853\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013\",\n              \"result\": {\n                \"@id\": \"_:b1854\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1855\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c013-out.jsonld\",\n          \"title\": \"type maps use scoped context from type index and not scoped context from containing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3401\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014\",\n              \"result\": {\n                \"@id\": \"_:b3319\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b100\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context nullification\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c014-out.jsonld\",\n          \"title\": \"type-scoped context nullification\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1653\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015\",\n              \"result\": {\n                \"@id\": \"_:b1654\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1655\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c015-out.jsonld\",\n          \"title\": \"type-scoped base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3244\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016\",\n              \"result\": {\n                \"@id\": \"_:b3245\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3151\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c016-out.jsonld\",\n          \"title\": \"type-scoped vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1187\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017\",\n              \"result\": {\n                \"@id\": \"_:b2780\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1188\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped contexts are property reverted\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c017-out.jsonld\",\n          \"title\": \"multiple type-scoped contexts are properly reverted\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b422\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018\",\n              \"result\": {\n                \"@id\": \"_:b424\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b423\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped types resolved against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c018-out.jsonld\",\n          \"title\": \"multiple type-scoped types resolved against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2273\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019\",\n              \"result\": {\n                \"@id\": \"_:b1353\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1707\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with multiple property scoped terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c019-out.jsonld\",\n          \"title\": \"type-scoped context with multiple property scoped terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3351\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020\",\n              \"result\": {\n                \"@id\": \"_:b1523\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b246\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c020-out.jsonld\",\n          \"title\": \"type-scoped value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1373\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021\",\n              \"result\": {\n                \"@id\": \"_:b1375\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1374\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value mix\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c021-out.jsonld\",\n          \"title\": \"type-scoped value mix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b437\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022\",\n              \"result\": {\n                \"@id\": \"_:b1126\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b438\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c022-out.jsonld\",\n          \"title\": \"type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b158\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023\",\n              \"result\": {\n                \"@id\": \"_:b160\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b159\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"composed type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c023-out.jsonld\",\n          \"title\": \"composed type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3186\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024\",\n              \"result\": {\n                \"@id\": \"_:b3057\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1879\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + property-scoped + values evaluates against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c024-out.jsonld\",\n          \"title\": \"type-scoped + property-scoped + values evaluates against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b319\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025\",\n              \"result\": {\n                \"@id\": \"_:b321\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b320\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + graph container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c025-out.jsonld\",\n          \"title\": \"type-scoped + graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2784\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026\",\n              \"result\": {\n                \"@id\": \"_:b2785\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1810\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with @propagate: true survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c026-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c026-out.jsonld\",\n          \"title\": \"@propagate: true on type-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b650\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027\",\n              \"result\": {\n                \"@id\": \"_:b1202\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b651\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"property-scoped context with @propagate: false do not survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c027-out.jsonld\",\n          \"title\": \"@propagate: false on property-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b655\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028\",\n              \"result\": {\n                \"@id\": \"_:b657\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b656\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"embedded context with @propagate: false do not survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c028-out.jsonld\",\n          \"title\": \"@propagate: false on embedded context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b754\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029\",\n              \"result\": {\n                \"@id\": \"_:b1064\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b755\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@propagate is invalid in 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c029-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@propagate is invalid in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b466\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030\",\n              \"result\": {\n                \"@id\": \"_:b467\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b468\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@propagate must be boolean valued\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c030-in.jsonld\",\n          \"mf:result\": \"invalid @propagate value\",\n          \"title\": \"@propagate must be boolean valued\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1485\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031\",\n              \"result\": {\n                \"@id\": \"_:b2795\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1486\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"URL resolution follows RFC3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c031-out.jsonld\",\n          \"title\": \"@context resolutions respects relative URLs.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2207\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032\",\n              \"result\": {\n                \"@id\": \"_:b2975\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1250\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An embedded context which is never used should still be checked.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c032-in.jsonld\",\n          \"mf:result\": \"invalid scoped context\",\n          \"title\": \"Unused embedded context with error.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2042\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033\",\n              \"result\": {\n                \"@id\": \"_:b2043\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2044\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An unused context with an embedded context should still be checked.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c033-in.jsonld\",\n          \"mf:result\": \"invalid scoped context\",\n          \"title\": \"Unused context with an embedded context error.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b54\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034\",\n              \"result\": {\n                \"@id\": \"_:b3299\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b55\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Scoped contexts may be externally loaded.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c034-out.jsonld\",\n          \"title\": \"Remote scoped context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3106\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035\",\n              \"result\": {\n                \"@id\": \"_:b270\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3107\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms should make use of @vocab relative to the scope in which the term was defined.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/c035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/c035-out.jsonld\",\n          \"title\": \"Term scoping with embedded contexts.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b836\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01\",\n              \"result\": {\n                \"@id\": \"_:b2152\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b837\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Strings are coerced to have @direction based on default and term direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di01-out.jsonld\",\n          \"title\": \"Expand string using default and term directions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b882\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02\",\n              \"result\": {\n                \"@id\": \"_:b883\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b884\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Strings are coerced to have @direction based on default and term direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di02-out.jsonld\",\n          \"title\": \"Expand string using default and term directions and languages\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1005\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03\",\n              \"result\": {\n                \"@id\": \"_:b3150\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1006\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List values where the term has @direction are used in expansion.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di03-out.jsonld\",\n          \"title\": \"expand list values with @direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2184\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04\",\n              \"result\": {\n                \"@id\": \"_:b2186\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2185\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di04-out.jsonld\",\n          \"title\": \"simple language map with term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3129\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05\",\n              \"result\": {\n                \"@id\": \"_:b357\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3130\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di05-out.jsonld\",\n          \"title\": \"simple language mapwith overriding term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1411\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06\",\n              \"result\": {\n                \"@id\": \"_:b1413\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1412\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di06-out.jsonld\",\n          \"title\": \"simple language mapwith overriding null direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1436\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07\",\n              \"result\": {\n                \"@id\": \"_:b888\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1437\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/di07-out.jsonld\",\n          \"title\": \"simple language map with mismatching term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3251\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08\",\n              \"result\": {\n                \"@id\": \"_:b1841\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b365\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Generate an error if @direction has illegal value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di08-in.jsonld\",\n          \"mf:result\": \"invalid base direction\",\n          \"title\": \"@direction must be one of ltr or rtl\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b963\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09\",\n              \"result\": {\n                \"@id\": \"_:b1186\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b964\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects can have either @type but not @language or @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/di09-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"@direction is incompatible with @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1882\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01\",\n              \"result\": {\n                \"@id\": \"_:b1883\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1884\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid term definition is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/ec01-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Invalid keyword in term definition\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2538\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02\",\n              \"result\": {\n                \"@id\": \"_:b788\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2334\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised if @type is defined as a term with an empty map\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/ec02-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Term definition on @type with empty map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b545\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01\",\n              \"result\": {\n                \"@id\": \"_:b547\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b546\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid container mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/em01-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Invalid container mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1863\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01\",\n              \"result\": {\n                \"@id\": \"_:b2677\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1419\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"container: @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en01-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a string value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2832\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02\",\n              \"result\": {\n                \"@id\": \"_:b2833\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2834\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en02-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a boolen value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1284\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03\",\n              \"result\": {\n                \"@id\": \"_:b3178\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1285\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en03-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a numeric value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2114\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04\",\n              \"result\": {\n                \"@id\": \"_:b2116\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2115\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en04-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a value object value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b805\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05\",\n              \"result\": {\n                \"@id\": \"_:b806\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b807\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en05-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"does not allow a keyword other than @nest for the value of @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1892\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06\",\n              \"result\": {\n                \"@id\": \"_:b3003\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1893\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/en06-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"does not allow @nest with @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3408\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02\",\n              \"result\": {\n                \"@id\": \"_:b3074\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3296\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/ep02-in.jsonld\",\n          \"mf:result\": \"processing mode conflict\",\n          \"title\": \"processingMode json-ld-1.0 conflicts with @version: 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1993\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03\",\n              \"result\": {\n                \"@id\": \"_:b2513\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1994\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @version is specified, it must be 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/ep03-in.jsonld\",\n          \"mf:result\": \"invalid @version value\",\n          \"title\": \"@version must be 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2293\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01\",\n              \"result\": {\n                \"@id\": \"_:b2294\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er01-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Keywords cannot be aliased to other keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b514\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04\",\n              \"result\": {\n                \"@id\": \"_:b515\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context dereference results in an error\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er04-in.jsonld\",\n          \"mf:result\": \"loading remote context failed\",\n          \"title\": \"Error dereferencing a remote context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b113\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05\",\n              \"result\": {\n                \"@id\": \"_:b115\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b114\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a remote context is not an object containing @context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er05-in.jsonld\",\n          \"mf:result\": \"invalid remote context\",\n          \"title\": \"Invalid remote context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b567\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06\",\n              \"result\": {\n                \"@id\": \"_:b568\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context is not a string or object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er06-in.jsonld\",\n          \"mf:result\": \"invalid local context\",\n          \"title\": \"Invalid local context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2343\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07\",\n              \"result\": {\n                \"@id\": \"_:b2063\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er07-in.jsonld\",\n          \"mf:result\": \"invalid base IRI\",\n          \"title\": \"Invalid base IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2236\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08\",\n              \"result\": {\n                \"@id\": \"_:b2237\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er08-in.jsonld\",\n          \"mf:result\": \"invalid vocab mapping\",\n          \"title\": \"Invalid vocab mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b96\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09\",\n              \"result\": {\n                \"@id\": \"_:b97\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er09-in.jsonld\",\n          \"mf:result\": \"invalid default language\",\n          \"title\": \"Invalid default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2694\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10\",\n              \"result\": {\n                \"@id\": \"_:b1337\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a cyclic IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er10-in.jsonld\",\n          \"mf:result\": \"cyclic IRI mapping\",\n          \"title\": \"Cyclic IRI mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b526\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11\",\n              \"result\": {\n                \"@id\": \"_:b527\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid term definition is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er11-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Invalid term definition\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1316\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12\",\n              \"result\": {\n                \"@id\": \"_:b1317\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er12-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid type mapping (not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b593\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13\",\n              \"result\": {\n                \"@id\": \"_:b1200\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er13-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid type mapping (not absolute IRI)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1998\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14\",\n              \"result\": {\n                \"@id\": \"_:b1999\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid reverse property is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er14-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"Invalid reverse property (contains @id)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3007\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15\",\n              \"result\": {\n                \"@id\": \"_:b3008\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er15-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (@reverse not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3331\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17\",\n              \"result\": {\n                \"@id\": \"_:b2794\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid reverse property is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er17-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"Invalid reverse property (invalid @container)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3356\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18\",\n              \"result\": {\n                \"@id\": \"_:b1420\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er18-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (@id not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2161\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19\",\n              \"result\": {\n                \"@id\": \"_:b2162\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid keyword alias is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er19-in.jsonld\",\n          \"mf:result\": \"invalid keyword alias\",\n          \"title\": \"Invalid keyword alias (@context)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2634\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20\",\n              \"result\": {\n                \"@id\": \"_:b1741\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er20-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (no vocab mapping)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b902\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21\",\n              \"result\": {\n                \"@id\": \"_:b3484\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b903\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid container mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er21-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Invalid container mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b235\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22\",\n              \"result\": {\n                \"@id\": \"_:b236\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid language mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er22-in.jsonld\",\n          \"mf:result\": \"invalid language mapping\",\n          \"title\": \"Invalid language mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3185\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23\",\n              \"result\": {\n                \"@id\": \"_:b599\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er23-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid IRI mapping (relative IRI in @type)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1035\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25\",\n              \"result\": {\n                \"@id\": \"_:b1203\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when a invalid reverse property map is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er25-in.jsonld\",\n          \"mf:result\": \"invalid reverse property map\",\n          \"title\": \"Invalid reverse property map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b953\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26\",\n              \"result\": {\n                \"@id\": \"_:b954\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when colliding keywords are found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er26-in.jsonld\",\n          \"mf:result\": \"colliding keywords\",\n          \"title\": \"Colliding keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3430\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27\",\n              \"result\": {\n                \"@id\": \"_:b2842\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @id value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er27-in.jsonld\",\n          \"mf:result\": \"invalid @id value\",\n          \"title\": \"Invalid @id value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1543\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28\",\n              \"result\": {\n                \"@id\": \"_:b3429\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid type value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er28-in.jsonld\",\n          \"mf:result\": \"invalid type value\",\n          \"title\": \"Invalid type value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3394\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29\",\n              \"result\": {\n                \"@id\": \"_:b3142\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er29-in.jsonld\",\n          \"mf:result\": \"invalid value object value\",\n          \"title\": \"Invalid value object value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3257\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30\",\n              \"result\": {\n                \"@id\": \"_:b3258\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er30-in.jsonld\",\n          \"mf:result\": \"invalid language-tagged string\",\n          \"title\": \"Invalid language-tagged string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1111\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31\",\n              \"result\": {\n                \"@id\": \"_:b1112\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @index value value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er31-in.jsonld\",\n          \"mf:result\": \"invalid @index value\",\n          \"title\": \"Invalid @index value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3153\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33\",\n              \"result\": {\n                \"@id\": \"_:b2446\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @reverse value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er33-in.jsonld\",\n          \"mf:result\": \"invalid @reverse value\",\n          \"title\": \"Invalid @reverse value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b482\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34\",\n              \"result\": {\n                \"@id\": \"_:b2574\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid reverse property value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er34-in.jsonld\",\n          \"mf:result\": \"invalid reverse property value\",\n          \"title\": \"Invalid reverse property value (in @reverse)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3342\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35\",\n              \"result\": {\n                \"@id\": \"_:b1852\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language map value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er35-in.jsonld\",\n          \"mf:result\": \"invalid language map value\",\n          \"title\": \"Invalid language map value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1772\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36\",\n              \"result\": {\n                \"@id\": \"_:b2696\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid reverse property value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er36-in.jsonld\",\n          \"mf:result\": \"invalid reverse property value\",\n          \"title\": \"Invalid reverse property value (through coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1989\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37\",\n              \"result\": {\n                \"@id\": \"_:b2438\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er37-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"Invalid value object (unexpected keyword)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2549\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38\",\n              \"result\": {\n                \"@id\": \"_:b1433\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er38-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"Invalid value object (@type and @language)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3041\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39\",\n              \"result\": {\n                \"@id\": \"_:b2257\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language-tagged value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er39-in.jsonld\",\n          \"mf:result\": \"invalid language-tagged value\",\n          \"title\": \"Invalid language-tagged value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b107\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40\",\n              \"result\": {\n                \"@id\": \"_:b1069\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid typed value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er40-in.jsonld\",\n          \"mf:result\": \"invalid typed value\",\n          \"title\": \"Invalid typed value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b990\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41\",\n              \"result\": {\n                \"@id\": \"_:b3355\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid set or list object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er41-in.jsonld\",\n          \"mf:result\": \"invalid set or list object\",\n          \"title\": \"Invalid set or list object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3237\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42\",\n              \"result\": {\n                \"@id\": \"_:b1100\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3059\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er42-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Keywords may not be redefined in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2149\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43\",\n              \"result\": {\n                \"@id\": \"_:b3391\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2150\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding term mapping to @type uses @type syntax now illegal\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er43-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Term definition with @id: @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3287\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44\",\n              \"result\": {\n                \"@id\": \"_:b3318\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3288\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term definitions may look like compact IRIs, but must be consistent.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er44-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Redefine terms looking like compact IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3497\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48\",\n              \"result\": {\n                \"@id\": \"_:b1132\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2174\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that a relative IRI cannot be used as a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er48-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid term as relative IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2029\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49\",\n              \"result\": {\n                \"@id\": \"_:b3476\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2030\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that a relative IRI cannot be used as a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er49-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"A relative IRI cannot be used as a prefix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1212\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50\",\n              \"result\": {\n                \"@id\": \"_:b1213\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er50-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid reverse id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1770\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51\",\n              \"result\": {\n                \"@id\": \"_:b1771\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er51-in.jsonld\",\n          \"mf:result\": \"invalid value object value\",\n          \"title\": \"Invalid value object value using a value alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1645\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52\",\n              \"result\": {\n                \"@id\": \"_:b3428\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains a definition for the empty term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er52-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Definition for the empty term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b980\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53\",\n              \"result\": {\n                \"@id\": \"_:b981\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @prefix value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/er53-in.jsonld\",\n          \"mf:result\": \"invalid @prefix value\",\n          \"title\": \"Invalid prefix value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b502\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01\",\n              \"result\": {\n                \"@id\": \"_:b503\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b504\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid container mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/es01-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Using an array value for @context is illegal in JSON-LD 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1918\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02\",\n              \"result\": {\n                \"@id\": \"_:b1218\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1919\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Testing legal combinations of @set with other container values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/es02-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Mapping @container: [@list, @set] is invalid\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2250\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01\",\n              \"result\": {\n                \"@id\": \"_:b2251\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2252\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in01-out.jsonld\",\n          \"title\": \"Basic Included array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b221\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02\",\n              \"result\": {\n                \"@id\": \"_:b223\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b222\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in02-out.jsonld\",\n          \"title\": \"Basic Included object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2659\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03\",\n              \"result\": {\n                \"@id\": \"_:b2035\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2660\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in03-out.jsonld\",\n          \"title\": \"Multiple properties mapping to @included are folded together\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1119\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04\",\n              \"result\": {\n                \"@id\": \"_:b1120\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b745\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in04-out.jsonld\",\n          \"title\": \"Included containing @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1122\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05\",\n              \"result\": {\n                \"@id\": \"_:b1123\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1124\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in05-out.jsonld\",\n          \"title\": \"Property value with @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b572\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06\",\n              \"result\": {\n                \"@id\": \"_:b556\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b573\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/in06-out.jsonld\",\n          \"title\": \"json.api example\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2268\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07\",\n              \"result\": {\n                \"@id\": \"_:b2269\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2270\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in07-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2992\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08\",\n              \"result\": {\n                \"@id\": \"_:b1891\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2562\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in08-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a value object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b594\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09\",\n              \"result\": {\n                \"@id\": \"_:b595\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b596\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/in09-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a list object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1761\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01\",\n              \"result\": {\n                \"@id\": \"_:b1763\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1762\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (boolean true).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js01-out.jsonld\",\n          \"title\": \"Expand JSON literal (boolean true)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2511\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02\",\n              \"result\": {\n                \"@id\": \"_:b2248\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2512\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (boolean false).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js02-out.jsonld\",\n          \"title\": \"Expand JSON literal (boolean false)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b290\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03\",\n              \"result\": {\n                \"@id\": \"_:b292\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b291\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (double).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js03-out.jsonld\",\n          \"title\": \"Expand JSON literal (double)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1438\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04\",\n              \"result\": {\n                \"@id\": \"_:b1440\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1439\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (double-zero).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js04-out.jsonld\",\n          \"title\": \"Expand JSON literal (double-zero)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b201\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05\",\n              \"result\": {\n                \"@id\": \"_:b203\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b202\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (integer).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js05-out.jsonld\",\n          \"title\": \"Expand JSON literal (integer)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2719\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06\",\n              \"result\": {\n                \"@id\": \"_:b2720\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b833\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (object).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js06-out.jsonld\",\n          \"title\": \"Expand JSON literal (object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b792\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07\",\n              \"result\": {\n                \"@id\": \"_:b2497\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b793\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js07-out.jsonld\",\n          \"title\": \"Expand JSON literal (array)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1864\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08\",\n              \"result\": {\n                \"@id\": \"_:b1866\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1865\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with array canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js08-out.jsonld\",\n          \"title\": \"Expand JSON literal with array canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2074\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09\",\n              \"result\": {\n                \"@id\": \"_:b973\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2075\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with string canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js09-out.jsonld\",\n          \"title\": \"Transform JSON literal with string canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1114\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10\",\n              \"result\": {\n                \"@id\": \"_:b1115\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b360\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with structural canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js10-out.jsonld\",\n          \"title\": \"Expand JSON literal with structural canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2546\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11\",\n              \"result\": {\n                \"@id\": \"_:b2289\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2547\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with unicode canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js11-out.jsonld\",\n          \"title\": \"Expand JSON literal with unicode canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3217\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12\",\n              \"result\": {\n                \"@id\": \"_:b3315\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3218\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with value canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js12-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js12-out.jsonld\",\n          \"title\": \"Expand JSON literal with value canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b463\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13\",\n              \"result\": {\n                \"@id\": \"_:b1470\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b464\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with wierd canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js13-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js13-out.jsonld\",\n          \"title\": \"Expand JSON literal with wierd canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2578\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14\",\n              \"result\": {\n                \"@id\": \"_:b2089\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2579\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal does not expand terms inside json.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js14-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js14-out.jsonld\",\n          \"title\": \"Expand JSON literal without expanding contents\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b986\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15\",\n              \"result\": {\n                \"@id\": \"_:b1518\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b987\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal in expanded form.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js15-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js15-out.jsonld\",\n          \"title\": \"Expand JSON literal aleady in expanded form\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3117\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16\",\n              \"result\": {\n                \"@id\": \"_:b3344\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2231\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal in expanded form with aliased keys in value object.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js16-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js16-out.jsonld\",\n          \"title\": \"Expand JSON literal aleady in expanded form with aliased keys\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3006\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17\",\n              \"result\": {\n                \"@id\": \"_:b972\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2298\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (string).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js17-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js17-out.jsonld\",\n          \"title\": \"Expand JSON literal (string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1611\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18\",\n              \"result\": {\n                \"@id\": \"_:b1613\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1612\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js18-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js18-out.jsonld\",\n          \"title\": \"Expand JSON literal (null)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1818\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19\",\n              \"result\": {\n                \"@id\": \"_:b451\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1819\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with aliased @type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js19-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js19-out.jsonld\",\n          \"title\": \"Expand JSON literal with aliased @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b900\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20\",\n              \"result\": {\n                \"@id\": \"_:b901\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b396\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with aliased @value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js20-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js20-out.jsonld\",\n          \"title\": \"Expand JSON literal with aliased @value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2500\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21\",\n              \"result\": {\n                \"@id\": \"_:b2502\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2501\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding JSON literal with a @context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js21-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js21-out.jsonld\",\n          \"title\": \"Expand JSON literal with @context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3148\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22\",\n              \"result\": {\n                \"@id\": \"_:b3320\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3149\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js22-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js22-out.jsonld\",\n          \"title\": \"Expand JSON literal (null) aleady in expanded form.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b665\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23\",\n              \"result\": {\n                \"@id\": \"_:b3346\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b666\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests expanding property with @type @json to a JSON literal (empty array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/js23-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/js23-out.jsonld\",\n          \"title\": \"Expand JSON literal (empty array).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2852\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001\",\n              \"result\": {\n                \"@id\": \"_:b2853\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2816\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A language map may have a null value, which is ignored\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/l001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/l001-out.jsonld\",\n          \"title\": \"Language map with null value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3024\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01\",\n              \"result\": {\n                \"@id\": \"_:b3026\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3025\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li01-out.jsonld\",\n          \"title\": \"@list containing @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2711\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02\",\n              \"result\": {\n                \"@id\": \"_:b293\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2712\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li02-out.jsonld\",\n          \"title\": \"@list containing empty @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1171\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03\",\n              \"result\": {\n                \"@id\": \"_:b1172\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1173\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li03-out.jsonld\",\n          \"title\": \"@list containing @list (with coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1243\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04\",\n              \"result\": {\n                \"@id\": \"_:b1244\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1245\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li04-out.jsonld\",\n          \"title\": \"@list containing empty @list (with coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b280\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05\",\n              \"result\": {\n                \"@id\": \"_:b281\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b282\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li05-out.jsonld\",\n          \"title\": \"coerced @list containing an array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1658\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06\",\n              \"result\": {\n                \"@id\": \"_:b3246\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1659\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li06-out.jsonld\",\n          \"title\": \"coerced @list containing an empty array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2639\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07\",\n              \"result\": {\n                \"@id\": \"_:b2650\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2640\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li07-out.jsonld\",\n          \"title\": \"coerced @list containing deep arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b959\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08\",\n              \"result\": {\n                \"@id\": \"_:b960\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b961\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li08-out.jsonld\",\n          \"title\": \"coerced @list containing deep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2449\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09\",\n              \"result\": {\n                \"@id\": \"_:b2450\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2451\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li09-out.jsonld\",\n          \"title\": \"coerced @list containing multiple lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3044\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10\",\n              \"result\": {\n                \"@id\": \"_:b1359\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2845\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/li10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/li10-out.jsonld\",\n          \"title\": \"coerced @list containing mixed list values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b108\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001\",\n              \"result\": {\n                \"@id\": \"_:b1272\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b109\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m001-out.jsonld\",\n          \"title\": \"Adds @id to object not having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1959\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002\",\n              \"result\": {\n                \"@id\": \"_:b1960\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1961\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m002-out.jsonld\",\n          \"title\": \"Retains @id in object already having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3220\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003\",\n              \"result\": {\n                \"@id\": \"_:b3222\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3221\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m003-out.jsonld\",\n          \"title\": \"Adds @type to object not having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1939\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004\",\n              \"result\": {\n                \"@id\": \"_:b1940\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1150\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m004-out.jsonld\",\n          \"title\": \"Prepends @type in object already having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2361\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005\",\n              \"result\": {\n                \"@id\": \"_:b606\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2362\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example.org/\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m005-out.jsonld\",\n          \"title\": \"Adds expanded @id to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3139\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006\",\n              \"result\": {\n                \"@id\": \"_:b2633\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3140\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m006-out.jsonld\",\n          \"title\": \"Adds vocabulary expanded @type to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2695\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007\",\n              \"result\": {\n                \"@id\": \"_:b3360\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b342\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m007-out.jsonld\",\n          \"title\": \"Adds document expanded @type to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2724\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008\",\n              \"result\": {\n                \"@id\": \"_:b1340\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2412\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m008-out.jsonld\",\n          \"title\": \"When type is in a type map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b0\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009\",\n              \"result\": {\n                \"@id\": \"_:b2\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m009-out.jsonld\",\n          \"title\": \"language map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3195\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010\",\n              \"result\": {\n                \"@id\": \"_:b2394\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3196\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m010-out.jsonld\",\n          \"title\": \"language map with alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1109\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011\",\n              \"result\": {\n                \"@id\": \"_:b3478\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1110\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m011-out.jsonld\",\n          \"title\": \"id map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b154\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012\",\n              \"result\": {\n                \"@id\": \"_:b2789\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b155\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m012-out.jsonld\",\n          \"title\": \"type map with alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1802\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013\",\n              \"result\": {\n                \"@id\": \"_:b1803\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1458\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m013-out.jsonld\",\n          \"title\": \"graph index map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3118\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014\",\n              \"result\": {\n                \"@id\": \"_:b3119\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1760\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m014-out.jsonld\",\n          \"title\": \"graph index map with alias @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3013\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015\",\n              \"result\": {\n                \"@id\": \"_:b1401\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3014\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id with @none\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m015-out.jsonld\",\n          \"title\": \"graph id index map with aliased @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2485\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016\",\n              \"result\": {\n                \"@id\": \"_:b2487\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2486\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id with @none\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m016-out.jsonld\",\n          \"title\": \"graph id index map with aliased @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b889\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017\",\n              \"result\": {\n                \"@id\": \"_:b891\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b890\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m017-out.jsonld\",\n          \"title\": \"string value of type map expands to node reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1060\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018\",\n              \"result\": {\n                \"@id\": \"_:b1062\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1061\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m018-out.jsonld\",\n          \"title\": \"string value of type map expands to node reference with @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2005\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019\",\n              \"result\": {\n                \"@id\": \"_:b2006\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2007\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/m019-out.jsonld\",\n          \"title\": \"string value of type map expands to node reference with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3416\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020\",\n              \"result\": {\n                \"@id\": \"_:b3417\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1357\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/m020-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"string value of type map must not be a literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1296\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001\",\n              \"result\": {\n                \"@id\": \"_:b1298\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1297\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n001-out.jsonld\",\n          \"title\": \"Expands input using @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b770\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002\",\n              \"result\": {\n                \"@id\": \"_:b2692\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b771\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n002-out.jsonld\",\n          \"title\": \"Expands input using aliased @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2987\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003\",\n              \"result\": {\n                \"@id\": \"_:b2725\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2550\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n003-out.jsonld\",\n          \"title\": \"Appends nested values when property at base and nested\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2304\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004\",\n              \"result\": {\n                \"@id\": \"_:b122\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b395\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n004-out.jsonld\",\n          \"title\": \"Appends nested values from all @nest aliases\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1955\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005\",\n              \"result\": {\n                \"@id\": \"_:b1957\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1956\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n005-out.jsonld\",\n          \"title\": \"Nested nested containers\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b248\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006\",\n              \"result\": {\n                \"@id\": \"_:b521\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b249\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n006-out.jsonld\",\n          \"title\": \"Arrays of nested values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3039\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007\",\n              \"result\": {\n                \"@id\": \"_:b2416\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3040\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n007-out.jsonld\",\n          \"title\": \"A nest of arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2014\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008\",\n              \"result\": {\n                \"@id\": \"_:b2015\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2016\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/n008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/n008-out.jsonld\",\n          \"title\": \"Multiple keys may mapping to @type when nesting\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3291\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001\",\n              \"result\": {\n                \"@id\": \"_:b3292\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1569\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/p001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/p001-out.jsonld\",\n          \"title\": \"@version may be specified after first context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2602\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002\",\n              \"result\": {\n                \"@id\": \"_:b2604\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2603\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/p002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/p002-out.jsonld\",\n          \"title\": \"@version setting [1.0, 1.1, 1.0]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2984\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003\",\n              \"result\": {\n                \"@id\": \"_:b1667\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1318\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/p003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/p003-out.jsonld\",\n          \"title\": \"@version setting [1.1, 1.0]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1191\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004\",\n              \"result\": {\n                \"@id\": \"_:b146\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1192\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/p004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/p004-out.jsonld\",\n          \"title\": \"@version setting [1.1, 1.0, 1.1]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2095\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01\",\n              \"result\": {\n                \"@id\": \"_:b2097\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2096\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi01-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @version is json-ld-1.0 for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1623\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02\",\n              \"result\": {\n                \"@id\": \"_:b1625\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1624\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi02-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @container does not include @index for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2861\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03\",\n              \"result\": {\n                \"@id\": \"_:b2862\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1817\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi03-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @index is a keyword for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b163\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04\",\n              \"result\": {\n                \"@id\": \"_:b164\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b130\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi04-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @index is not a string for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b517\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05\",\n              \"result\": {\n                \"@id\": \"_:b519\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b518\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi05-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"error if attempting to add property to value object for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3247\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06\",\n              \"result\": {\n                \"@id\": \"_:b340\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3248\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi06-out.jsonld\",\n          \"title\": \"property-valued index expands to property value, instead of @index (value)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1773\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07\",\n              \"result\": {\n                \"@id\": \"_:b1775\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1774\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi07-out.jsonld\",\n          \"title\": \"property-valued index appends to property value, instead of @index (value)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b167\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08\",\n              \"result\": {\n                \"@id\": \"_:b168\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b169\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi08-out.jsonld\",\n          \"title\": \"property-valued index expands to property value, instead of @index (node)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1394\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09\",\n              \"result\": {\n                \"@id\": \"_:b343\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1395\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi09-out.jsonld\",\n          \"title\": \"property-valued index appends to property value, instead of @index (node)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b311\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10\",\n              \"result\": {\n                \"@id\": \"_:b312\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b313\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi10-out.jsonld\",\n          \"title\": \"property-valued index does not output property for @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3157\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11\",\n              \"result\": {\n                \"@id\": \"_:b3159\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3158\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pi11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pi11-out.jsonld\",\n          \"title\": \"property-valued index adds property to graph object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b821\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01\",\n              \"result\": {\n                \"@id\": \"_:b3357\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b822\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check error when overriding a protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr01-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1981\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02\",\n              \"result\": {\n                \"@id\": \"_:b1983\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1982\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A term with @protected: false is not protected.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr02-out.jsonld\",\n          \"title\": \"Set a term to not be protected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2697\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03\",\n              \"result\": {\n                \"@id\": \"_:b2698\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1719\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context protects all term definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr03-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect all terms in context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b195\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04\",\n              \"result\": {\n                \"@id\": \"_:b196\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b197\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context does not protect terms with @protected: false.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr04-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Do not protect term with @protected: false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1144\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05\",\n              \"result\": {\n                \"@id\": \"_:b232\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1145\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The Active context be set to null from an embedded context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr05-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Clear active context with protected terms from an embedded context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1638\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06\",\n              \"result\": {\n                \"@id\": \"_:b1639\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1640\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The Active context may be set to null from a scoped context of a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr06-out.jsonld\",\n          \"title\": \"Clear active context of protected terms from a term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2554\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08\",\n              \"result\": {\n                \"@id\": \"_:b2645\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2012\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A scoped context can protect terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr08-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Term with protected scoped context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1275\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09\",\n              \"result\": {\n                \"@id\": \"_:b1277\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1276\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected term cannot redefine another protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr09-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Attempt to redefine term in other protected context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2580\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10\",\n              \"result\": {\n                \"@id\": \"_:b2581\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2582\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Simple protected and unprotected terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr10-out.jsonld\",\n          \"title\": \"Simple protected and unprotected terms.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b864\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11\",\n              \"result\": {\n                \"@id\": \"_:b866\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b865\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr11-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fail to override protected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b127\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12\",\n              \"result\": {\n                \"@id\": \"_:b129\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b128\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Scoped context fail to override protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr12-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Scoped context fail to override protected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2364\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13\",\n              \"result\": {\n                \"@id\": \"_:b2365\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1267\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Override unprotected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr13-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr13-out.jsonld\",\n          \"title\": \"Override unprotected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1689\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14\",\n              \"result\": {\n                \"@id\": \"_:b2212\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1690\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Clear protection with null context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr14-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr14-out.jsonld\",\n          \"title\": \"Clear protection with null context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1807\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15\",\n              \"result\": {\n                \"@id\": \"_:b1808\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1809\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Clear protection with array with null context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr15-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr15-out.jsonld\",\n          \"title\": \"Clear protection with array with null context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3168\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16\",\n              \"result\": {\n                \"@id\": \"_:b3169\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2948\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Override protected terms after null.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr16-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr16-out.jsonld\",\n          \"title\": \"Override protected terms after null.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3400\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17\",\n              \"result\": {\n                \"@id\": \"_:b2726\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2661\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected terms with type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr17-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail to override protected terms with type.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1606\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18\",\n              \"result\": {\n                \"@id\": \"_:b1607\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1608\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected terms with type+null+ctx.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr18-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail to override protected terms with type+null+ctx.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b274\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19\",\n              \"result\": {\n                \"@id\": \"_:b214\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b275\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Mix of protected and unprotected terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr19-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr19-out.jsonld\",\n          \"title\": \"Mix of protected and unprotected terms.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1510\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20\",\n              \"result\": {\n                \"@id\": \"_:b1511\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1512\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail with mix of protected and unprotected terms with type+null+ctx.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr20-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail with mix of protected and unprotected terms with type+null+ctx.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3099\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21\",\n              \"result\": {\n                \"@id\": \"_:b1520\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3100\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail with mix of protected and unprotected terms with type+null.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr21-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail with mix of protected and unprotected terms with type+null.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b244\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22\",\n              \"result\": {\n                \"@id\": \"_:b703\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b245\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check legal overriding of type-scoped protected term from nested node.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr22-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr22-out.jsonld\",\n          \"title\": \"Check legal overriding of type-scoped protected term from nested node.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2459\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23\",\n              \"result\": {\n                \"@id\": \"_:b2460\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2461\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected alias term with same definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr23-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr23-out.jsonld\",\n          \"title\": \"Allows redefinition of protected alias term with same definition.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3199\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24\",\n              \"result\": {\n                \"@id\": \"_:b3200\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1315\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected prefix term with same definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr24-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr24-out.jsonld\",\n          \"title\": \"Allows redefinition of protected prefix term with same definition.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2053\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25\",\n              \"result\": {\n                \"@id\": \"_:b2209\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2054\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of terms with scoped contexts using same definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr25-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr25-out.jsonld\",\n          \"title\": \"Allows redefinition of terms with scoped contexts using same definitions.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3267\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26\",\n              \"result\": {\n                \"@id\": \"_:b2743\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1786\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fails on redefinition of terms with scoped contexts using different definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr26-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fails on redefinition of terms with scoped contexts using different definitions.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3202\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27\",\n              \"result\": {\n                \"@id\": \"_:b2627\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2596\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected alias term with same definition modulo protected flag.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr27-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr27-out.jsonld\",\n          \"title\": \"Allows redefinition of protected alias term with same definition modulo protected flag.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b198\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28\",\n              \"result\": {\n                \"@id\": \"_:b199\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b200\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected term with a null IRI mapping cannot be redefined.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr28-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fails if trying to redefine a protected null term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2146\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29\",\n              \"result\": {\n                \"@id\": \"_:b1804\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b17\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion of Compact IRIs considers if the term can be used as a prefix.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr29-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr29-out.jsonld\",\n          \"title\": \"Does not expand a Compact IRI using a non-prefix term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3175\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30\",\n              \"result\": {\n                \"@id\": \"_:b2275\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3176\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr30-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr30-out.jsonld\",\n          \"title\": \"Keywords may be protected.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3480\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31\",\n              \"result\": {\n                \"@id\": \"_:b3456\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b739\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr31-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protected keyword aliases cannot be overridden.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2443\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32\",\n              \"result\": {\n                \"@id\": \"_:b2637\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2444\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr32-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protected @type cannot be overridden.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2928\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33\",\n              \"result\": {\n                \"@id\": \"_:b2943\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2929\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keyword aliases can not be used as prefixes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr33-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Fails if trying to declare a keyword alias as prefix.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3451\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34\",\n              \"result\": {\n                \"@id\": \"_:b3453\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3452\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr34-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr34-out.jsonld\",\n          \"title\": \"Ignores a non-keyword term starting with '@'\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3473\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35\",\n              \"result\": {\n                \"@id\": \"_:b3274\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3379\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr35-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr35-out.jsonld\",\n          \"title\": \"Ignores a non-keyword term starting with '@' (with @vocab)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2137\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36\",\n              \"result\": {\n                \"@id\": \"_:b1453\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1838\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr36-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr36-out.jsonld\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1924\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37\",\n              \"result\": {\n                \"@id\": \"_:b1925\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1926\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr37-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr37-out.jsonld\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (with @vocab).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1799\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38\",\n              \"result\": {\n                \"@id\": \"_:b1800\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1801\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr38-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr38-out.jsonld\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (@reverse).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2682\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39\",\n              \"result\": {\n                \"@id\": \"_:b237\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2672\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr39-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr39-out.jsonld\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3323\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40\",\n              \"result\": {\n                \"@id\": \"_:b3324\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b440\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check overriding of protected term from property-scoped context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/pr40-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/pr40-out.jsonld\",\n          \"title\": \"Protected terms and property-scoped contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2117\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01\",\n              \"result\": {\n                \"@id\": \"_:b2118\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1350\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import is invalid in 1.0.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so01-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import is invalid in 1.0.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2606\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02\",\n              \"result\": {\n                \"@id\": \"_:b2608\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2607\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import must be a string.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so02-in.jsonld\",\n          \"mf:result\": \"invalid @import value\",\n          \"title\": \"@import must be a string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b621\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03\",\n              \"result\": {\n                \"@id\": \"_:b622\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b623\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors must detect source contexts that include @import.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so03-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import overflow\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b533\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05\",\n              \"result\": {\n                \"@id\": \"_:b535\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b534\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with @propagate: true survive node-objects (with @import)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/so05-out.jsonld\",\n          \"title\": \"@propagate: true on type-scoped context with @import\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b152\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06\",\n              \"result\": {\n                \"@id\": \"_:b2916\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b153\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"property-scoped context with @propagate: false do not survive node-objects (with @import)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/so06-out.jsonld\",\n          \"title\": \"@propagate: false on property-scoped context with @import\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b618\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07\",\n              \"result\": {\n                \"@id\": \"_:b620\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b619\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context protects all term definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so07-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect all terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3172\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08\",\n              \"result\": {\n                \"@id\": \"_:b3173\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2991\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/so08-out.jsonld\",\n          \"title\": \"Override term defined in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1991\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09\",\n              \"result\": {\n                \"@id\": \"_:b1398\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1992\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/so09-out.jsonld\",\n          \"title\": \"Override @vocab defined in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2738\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10\",\n              \"result\": {\n                \"@id\": \"_:b2739\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2740\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so10-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3328\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11\",\n              \"result\": {\n                \"@id\": \"_:b2605\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1951\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/so11-out.jsonld\",\n          \"title\": \"Override protected terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2844\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12\",\n              \"result\": {\n                \"@id\": \"_:b1164\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2311\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import only valid within a term definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so12-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import may not be used in an imported context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b587\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13\",\n              \"result\": {\n                \"@id\": \"_:b588\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b589\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import can only reference a single context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/so13-in.jsonld\",\n          \"mf:result\": \"invalid remote context\",\n          \"title\": \"@import can only reference a single context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b950\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01\",\n              \"result\": {\n                \"@id\": \"_:b952\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b951\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none is illegal in json-ld-1.0.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/tn01-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"@type: @none is illegal in 1.0.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3114\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02\",\n              \"result\": {\n                \"@id\": \"_:b3116\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3115\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none leaves inputs other than strings alone\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/expand/tn02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/expand/tn02-out.jsonld\",\n          \"title\": \"@type: @none expands strings as value objects\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Expansion\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"rdfs:comment\": \"These tests implement the requirements for the JSON-LD [Framing Algorithm](https://www.w3.org/TR/json-ld11-framing/#framing-algorithm).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b559\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b361\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b560\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Basic example used in playgrond and spec examples.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0001-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0001-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0001-out.jsonld\",\n          \"title\": \"Library framing example\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1630\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b379\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1631\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Append extra values to output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0002-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0002-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0002-out.jsonld\",\n          \"title\": \"reframe w/extra CURIE value.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b92\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b3152\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b93\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Do not match without a matching @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0003-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0003-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0003-out.jsonld\",\n          \"title\": \"reframe (null)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b278\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b686\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b279\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Multiple matches on @type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0004-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0004-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0004-out.jsonld\",\n          \"title\": \"reframe (type)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b390\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b392\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b391\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"If property is not in frame, and explicit is true, do not add any values for property to output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0005-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0005-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0005-out.jsonld\",\n          \"title\": \"reframe (explicit)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b498\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b499\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b500\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Unless the explicit is false, processors append extra values to output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0006-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0006-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0006-out.jsonld\",\n          \"title\": \"reframe (non-explicit)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b825\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b826\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b827\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"If property is a keyword, processors add property and objects to output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0007-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0007-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0007-out.jsonld\",\n          \"title\": \"input has multiple types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3431\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b2125\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3279\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Various cases showing array output for @container: @set, and non-embedding of node values if @embed: false.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0008-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0008-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0008-out.jsonld\",\n          \"title\": \"array framing cases\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b629\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b1008\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b630\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0009-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0009-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0009-out.jsonld\",\n          \"title\": \"default value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1589\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b1591\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1590\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0011-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0011-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0011-out.jsonld\",\n          \"title\": \"@embed true/false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b786\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b787\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0012-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0012-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0012-out.jsonld\",\n          \"title\": \"Array frame\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2287\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b3121\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"An empty frame matches all objects, even if embedded, causing them to be serialized under @graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0013-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0013-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0013-out.jsonld\",\n          \"title\": \"Replace existing embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2242\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014\",\n              \"result\": {\n                \"@id\": \"_:b2243\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0014-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0014-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0014-out.jsonld\",\n          \"title\": \"Replace existing embed on 2nd pass\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1402\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b1403\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Torture test.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0015-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0015-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0015-out.jsonld\",\n          \"title\": \"Replace deeply-nested embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2467\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b2468\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2469\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Match if node has a @type property and frame has a @type property containing only an empty dictionary.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0016-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0016-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0016-out.jsonld\",\n          \"title\": \"Use @type in ducktype filter\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3302\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b2648\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b261\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Framing flattens expanded input, allowing for deeply embedded input to be re-framed.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0017-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0017-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0017-out.jsonld\",\n          \"title\": \"Non-flat input\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2064\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b2942\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2065\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Set framing context to the value of @context from frame, if it exists, or to a new empty context, otherwise.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0018-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0018-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0018-out.jsonld\",\n          \"title\": \"no frame @context but @graph output\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1161\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b140\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"@type matching matches nodes at top-level, and embedding causes them be embedded where referenced.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0019-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0019-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0019-out.jsonld\",\n          \"title\": \"Resources can be re-embedded again in each top-level frame match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2408\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b3171\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2409\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Empty frame matches all nodes at top-level, and repeats where embedded in json-ld-1.0 mode.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0020-out.jsonld\",\n          \"title\": \"Blank nodes in an array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3002\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021\",\n              \"result\": {\n                \"@id\": \"_:b3363\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b664\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Empty frame matches all nodes at top-level, and repeats where embedded (with list content) in json-ld-1.0 mode.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0021-out.jsonld\",\n          \"title\": \"Blank nodes in @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b353\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b339\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b354\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Match if node and frame both have the same @id property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0022-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0022-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0022-out.jsonld\",\n          \"title\": \"Match on @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b215\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b217\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b216\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"No match if node has a property where frame has an empty array for that same property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0023-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0023-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0023-out.jsonld\",\n          \"title\": \"No match on []\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1055\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b1056\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1057\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Match if @requireAll is false and both node and frame contain common non-keyword properties of any value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0024-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0024-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0024-out.jsonld\",\n          \"title\": \"match on any common properties if @requireAll: false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1379\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b1380\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1381\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0025-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0025-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0025-out.jsonld\",\n          \"title\": \"@requireAll with missing values and @default\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3093\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026\",\n              \"result\": {\n                \"@id\": \"_:b302\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b326\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If property is not in frame, and explicit is true, processors must not add any values for property to output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0026-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0026-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0026-out.jsonld\",\n          \"title\": \"explicitly excludes unframed properties (@explicit: true)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3470\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027\",\n              \"result\": {\n                \"@id\": \"_:b1346\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3457\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"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.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0027-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0027-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0027-out.jsonld\",\n          \"title\": \"non-existent framed properties create null property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1471\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028\",\n              \"result\": {\n                \"@id\": \"_:b1473\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1472\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0028-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0028-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0028-out.jsonld\",\n          \"title\": \"embed matched frames with @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1351\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029\",\n              \"result\": {\n                \"@id\": \"_:b2405\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1352\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If frame has the property @reverse, then for each reverse property and sub frame that are the values of @reverse in frame.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0029-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0029-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0029-out.jsonld\",\n          \"title\": \"embed matched frames with reversed property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b710\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030\",\n              \"result\": {\n                \"@id\": \"_:b711\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b712\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@embed within a frame controls the object embed flag when processing that frame (@always and @never values).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0030-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0030-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0030-out.jsonld\",\n          \"title\": \"@embed @always/@never\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2905\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031\",\n              \"result\": {\n                \"@id\": \"_:b3387\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2906\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Do not match objects with @type, if frame uses @type: [].\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0031-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0031-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0031-out.jsonld\",\n          \"title\": \"match none @type match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3067\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032\",\n              \"result\": {\n                \"@id\": \"_:b3069\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3068\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Match on a specific node with frame uses @id.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0032-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0032-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0032-out.jsonld\",\n          \"title\": \"single @id match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2172\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033\",\n              \"result\": {\n                \"@id\": \"_:b925\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2173\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Match on a specific node with frame uses @id with an array of IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0033-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0033-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0033-out.jsonld\",\n          \"title\": \"multiple @id match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1075\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034\",\n              \"result\": {\n                \"@id\": \"_:b233\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1076\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Match/reject properties using both wildcard and match none.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0034-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0034-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0034-out.jsonld\",\n          \"title\": \"wildcard and match none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1066\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035\",\n              \"result\": {\n                \"@id\": \"_:b1068\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1067\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Node patterns that don't match all levels, don't match top level.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0035-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0035-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0035-out.jsonld\",\n          \"title\": \"matches a deep node pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1229\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036\",\n              \"result\": {\n                \"@id\": \"_:b1230\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1231\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0036-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0036-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0036-out.jsonld\",\n          \"title\": \"matches exact value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3444\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037\",\n              \"result\": {\n                \"@id\": \"_:b867\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3445\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0037-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0037-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0037-out.jsonld\",\n          \"title\": \"matches wildcard @value in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2333\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038\",\n              \"result\": {\n                \"@id\": \"_:b2260\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2039\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0038-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0038-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0038-out.jsonld\",\n          \"title\": \"matches wildcard @type in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2046\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039\",\n              \"result\": {\n                \"@id\": \"_:b642\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2047\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0039-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0039-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0039-out.jsonld\",\n          \"title\": \"matches wildcard @language in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1708\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040\",\n              \"result\": {\n                \"@id\": \"_:b1709\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1710\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0040-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0040-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0040-out.jsonld\",\n          \"title\": \"matches match none @type in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1593\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041\",\n              \"result\": {\n                \"@id\": \"_:b1594\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1595\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0041-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0041-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0041-out.jsonld\",\n          \"title\": \"matches match none @language in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1133\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042\",\n              \"result\": {\n                \"@id\": \"_:b1681\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1134\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0042-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0042-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0042-out.jsonld\",\n          \"title\": \"matches some @value in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1037\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043\",\n              \"result\": {\n                \"@id\": \"_:b3374\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1038\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0043-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0043-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0043-out.jsonld\",\n          \"title\": \"matches some @type in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b256\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044\",\n              \"result\": {\n                \"@id\": \"_:b258\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b257\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0044-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0044-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0044-out.jsonld\",\n          \"title\": \"matches some @language in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1429\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045\",\n              \"result\": {\n                \"@id\": \"_:b1431\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1430\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value objects matching value patterns are output, others are filtered.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0045-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0045-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0045-out.jsonld\",\n          \"title\": \"excludes non-matched values in value pattern\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b918\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046\",\n              \"result\": {\n                \"@id\": \"_:b919\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b920\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Unless @graph exists at the top level, framing uses merged node objects in json-ld-1.0 mode.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0046-out.jsonld\",\n          \"title\": \"Merge graphs if no outer @graph is used\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2727\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047\",\n              \"result\": {\n                \"@id\": \"_:b2728\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2729\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @graph exists at the top level, framing uses the default graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0047-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0047-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0047-out.jsonld\",\n          \"title\": \"Frame default graph if outer @graph is used\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1652\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048\",\n              \"result\": {\n                \"@id\": \"_:b3249\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1036\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@graph used within a property value frames embedded values from a named graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0048-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0048-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0048-out.jsonld\",\n          \"title\": \"Merge one graph and preserve another\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1541\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049\",\n              \"result\": {\n                \"@id\": \"_:b2216\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1542\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@graph used within a property value frames embedded values from a named graph in json-ld-1.0 mode.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0049-out.jsonld\",\n          \"title\": \"Merge one graph and deep preserve another\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2882\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050\",\n              \"result\": {\n                \"@id\": \"_:b1530\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2883\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0050-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0050-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0050-out.jsonld\",\n          \"title\": \"Library example with named graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2355\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051\",\n              \"result\": {\n                \"@id\": \"_:b2357\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2356\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"When compacting the value of a property using @preserve, use the term definition for term to properly compact the value of @preserve.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0051-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0051-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0051-out.jsonld\",\n          \"title\": \"Compacting values of @preserve\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1151\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052\",\n              \"result\": {\n                \"@id\": \"_:b2742\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1152\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Node matching does not consider blank nodes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0052-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0052-frame.jsonld\"\n          },\n          \"mf:result\": \"invalid frame\",\n          \"title\": \"@id must not include a blank node identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1550\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053\",\n              \"result\": {\n                \"@id\": \"_:b1551\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b673\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Node matching does not consider blank nodes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0053-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0053-frame.jsonld\"\n          },\n          \"mf:result\": \"invalid frame\",\n          \"title\": \"@type must not include a blank node identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2317\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054\",\n              \"result\": {\n                \"@id\": \"_:b1862\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2318\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Any other value for @embed is invalid and indicates that an invalid @embed value error has been detected and processing is aborted.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0054-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0054-frame.jsonld\"\n          },\n          \"mf:result\": \"invalid @embed value\",\n          \"title\": \"Out of range @embed value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b363\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055\",\n              \"result\": {\n                \"@id\": \"_:b364\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Framing list values which are mixed.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0055-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0055-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0055-out.jsonld\",\n          \"title\": \"Framing list with mixed values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1616\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056\",\n              \"result\": {\n                \"@id\": \"_:b1618\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1617\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists match on any matching value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0056-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0056-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0056-out.jsonld\",\n          \"title\": \"Frame matching on matching value in list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b876\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057\",\n              \"result\": {\n                \"@id\": \"_:b3235\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b877\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists match on any matching value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0057-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0057-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0057-out.jsonld\",\n          \"title\": \"Frame matching on any matching value in list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1363\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058\",\n              \"result\": {\n                \"@id\": \"_:b1364\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b375\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#omitGraph\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Lists match on any matching value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0058-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0058-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0058-out.jsonld\",\n          \"title\": \"Frame matching with no matching value in list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1575\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059\",\n              \"result\": {\n                \"@id\": \"_:b1576\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1577\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify that within a matched node, by default only the last reference will be embedded in json-ld-1.0 mode.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0059-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0059-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0059-out.jsonld\",\n          \"title\": \"@embed: @last replaces previous embed values with node reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1487\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060\",\n              \"result\": {\n                \"@id\": \"_:b1488\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1426\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ordered\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify that within a matched node and @embed: @first, by only the first reference will be embedded.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0060-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0060-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0060-out.jsonld\",\n          \"title\": \"@embed: @once only embeds first value with node reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3465\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061\",\n              \"result\": {\n                \"@id\": \"_:b2206\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3343\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify that embedded nodes match with @default and a wildcard @id.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0061-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0061-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0061-out.jsonld\",\n          \"title\": \"Matching embedded nodes with @default\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2643\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062\",\n              \"result\": {\n                \"@id\": \"_:b1734\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2644\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Cleaning up @preserve/@null does not violate container: @set.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0062-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0062-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0062-out.jsonld\",\n          \"title\": \"An array with a single value remains an array if container is @set.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b830\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063\",\n              \"result\": {\n                \"@id\": \"_:b832\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b831\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@null may be used as an @default value and is preserved in output.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0063-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0063-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0063-out.jsonld\",\n          \"title\": \"Using @null in @default.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1900\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064\",\n              \"result\": {\n                \"@id\": \"_:b1901\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1902\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type may have a default value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0064-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0064-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0064-out.jsonld\",\n          \"title\": \"Using @default in @type.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2887\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065\",\n              \"result\": {\n                \"@id\": \"_:b3326\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2060\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value matching.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0065-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0065-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0065-out.jsonld\",\n          \"title\": \"Match on value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b181\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066\",\n              \"result\": {\n                \"@id\": \"_:b182\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b183\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Value reference matching.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0066-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0066-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0066-out.jsonld\",\n          \"title\": \"Match on value reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b296\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067\",\n              \"result\": {\n                \"@id\": \"_:b297\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b298\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List value matching.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0067-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0067-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0067-out.jsonld\",\n          \"title\": \"Match on list value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3321\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068\",\n              \"result\": {\n                \"@id\": \"_:b374\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3322\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"When merging nodes, ensure that @type values from each node are retained.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0068-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0068-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/0068-out.jsonld\",\n          \"title\": \"Merge @type from different graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3108\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01\",\n              \"result\": {\n                \"@id\": \"_:b3110\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3109\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@embed within a frame controls the object embed flag when processing that frame (true and false values).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/eo01-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/eo01-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/eo01-out.jsonld\",\n          \"title\": \"@embed true/false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b7\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001\",\n              \"result\": {\n                \"@id\": \"_:b9\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b8\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#omitGraph\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Basic example used in playground and spec examples.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g001-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g001-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g001-out.jsonld\",\n          \"title\": \"Library framing example with @graph and omitGraph is true.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1790\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002\",\n              \"result\": {\n                \"@id\": \"_:b511\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1791\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g002-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g002-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g002-out.jsonld\",\n          \"title\": \"Simple embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2180\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003\",\n              \"result\": {\n                \"@id\": \"_:b2181\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b84\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g003-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g003-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g003-out.jsonld\",\n          \"title\": \"Embed with direct circular reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1070\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004\",\n              \"result\": {\n                \"@id\": \"_:b1071\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1072\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g004-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g004-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g004-out.jsonld\",\n          \"title\": \"Embed with indirect circular reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2111\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005\",\n              \"result\": {\n                \"@id\": \"_:b2112\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1310\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g005-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g005-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g005-out.jsonld\",\n          \"title\": \"Embed with indirect circular reference via set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2515\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006\",\n              \"result\": {\n                \"@id\": \"_:b2516\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2517\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g006-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g006-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g006-out.jsonld\",\n          \"title\": \"Embed with nested indirect circular reference via set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1936\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007\",\n              \"result\": {\n                \"@id\": \"_:b1938\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1937\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g007-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g007-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g007-out.jsonld\",\n          \"title\": \"Multi-level simple embeds\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2990\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008\",\n              \"result\": {\n                \"@id\": \"_:b2843\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2190\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g008-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g008-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g008-out.jsonld\",\n          \"title\": \"A tangle of nastiness\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2840\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009\",\n              \"result\": {\n                \"@id\": \"_:b1563\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2349\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g009-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g009-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g009-out.jsonld\",\n          \"title\": \"Recursive property embed w/o circular reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2532\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010\",\n              \"result\": {\n                \"@id\": \"_:b3495\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1610\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Test embedded graphs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/g010-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/g010-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/g010-out.jsonld\",\n          \"title\": \"Framing blank node unnamed graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1083\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01\",\n              \"result\": {\n                \"@id\": \"_:b1084\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1085\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/in01-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/in01-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/in01-out.jsonld\",\n          \"title\": \"Basic Included array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3409\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02\",\n              \"result\": {\n                \"@id\": \"_:b3410\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3146\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/in02-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/in02-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/in02-out.jsonld\",\n          \"title\": \"Basic Included object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1480\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03\",\n              \"result\": {\n                \"@id\": \"_:b1481\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1482\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/in03-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/in03-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/in03-out.jsonld\",\n          \"title\": \"json.api example\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1570\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020\",\n              \"result\": {\n                \"@id\": \"_:b1571\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b219\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Empty frame matches all nodes at top-level, and repeats where embedded.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0020-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0020-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/p020-out.jsonld\",\n          \"title\": \"Blank nodes in an array (prune bnodes)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3187\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021\",\n              \"result\": {\n                \"@id\": \"_:b2205\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1023\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Empty frame matches all nodes at top-level, and repeats where embedded (with list content).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0021-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0021-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/p021-out.jsonld\",\n          \"title\": \"Blank nodes in @type (prune bnodes)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2820\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046\",\n              \"result\": {\n                \"@id\": \"_:b2821\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b225\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Unless @graph exists at the top level, framing uses merged node objects.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0046-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0046-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/p046-out.jsonld\",\n          \"title\": \"Merge graphs if no outer @graph is used (prune bnodes)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2067\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049\",\n              \"result\": {\n                \"@id\": \"_:b486\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1592\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@graph used within a property value frames embedded values from a named graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/0049-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/0049-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/p049-out.jsonld\",\n          \"title\": \"Merge one graph and deep preserve another (prune bnodes)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2090\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050\",\n              \"result\": {\n                \"@id\": \"_:b2092\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2091\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @id is aliased in a frame, an unreferenced blank node is still pruned.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/p050-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/p050-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/p050-out.jsonld\",\n          \"title\": \"Prune blank nodes with alias of @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3415\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01\",\n              \"result\": {\n                \"@id\": \"_:b2872\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2597\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @requireAll is true, then all listed properties, including @type, must be present to match.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra01-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra01-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra01-out.jsonld\",\n          \"title\": \"@requireAll only matches if @type and other properties are present\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3049\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02\",\n              \"result\": {\n                \"@id\": \"_:b3050\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b520\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @requireAll is true, then all listed properties, including @id and @type, must be present to match.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra02-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra02-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra02-out.jsonld\",\n          \"title\": \"@requireAll only matches if @id and @type match\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FrameTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b283\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03\",\n              \"result\": {\n                \"@id\": \"_:b284\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b285\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @requireAll is true, then all listed properties, including @type, must be present to match.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra03-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#frame\": {\n            \"@id\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra03-frame.jsonld\"\n          },\n          \"testResult\": \"https://w3c.github.io/json-ld-framing/tests/frame/ra03-out.jsonld\",\n          \"title\": \"@requireAll with type and properties\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-framing/tests/\",\n      \"title\": \"Framing\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"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).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3336\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te001\",\n              \"result\": {\n                \"@id\": \"_:b2375\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3219\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e001-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tex01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1329\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tex01\",\n              \"result\": {\n                \"@id\": \"_:b544\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b135\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#contentType\": \"application/xhtml+xml\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in XHTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e001-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e001-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element (xhtml)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1871\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te002\",\n              \"result\": {\n                \"@id\": \"_:b1872\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1873\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e002-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e002-out.jsonld\",\n          \"title\": \"Expands first embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3359\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te003\",\n              \"result\": {\n                \"@id\": \"_:b260\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2386\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e003-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e003-out.jsonld\",\n          \"title\": \"Expands targeted JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2419\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te004\",\n              \"result\": {\n                \"@id\": \"_:b170\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2420\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML extracting all elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e004-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e004-out.jsonld\",\n          \"title\": \"Expands all embedded JSON-LD script elements with extractAllScripts option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1078\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te005\",\n              \"result\": {\n                \"@id\": \"_:b1080\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1079\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML extracting all elements with array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e005-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e005-out.jsonld\",\n          \"title\": \"Expands multiple embedded JSON-LD script elements where one is an array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2440\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te006\",\n              \"result\": {\n                \"@id\": \"_:b2442\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2441\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML when none exist\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e006-in.html\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Expands as empty with no embedded JSON-LD script elements\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b551\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te007\",\n              \"result\": {\n                \"@id\": \"_:b2439\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b552\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML when none exist extracting all elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e007-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e007-out.jsonld\",\n          \"title\": \"Expands as empty with no embedded JSON-LD script elements and extractAllScripts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b42\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te010\",\n              \"result\": {\n                \"@id\": \"_:b44\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b43\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with character references\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e010-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e010-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element with HTML character references\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3101\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te011\",\n              \"result\": {\n                \"@id\": \"_:b3094\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3102\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e011-in.html#third\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if no element found at target\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3334\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te012\",\n              \"result\": {\n                \"@id\": \"_:b1588\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1540\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML which isn't a script element\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e012-in.html#first\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if targeted element is not a script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b132\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te013\",\n              \"result\": {\n                \"@id\": \"_:b134\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b133\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with wrong type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e013-in.html#first\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if targeted element does not have type application/ld+json\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2944\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te014\",\n              \"result\": {\n                \"@id\": \"_:b1687\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1459\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with comments leftover\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e014-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if uncommented script text contains comment\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1627\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te015\",\n              \"result\": {\n                \"@id\": \"_:b1629\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1628\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with unballanced comments\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e015-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if end comment missing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2507\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te016\",\n              \"result\": {\n                \"@id\": \"_:b2508\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2509\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with unballanced comments\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e016-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if start comment missing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2391\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te017\",\n              \"result\": {\n                \"@id\": \"_:b2392\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2393\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML which is invalid JSON\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e017-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if uncommented script is not valid JSON\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2590\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te018\",\n              \"result\": {\n                \"@id\": \"_:b2382\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b989\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e018-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e018-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element relative to document base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b615\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te019\",\n              \"result\": {\n                \"@id\": \"_:b617\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b616\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e019-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e019-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element relative to base option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2139\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te020\",\n              \"result\": {\n                \"@id\": \"_:b2140\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1980\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e020-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e020-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element relative to HTML base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2673\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te021\",\n              \"result\": {\n                \"@id\": \"_:b2004\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2674\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e021-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e021-out.jsonld\",\n          \"title\": \"Expands embedded JSON-LD script element relative to relative HTML base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1632\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#te022\",\n              \"result\": {\n                \"@id\": \"_:b1633\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1634\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/e022-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/e022-out.jsonld\",\n          \"title\": \"Expands targeted JSON-LD script element with fragment and HTML base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b909\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc001\",\n              \"result\": {\n                \"@id\": \"_:b355\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/c001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b231\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/c001-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/c001-out.jsonld\",\n          \"title\": \"Compacts embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1331\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc002\",\n              \"result\": {\n                \"@id\": \"_:b1332\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/c002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1333\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/c002-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/c002-out.jsonld\",\n          \"title\": \"Compacts first embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2156\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc003\",\n              \"result\": {\n                \"@id\": \"_:b2417\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/c003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2157\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/c003-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/c003-out.jsonld\",\n          \"title\": \"Compacts targeted JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#CompactTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b344\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tc004\",\n              \"result\": {\n                \"@id\": \"_:b2904\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/c004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b345\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML extracting all elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/c004-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/c004-out.jsonld\",\n          \"title\": \"Compacts all embedded JSON-LD script elements with extractAllScripts option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2453\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf001\",\n              \"result\": {\n                \"@id\": \"_:b2455\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/f001-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2454\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/f001-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/f001-out.jsonld\",\n          \"title\": \"Flattens embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b299\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf002\",\n              \"result\": {\n                \"@id\": \"_:b3123\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/f002-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b300\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/f002-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/f002-out.jsonld\",\n          \"title\": \"Flattens first embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2930\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf003\",\n              \"result\": {\n                \"@id\": \"_:b1131\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/f003-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b988\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/f003-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/f003-out.jsonld\",\n          \"title\": \"Flattens targeted JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FlattenTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1711\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tf004\",\n              \"result\": {\n                \"@id\": \"_:b1713\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#context\": {\n            \"@id\": \"https://w3c.github.io/json-ld-api/tests/html/f004-context.jsonld\"\n          },\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1712\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML multiple script elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/f004-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/f004-out.jsonld\",\n          \"title\": \"Flattens all script elements by default\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b477\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr001\",\n              \"result\": {\n                \"@id\": \"_:b478\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b85\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r001-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r001-out.nq\",\n          \"title\": \"Transforms embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b760\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr002\",\n              \"result\": {\n                \"@id\": \"_:b762\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b761\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r002-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r002-out.nq\",\n          \"title\": \"Transforms first embedded JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2178\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr003\",\n              \"result\": {\n                \"@id\": \"_:b2531\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2179\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r003-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r003-out.nq\",\n          \"title\": \"Transforms targeted JSON-LD script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2258\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr004\",\n              \"result\": {\n                \"@id\": \"_:b2867\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1954\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML extracting all elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r004-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r004-out.nq\",\n          \"title\": \"Expands all embedded JSON-LD script elements with extractAllScripts option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3111\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr005\",\n              \"result\": {\n                \"@id\": \"_:b3112\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3103\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML extracting all elements with array\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r005-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r005-out.nq\",\n          \"title\": \"Expands multiple embedded JSON-LD script elements where one is an array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3462\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr006\",\n              \"result\": {\n                \"@id\": \"_:b3463\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2557\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML when none exist\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r006-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r006-out.nq\",\n          \"title\": \"Expands as empty with no embedded JSON-LD script elements\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b853\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr007\",\n              \"result\": {\n                \"@id\": \"_:b854\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b855\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML when none exist extracting all elements\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r007-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r007-out.nq\",\n          \"title\": \"Expands as empty with no embedded JSON-LD script elements and extractAllScripts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1908\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr010\",\n              \"result\": {\n                \"@id\": \"_:b1909\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1910\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with character references\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r010-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r010-out.nq\",\n          \"title\": \"Expands embedded JSON-LD script element with HTML character references\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2786\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr011\",\n              \"result\": {\n                \"@id\": \"_:b2787\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2759\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier that doesn't exist\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r011-in.html#third\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if no element found at target\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b726\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr012\",\n              \"result\": {\n                \"@id\": \"_:b728\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b727\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML which isn't a script element\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r012-in.html#first\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if targeted element is not a script element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2122\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr013\",\n              \"result\": {\n                \"@id\": \"_:b2124\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2123\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with wrong type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r013-in.html#first\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Errors if targeted element does not have type application/ld+json\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2962\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr014\",\n              \"result\": {\n                \"@id\": \"_:b2964\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2963\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with comments leftover\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r014-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if uncommented script text contains comment\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3034\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr015\",\n              \"result\": {\n                \"@id\": \"_:b592\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b65\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with unballanced comments\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r015-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if end comment missing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b335\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr016\",\n              \"result\": {\n                \"@id\": \"_:b337\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b336\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with unballanced comments\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r016-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if start comment missing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b250\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr017\",\n              \"result\": {\n                \"@id\": \"_:b251\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b252\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML which is invalid JSON\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r017-in.html\",\n          \"mf:result\": \"invalid script element\",\n          \"title\": \"Errors if uncommented script is not valid JSON\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2464\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr018\",\n              \"result\": {\n                \"@id\": \"_:b1258\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2465\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r018-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r018-out.nq\",\n          \"title\": \"Expands embedded JSON-LD script element relative to document base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2902\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr019\",\n              \"result\": {\n                \"@id\": \"_:b3269\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2903\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r019-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r019-out.nq\",\n          \"title\": \"Expands embedded JSON-LD script element relative to base option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1904\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr020\",\n              \"result\": {\n                \"@id\": \"_:b1906\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1905\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r020-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r020-out.nq\",\n          \"title\": \"Expands embedded JSON-LD script element relative to HTML base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1251\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr021\",\n              \"result\": {\n                \"@id\": \"_:b1252\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1253\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://a.example.com/doc\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r021-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r021-out.nq\",\n          \"title\": \"Expands embedded JSON-LD script element relative to relative HTML base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#HtmlTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b713\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/html-manifest#tr022\",\n              \"result\": {\n                \"@id\": \"_:b1404\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b714\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests embedded JSON-LD in HTML with fragment identifier\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/html/r022-in.html#second\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/html/r022-out.nq\",\n          \"title\": \"Expands targeted JSON-LD script element with fragment and HTML base\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"HTML\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"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).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b658\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b659\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests generation of a triple using full URIs and a plain literal.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0001-out.nq\",\n          \"title\": \"Plain literal with URIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b757\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b758\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests generation of a triple using a CURIE defined in the default context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0002-out.nq\",\n          \"title\": \"Plain literal with CURIE from default context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b724\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b725\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a BNode is created if no explicit subject is set.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0003-out.nq\",\n          \"title\": \"Default subject is BNode\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b473\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b474\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a plain literal is created with a language tag.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0004-out.nq\",\n          \"title\": \"Literal with language tag\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b936\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b937\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a literal may be created using extended characters.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0005-out.nq\",\n          \"title\": \"Extended character set literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1238\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b3297\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests creation of a literal with a datatype.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0006-out.nq\",\n          \"title\": \"Typed literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2165\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b2166\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verify that 'a' is an alias for rdf:type, and the object is created as an IRI.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0007-out.nq\",\n          \"title\": \"Tests 'a' generates rdf:type and object is implicit IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b947\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b948\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Generate an IRI using a prefix defined within an @context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0008-out.nq\",\n          \"title\": \"Test prefix defined in @context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3009\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b3010\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"An empty suffix may be used.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0009-out.nq\",\n          \"title\": \"Test using an empty suffix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1259\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b1933\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"A property referencing an associative array gets object from subject of array.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0010-out.nq\",\n          \"title\": \"Test object processing defines object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b351\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b352\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If no @ is specified, a BNode is created, and will be used as the object of an enclosing property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0011-out.nq\",\n          \"title\": \"Test object processing defines object with implicit BNode\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b808\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b2614\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that Multiple Objects are for a Single Property using array syntax.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0012-out.nq\",\n          \"title\": \"Multiple Objects for a Single Property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b83\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b2167\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that @list: [] generates an empty list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0013-out.nq\",\n          \"title\": \"Creation of an empty list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1387\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014\",\n              \"result\": {\n                \"@id\": \"_:b1388\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that @list generates a list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0014-out.nq\",\n          \"title\": \"Creation of a list with single element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1303\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b1304\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that list with multiple elements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0015-out.nq\",\n          \"title\": \"Creation of a list with multiple elements\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b243\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b1494\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding an empty IRI uses the test file location.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0016-out.nq\",\n          \"title\": \"Empty IRI expands to resource location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3029\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b3030\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding a relative IRI uses the test file location.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0017-out.nq\",\n          \"title\": \"Relative IRI expands relative resource location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2686\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b2687\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expanding a fragment uses the test file location.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0018-out.nq\",\n          \"title\": \"Frag ID expands relative resource location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3365\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b3366\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests coercion of object to anyURI when specified.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0019-out.nq\",\n          \"title\": \"Test type coercion to anyURI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b150\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b151\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests coercion of object to a typed literal when specified.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0020-out.nq\",\n          \"title\": \"Test type coercion to typed literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1984\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b2654\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a decimal value generates a xsd:double typed literal;.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0022-out.nq\",\n          \"title\": \"Test coercion of double value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b856\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b857\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a decimal value generates a xsd:integer typed literal.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0023-out.nq\",\n          \"title\": \"Test coercion of integer value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1104\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b187\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that a decimal value generates a xsd:boolean typed literal.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0024-out.nq\",\n          \"title\": \"Test coercion of boolean value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b583\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b584\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that an array with a single element on a property with @list coercion creates an RDF Collection.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0025-out.nq\",\n          \"title\": \"Test list coercion with single element\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2176\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026\",\n              \"result\": {\n                \"@id\": \"_:b2177\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that @type with an array of types creates multiple types.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0026-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0026-out.nq\",\n          \"title\": \"Test creation of multiple types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b143\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027\",\n              \"result\": {\n                \"@id\": \"_:b144\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Using @graph with other keys places triples in a named graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0027-out.nq\",\n          \"title\": \"Simple named graph (Wikidata)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b505\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028\",\n              \"result\": {\n                \"@id\": \"_:b506\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Signing a graph.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0028-out.nq\",\n          \"title\": \"Simple named graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2917\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029\",\n              \"result\": {\n                \"@id\": \"_:b3485\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that named graphs containing named graphs flatten to single level of graph naming.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0029-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0029-out.nq\",\n          \"title\": \"named graph with embedded named graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1973\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030\",\n              \"result\": {\n                \"@id\": \"_:b2288\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests graphs containing subject references as strings.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0030-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0030-out.nq\",\n          \"title\": \"top-level graph with string subject reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1685\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031\",\n              \"result\": {\n                \"@id\": \"_:b1686\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests conversion of reverse properties.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0031-out.nq\",\n          \"title\": \"Reverse property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2040\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032\",\n              \"result\": {\n                \"@id\": \"_:b1952\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that generated triples do not depend on order of @context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0032-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0032-out.nq\",\n          \"title\": \"@context reordering\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b991\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033\",\n              \"result\": {\n                \"@id\": \"_:b992\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that generated triples do not depend on order of @id.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0033-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0033-out.nq\",\n          \"title\": \"@id reordering\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1354\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034\",\n              \"result\": {\n                \"@id\": \"_:b1355\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests that generated triples do not depend on order of properties inside @context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0034-out.nq\",\n          \"title\": \"context properties reordering\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b131\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035\",\n              \"result\": {\n                \"@id\": \"_:b1385\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"xsd:double's canonical lexical is used when converting numbers without fraction that are coerced to xsd:double\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0035-out.nq\",\n          \"title\": \"non-fractional numbers converted to xsd:double\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2189\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036\",\n              \"result\": {\n                \"@id\": \"_:b2592\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"The toRDF algorithm does not relabel blank nodes; it reuses the counter from the nodeMapGeneration to generate new ones\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0036-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0036-out.nq\",\n          \"title\": \"Use nodeMapGeneration bnode labels\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3086\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113\",\n              \"result\": {\n                \"@id\": \"_:b2259\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Basic use of creating a named graph using an IRI name\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0113-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0113-out.nq\",\n          \"title\": \"Dataset with a IRI named graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2000\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114\",\n              \"result\": {\n                \"@id\": \"_:b2901\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Basic use of creating a named graph using a BNode name\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0114-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0114-out.nq\",\n          \"title\": \"Dataset with a IRI named graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1650\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115\",\n              \"result\": {\n                \"@id\": \"_:b2303\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Dataset with a default and two named graphs (IRI and BNode)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0115-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0115-out.nq\",\n          \"title\": \"Dataset with a default and two named graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3144\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116\",\n              \"result\": {\n                \"@id\": \"_:b3145\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Embedding @graph in a node creates a named graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0116-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0116-out.nq\",\n          \"title\": \"Dataset from node with embedded named graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2764\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117\",\n              \"result\": {\n                \"@id\": \"_:b924\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Embedding @graph in a node creates a named graph. Graph name is created if there is no subject\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0117-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0117-out.nq\",\n          \"title\": \"Dataset from node with embedded named graph (bnode)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b958\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119\",\n              \"result\": {\n                \"@id\": \"_:b1620\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Proper (re-)labeling of blank nodes if used with reverse properties.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0119-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0119-out.nq\",\n          \"title\": \"Blank nodes with reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2271\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120\",\n              \"result\": {\n                \"@id\": \"_:b2272\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0120-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0120-out.nq\",\n          \"title\": \"IRI Resolution (0)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b574\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121\",\n              \"result\": {\n                \"@id\": \"_:b575\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0121-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0121-out.nq\",\n          \"title\": \"IRI Resolution (1)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b48\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122\",\n              \"result\": {\n                \"@id\": \"_:b2133\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0122-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0122-out.nq\",\n          \"title\": \"IRI Resolution (2)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2979\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123\",\n              \"result\": {\n                \"@id\": \"_:b1567\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0123-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0123-out.nq\",\n          \"title\": \"IRI Resolution (3)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2955\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124\",\n              \"result\": {\n                \"@id\": \"_:b3436\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1672\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": [\n            \"IRI resolution according to RFC3986.\",\n            \"Verifies that @vocab defined as a compact IRI expands properly\"\n          ],\n          \"testAction\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld\"\n          ],\n          \"testResult\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq\"\n          ],\n          \"title\": [\n            \"compact IRI as @vocab\",\n            \"IRI Resolution (4)\"\n          ]\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1794\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125\",\n              \"result\": {\n                \"@id\": \"_:b1795\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1796\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": [\n            \"Verifies that @vocab defined as a term expands properly\",\n            \"IRI resolution according to RFC3986.\"\n          ],\n          \"testAction\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld\"\n          ],\n          \"testResult\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq\"\n          ],\n          \"title\": [\n            \"term as @vocab\",\n            \"IRI Resolution (5)\"\n          ]\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1988\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126\",\n              \"result\": {\n                \"@id\": \"_:b1108\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0126-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0126-out.nq\",\n          \"title\": \"IRI Resolution (6)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3005\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127\",\n              \"result\": {\n                \"@id\": \"_:b1205\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0127-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0127-out.nq\",\n          \"title\": \"IRI Resolution (7)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1693\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128\",\n              \"result\": {\n                \"@id\": \"_:b1694\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0128-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0128-out.nq\",\n          \"title\": \"IRI Resolution (8)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b718\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129\",\n              \"result\": {\n                \"@id\": \"_:b719\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0129-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0129-out.nq\",\n          \"title\": \"IRI Resolution (9)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3486\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130\",\n              \"result\": {\n                \"@id\": \"_:b3170\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0130-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0130-out.nq\",\n          \"title\": \"IRI Resolution (10)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b638\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131\",\n              \"result\": {\n                \"@id\": \"_:b1019\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0131-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0131-out.nq\",\n          \"title\": \"IRI Resolution (11)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1743\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132\",\n              \"result\": {\n                \"@id\": \"_:b1744\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"IRI resolution according to RFC3986.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0132-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/0132-out.nq\",\n          \"title\": \"IRI Resolution (12)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2566\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001\",\n              \"result\": {\n                \"@id\": \"_:b2568\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2567\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c001-out.nq\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2769\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002\",\n              \"result\": {\n                \"@id\": \"_:b2770\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b702\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c002-out.nq\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3017\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003\",\n              \"result\": {\n                \"@id\": \"_:b2778\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1824\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c003-out.nq\",\n          \"title\": \"property and value with different terms mapping to the same expanded property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2939\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004\",\n              \"result\": {\n                \"@id\": \"_:b2940\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1703\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c004-out.nq\",\n          \"title\": \"deep @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1052\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005\",\n              \"result\": {\n                \"@id\": \"_:b1054\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1053\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using a scoped context uses term scope for selecting proper term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c005-out.nq\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2182\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006\",\n              \"result\": {\n                \"@id\": \"_:b1356\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2183\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c006-out.nq\",\n          \"title\": \"adding new term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1450\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007\",\n              \"result\": {\n                \"@id\": \"_:b844\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1027\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c007-out.nq\",\n          \"title\": \"overriding a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1183\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008\",\n              \"result\": {\n                \"@id\": \"_:b1185\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1184\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c008-out.nq\",\n          \"title\": \"alias of @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b873\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009\",\n              \"result\": {\n                \"@id\": \"_:b874\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b875\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c009-out.nq\",\n          \"title\": \"deep @type-scoped @context does NOT affect nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1015\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010\",\n              \"result\": {\n                \"@id\": \"_:b1017\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1016\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c010-out.nq\",\n          \"title\": \"scoped context layers on intemediate contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b643\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011\",\n              \"result\": {\n                \"@id\": \"_:b3448\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b644\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c011-out.nq\",\n          \"title\": \"orders @type terms when applying scoped contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1155\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012\",\n              \"result\": {\n                \"@id\": \"_:b1157\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1156\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c012-out.nq\",\n          \"title\": \"deep property-term scoped @context in @type-scoped @context affects nested nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3458\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013\",\n              \"result\": {\n                \"@id\": \"_:b3234\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3134\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c013-out.nq\",\n          \"title\": \"type maps use scoped context from type index and not scoped context from containing\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1825\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014\",\n              \"result\": {\n                \"@id\": \"_:b1827\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1826\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context nullification\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c014-out.nq\",\n          \"title\": \"type-scoped context nullification\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b387\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015\",\n              \"result\": {\n                \"@id\": \"_:b389\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b388\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c015-out.nq\",\n          \"title\": \"type-scoped base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2714\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016\",\n              \"result\": {\n                \"@id\": \"_:b1101\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2715\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c016-out.nq\",\n          \"title\": \"type-scoped vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2290\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017\",\n              \"result\": {\n                \"@id\": \"_:b1073\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2291\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped contexts are property reverted\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c017-out.nq\",\n          \"title\": \"multiple type-scoped contexts are properly reverted\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1559\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018\",\n              \"result\": {\n                \"@id\": \"_:b2148\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1560\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"multiple type-scoped types resolved against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c018-out.nq\",\n          \"title\": \"multiple type-scoped types resolved against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b446\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019\",\n              \"result\": {\n                \"@id\": \"_:b2911\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b447\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with multiple property scoped terms\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c019-out.nq\",\n          \"title\": \"type-scoped context with multiple property scoped terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b737\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020\",\n              \"result\": {\n                \"@id\": \"_:b1414\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b738\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c020-out.nq\",\n          \"title\": \"type-scoped value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2066\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021\",\n              \"result\": {\n                \"@id\": \"_:b3085\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1537\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped value mix\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c021-out.nq\",\n          \"title\": \"type-scoped value mix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b432\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022\",\n              \"result\": {\n                \"@id\": \"_:b2052\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b433\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c022-out.nq\",\n          \"title\": \"type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2873\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023\",\n              \"result\": {\n                \"@id\": \"_:b2041\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2874\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"composed type-scoped property-scoped contexts including @type:@vocab\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c023-out.nq\",\n          \"title\": \"composed type-scoped property-scoped contexts including @type:@vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1261\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024\",\n              \"result\": {\n                \"@id\": \"_:b1263\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1262\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + property-scoped + values evaluates against previous context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c024-out.nq\",\n          \"title\": \"type-scoped + property-scoped + values evaluates against previous context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3500\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025\",\n              \"result\": {\n                \"@id\": \"_:b3498\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3488\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped + graph container\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c025-out.nq\",\n          \"title\": \"type-scoped + graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1966\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026\",\n              \"result\": {\n                \"@id\": \"_:b1968\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1967\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with @propagate: true survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c026-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c026-out.nq\",\n          \"title\": \"@propagate: true on type-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1102\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027\",\n              \"result\": {\n                \"@id\": \"_:b2555\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1103\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"property-scoped context with @propagate: false do not survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c027-out.nq\",\n          \"title\": \"@propagate: false on property-scoped context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b921\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028\",\n              \"result\": {\n                \"@id\": \"_:b3411\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b922\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"embedded context with @propagate: false do not survive node-objects\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c028-out.nq\",\n          \"title\": \"@propagate: false on embedded context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b411\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029\",\n              \"result\": {\n                \"@id\": \"_:b3131\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b412\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@propagate is invalid in 1.0\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c029-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@propagate is invalid in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3161\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030\",\n              \"result\": {\n                \"@id\": \"_:b3162\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b683\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@propagate must be boolean valued\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c030-in.jsonld\",\n          \"mf:result\": \"invalid @propagate value\",\n          \"title\": \"@propagate must be boolean valued\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b859\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031\",\n              \"result\": {\n                \"@id\": \"_:b376\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b860\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"URL resolution follows RFC3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c031-out.nq\",\n          \"title\": \"@context resolutions respects relative URLs.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2806\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032\",\n              \"result\": {\n                \"@id\": \"_:b2807\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1086\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An embedded context which is never used should still be checked.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c032-in.jsonld\",\n          \"mf:result\": \"invalid scoped context\",\n          \"title\": \"Unused embedded context with error.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2187\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033\",\n              \"result\": {\n                \"@id\": \"_:b1745\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2188\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An unused context with an embedded context should still be checked.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c033-in.jsonld\",\n          \"mf:result\": \"invalid scoped context\",\n          \"title\": \"Unused context with an embedded context error.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1451\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034\",\n              \"result\": {\n                \"@id\": \"_:b934\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1452\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Scoped contexts may be externally loaded.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c034-out.nq\",\n          \"title\": \"Remote scoped context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2163\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035\",\n              \"result\": {\n                \"@id\": \"_:b849\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2164\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms should make use of @vocab relative to the scope in which the term was defined.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/c035-out.nq\",\n          \"title\": \"Term scoping with embedded contexts.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b405\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01\",\n              \"result\": {\n                \"@id\": \"_:b2952\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b406\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Strings are coerced to have @direction based on default and term direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di01-out.nq\",\n          \"title\": \"Expand string using default and term directions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3303\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02\",\n              \"result\": {\n                \"@id\": \"_:b3305\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3304\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Strings are coerced to have @direction based on default and term direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di02-out.nq\",\n          \"title\": \"Expand string using default and term directions and languages\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2017\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03\",\n              \"result\": {\n                \"@id\": \"_:b2018\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1702\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List values where the term has @direction are used in expansion.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di03-out.nq\",\n          \"title\": \"expand list values with @direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2646\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04\",\n              \"result\": {\n                \"@id\": \"_:b2369\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2647\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di04-out.nq\",\n          \"title\": \"simple language map with term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1273\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05\",\n              \"result\": {\n                \"@id\": \"_:b1965\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1274\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di05-out.nq\",\n          \"title\": \"simple language mapwith overriding term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2893\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06\",\n              \"result\": {\n                \"@id\": \"_:b3349\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1920\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di06-out.nq\",\n          \"title\": \"simple language mapwith overriding null direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b892\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07\",\n              \"result\": {\n                \"@id\": \"_:b894\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b893\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term selection with language maps and @direction.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di07-out.nq\",\n          \"title\": \"simple language map with mismatching term direction\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2470\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08\",\n              \"result\": {\n                \"@id\": \"_:b2471\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1832\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Generate an error if @direction has illegal value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di08-in.jsonld\",\n          \"mf:result\": \"invalid base direction\",\n          \"title\": \"@direction must be one of ltr or rtl\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3332\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09\",\n              \"result\": {\n                \"@id\": \"_:b1746\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2968\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Generates i18n datatype from literal with direction with option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di09-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#requires\": \"I18nDatatype\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di09-out.nq\",\n          \"title\": \"rdfDirection: i18n-datatype with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1581\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10\",\n              \"result\": {\n                \"@id\": \"_:b1583\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1582\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Generates i18n datatype from literal with direction with option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di10-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#requires\": \"I18nDatatype\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di10-out.nq\",\n          \"title\": \"rdfDirection: i18n-datatype with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b397\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11\",\n              \"result\": {\n                \"@id\": \"_:b399\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b398\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Generates i18n datatype from literal with direction with option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di11-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#requires\": \"CompoundLiteral\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di11-out.nq\",\n          \"title\": \"rdfDirection: compound-literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1895\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12\",\n              \"result\": {\n                \"@id\": \"_:b2548\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1255\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Generates compound literal from literal with direction with option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di12-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#requires\": \"CompoundLiteral\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/di12-out.nq\",\n          \"title\": \"rdfDirection: compound-literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2505\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001\",\n              \"result\": {\n                \"@id\": \"_:b2238\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Free-floating nodes do not generate RDF triples (from expand-0001)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e001-out.nq\",\n          \"title\": \"drop free-floating nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2141\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002\",\n              \"result\": {\n                \"@id\": \"_:b2142\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Basic RDF conversion (from expand-0002)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e002-out.nq\",\n          \"title\": \"basic\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2818\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003\",\n              \"result\": {\n                \"@id\": \"_:b1246\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Properties mapped to null or which are never mapped are dropped (from expand-0003)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e003-out.nq\",\n          \"title\": \"drop null and unmapped properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3350\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004\",\n              \"result\": {\n                \"@id\": \"_:b3354\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0004\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e004-out.nq\",\n          \"title\": \"optimize @set, keep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2401\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005\",\n              \"result\": {\n                \"@id\": \"_:b2402\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0005\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e005-out.nq\",\n          \"title\": \"do not expand aliased @id/@type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b970\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006\",\n              \"result\": {\n                \"@id\": \"_:b971\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0006\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e006-out.nq\",\n          \"title\": \"alias keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3278\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007\",\n              \"result\": {\n                \"@id\": \"_:b2649\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Type-coerced dates generate typed literals (from expand-0007)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e007-out.nq\",\n          \"title\": \"date type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2527\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008\",\n              \"result\": {\n                \"@id\": \"_:b3481\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0008\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e008-out.nq\",\n          \"title\": \"@value with @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1903\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009\",\n              \"result\": {\n                \"@id\": \"_:b636\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0009\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e009-out.nq\",\n          \"title\": \"@graph with terms\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1539\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010\",\n              \"result\": {\n                \"@id\": \"_:b2954\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Native types generate typed literals (from expand-0010)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e010-out.nq\",\n          \"title\": \"native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1787\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011\",\n              \"result\": {\n                \"@id\": \"_:b1788\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0011\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e011-out.nq\",\n          \"title\": \"coerced @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2888\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012\",\n              \"result\": {\n                \"@id\": \"_:b295\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0012\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e012-out.nq\",\n          \"title\": \"@graph with embed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2618\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013\",\n              \"result\": {\n                \"@id\": \"_:b2619\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0013\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e013-out.nq\",\n          \"title\": \"expand already expanded\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3414\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015\",\n              \"result\": {\n                \"@id\": \"_:b3027\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0015\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e015-out.nq\",\n          \"title\": \"collapse set of sets, keep empty lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3252\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016\",\n              \"result\": {\n                \"@id\": \"_:b2690\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0016\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e016-out.nq\",\n          \"title\": \"context reset\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b631\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017\",\n              \"result\": {\n                \"@id\": \"_:b632\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0017\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e017-out.nq\",\n          \"title\": \"@graph and @id aliased\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1513\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018\",\n              \"result\": {\n                \"@id\": \"_:b1514\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0018\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e018-out.nq\",\n          \"title\": \"override default @language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1358\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019\",\n              \"result\": {\n                \"@id\": \"_:b611\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0019\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e019-out.nq\",\n          \"title\": \"remove @value = null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2665\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020\",\n              \"result\": {\n                \"@id\": \"_:b485\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Embedded @graph without @id creates BNode-labeled named graph (from expand-0020)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e020-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e020-out.nq\",\n          \"title\": \"do not remove @graph if not at top-level\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2894\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021\",\n              \"result\": {\n                \"@id\": \"_:b3368\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0021\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e021-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e021-out.nq\",\n          \"title\": \"do not remove @graph at top-level if not only property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2094\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022\",\n              \"result\": {\n                \"@id\": \"_:b1400\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0022\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e022-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e022-out.nq\",\n          \"title\": \"expand value with default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2907\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023\",\n              \"result\": {\n                \"@id\": \"_:b2863\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0023\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e023-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e023-out.nq\",\n          \"title\": \"Lists and sets of properties with list/set coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b75\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024\",\n              \"result\": {\n                \"@id\": \"_:b3434\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0024\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e024-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e024-out.nq\",\n          \"title\": \"Multiple contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2691\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025\",\n              \"result\": {\n                \"@id\": \"_:b2564\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0025\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e025-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e025-out.nq\",\n          \"title\": \"Problematic IRI expansion tests\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2751\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027\",\n              \"result\": {\n                \"@id\": \"_:b1034\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0027\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e027-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e027-out.nq\",\n          \"title\": \"Keep duplicate values in @list and @set\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1040\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028\",\n              \"result\": {\n                \"@id\": \"_:b1041\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0028\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e028-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e028-out.nq\",\n          \"title\": \"Use @vocab in properties and @type but not in @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b565\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029\",\n              \"result\": {\n                \"@id\": \"_:b566\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0029\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e029-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e029-out.nq\",\n          \"title\": \"Relative IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1169\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030\",\n              \"result\": {\n                \"@id\": \"_:b1170\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0030\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e030-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e030-out.nq\",\n          \"title\": \"Language maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1758\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031\",\n              \"result\": {\n                \"@id\": \"_:b1759\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0031\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e031-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e031-out.nq\",\n          \"title\": \"type-coercion of native types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1043\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032\",\n              \"result\": {\n                \"@id\": \"_:b1044\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0032\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e032-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e032-out.nq\",\n          \"title\": \"Mapping a term to null decouples it from @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3268\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033\",\n              \"result\": {\n                \"@id\": \"_:b2950\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0033\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e033-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e033-out.nq\",\n          \"title\": \"Using @vocab with with type-coercion\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2985\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034\",\n              \"result\": {\n                \"@id\": \"_:b1614\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0034\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e034-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e034-out.nq\",\n          \"title\": \"Multiple properties expanding to the same IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b648\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035\",\n              \"result\": {\n                \"@id\": \"_:b878\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0035\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e035-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e035-out.nq\",\n          \"title\": \"Language maps with @vocab, default language, and colliding property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2825\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036\",\n              \"result\": {\n                \"@id\": \"_:b1125\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0036\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e036-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e036-out.nq\",\n          \"title\": \"Expanding @index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1460\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037\",\n              \"result\": {\n                \"@id\": \"_:b2013\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0037\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e037-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e037-out.nq\",\n          \"title\": \"Expanding @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1552\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039\",\n              \"result\": {\n                \"@id\": \"_:b2713\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0039\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e039-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e039-out.nq\",\n          \"title\": \"Using terms in a reverse-maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b469\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040\",\n              \"result\": {\n                \"@id\": \"_:b1427\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0040\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e040-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e040-out.nq\",\n          \"title\": \"language and index expansion on non-objects\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b850\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041\",\n              \"result\": {\n                \"@id\": \"_:b851\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0041\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e041-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e041-out.nq\",\n          \"title\": \"Reset the default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2219\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042\",\n              \"result\": {\n                \"@id\": \"_:b2220\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0042\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e042-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e042-out.nq\",\n          \"title\": \"Expanding reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1476\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043\",\n              \"result\": {\n                \"@id\": \"_:b2435\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0043\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e043-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e043-out.nq\",\n          \"title\": \"Using reverse properties inside a @reverse-container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2666\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044\",\n              \"result\": {\n                \"@id\": \"_:b2667\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0044\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e044-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e044-out.nq\",\n          \"title\": \"Ensure index maps use language mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b165\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045\",\n              \"result\": {\n                \"@id\": \"_:b166\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0045\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e045-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e045-out.nq\",\n          \"title\": \"Top-level value objects are removed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3378\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046\",\n              \"result\": {\n                \"@id\": \"_:b2025\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0046\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e046-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e046-out.nq\",\n          \"title\": \"Free-floating nodes are removed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3127\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047\",\n              \"result\": {\n                \"@id\": \"_:b3128\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0047\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e047-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e047-out.nq\",\n          \"title\": \"Remove free-floating set values and lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3276\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048\",\n              \"result\": {\n                \"@id\": \"_:b1325\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0048\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e048-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e048-out.nq\",\n          \"title\": \"Terms are ignored in @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2890\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049\",\n              \"result\": {\n                \"@id\": \"_:b2891\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0049\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e049-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e049-out.nq\",\n          \"title\": \"Using strings as value of a reverse property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2761\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050\",\n              \"result\": {\n                \"@id\": \"_:b2762\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0050\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e050-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e050-out.nq\",\n          \"title\": \"Term definitions with prefix separate from prefix definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b624\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051\",\n              \"result\": {\n                \"@id\": \"_:b625\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0051\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e051-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e051-out.nq\",\n          \"title\": \"Expansion of keyword aliases in term definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2814\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052\",\n              \"result\": {\n                \"@id\": \"_:b2815\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0052\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e052-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e052-out.nq\",\n          \"title\": \"@vocab-relative IRIs in term definitions\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3372\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053\",\n              \"result\": {\n                \"@id\": \"_:b2775\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0053\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e053-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e053-out.nq\",\n          \"title\": \"Expand absolute IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b119\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054\",\n              \"result\": {\n                \"@id\": \"_:b120\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0054\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e054-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e054-out.nq\",\n          \"title\": \"Expand term with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1129\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055\",\n              \"result\": {\n                \"@id\": \"_:b472\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0055\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e055-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e055-out.nq\",\n          \"title\": \"Expand @vocab-relative term with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2723\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056\",\n              \"result\": {\n                \"@id\": \"_:b1735\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0056\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e056-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e056-out.nq\",\n          \"title\": \"Use terms with @type: @vocab but not with @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3242\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057\",\n              \"result\": {\n                \"@id\": \"_:b3243\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0057\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e057-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e057-out.nq\",\n          \"title\": \"Expand relative IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2615\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058\",\n              \"result\": {\n                \"@id\": \"_:b2616\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0058\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e058-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e058-out.nq\",\n          \"title\": \"Expand compact IRI with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2945\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059\",\n              \"result\": {\n                \"@id\": \"_:b3482\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0059\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e059-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e059-out.nq\",\n          \"title\": \"Reset @vocab by setting it to null\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b124\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060\",\n              \"result\": {\n                \"@id\": \"_:b125\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0060\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e060-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e060-out.nq\",\n          \"title\": \"Overwrite document base with @base and reset it again\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2436\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061\",\n              \"result\": {\n                \"@id\": \"_:b2437\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0061\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e061-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e061-out.nq\",\n          \"title\": \"Coercing native types to arbitrary datatypes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b751\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062\",\n              \"result\": {\n                \"@id\": \"_:b247\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0062\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e062-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e062-out.nq\",\n          \"title\": \"Various relative IRIs with with @base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1668\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063\",\n              \"result\": {\n                \"@id\": \"_:b1669\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0063\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e063-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e063-out.nq\",\n          \"title\": \"Expand a reverse property with an index-container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2951\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064\",\n              \"result\": {\n                \"@id\": \"_:b1254\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0064\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e064-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e064-out.nq\",\n          \"title\": \"Expand reverse property whose values are unlabeled blank nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b740\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065\",\n              \"result\": {\n                \"@id\": \"_:b741\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0065\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e065-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e065-out.nq\",\n          \"title\": \"Keys that are not mapped to an IRI in a reverse-map are dropped\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b580\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066\",\n              \"result\": {\n                \"@id\": \"_:b581\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0066\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e066-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e066-out.nq\",\n          \"title\": \"Use @vocab to expand keys in reverse-maps\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b94\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067\",\n              \"result\": {\n                \"@id\": \"_:b95\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0067\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e067-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e067-out.nq\",\n          \"title\": \"prefix:://sufffix not a compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2415\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068\",\n              \"result\": {\n                \"@id\": \"_:b2129\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0068\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e068-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e068-out.nq\",\n          \"title\": \"_::sufffix not a compact IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1621\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069\",\n              \"result\": {\n                \"@id\": \"_:b1622\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0069\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e069-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e069-out.nq\",\n          \"title\": \"Compact IRI as term with type mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2934\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070\",\n              \"result\": {\n                \"@id\": \"_:b3058\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0070\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e070-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e070-out.nq\",\n          \"title\": \"Redefine compact IRI with itself\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3380\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072\",\n              \"result\": {\n                \"@id\": \"_:b2941\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"RDF version of expand-0072\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e072-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e072-out.nq\",\n          \"title\": \"Redefine term using @vocab, not itself\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1002\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073\",\n              \"result\": {\n                \"@id\": \"_:b2839\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Objects are unordered, so serialized node definition containing @context may have @context at the end of the node definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e073-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e073-out.nq\",\n          \"title\": \"@context not first property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2958\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074\",\n              \"result\": {\n                \"@id\": \"_:b2959\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Objects are unordered, so serialized node definition containing @id may have @id at the end of the node definition\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e074-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e074-out.nq\",\n          \"title\": \"@id not first property\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1977\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075\",\n              \"result\": {\n                \"@id\": \"_:b1978\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1979\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\"\n          },\n          \"rdfs:comment\": \"Use @vocab to map all properties to blank node identifiers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e075-in.jsonld\",\n          \"https://w3c.github.io/json-ld-api/tests/vocab#requires\": \"GeneralizedRdf\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e075-out.nq\",\n          \"title\": \"@vocab as blank node identifier\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1555\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076\",\n              \"result\": {\n                \"@id\": \"_:b1141\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1556\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of the base option overrides the document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e076-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e076-out.nq\",\n          \"title\": \"base option overrides document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2078\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077\",\n              \"result\": {\n                \"@id\": \"_:b2368\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2079\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#expandContext\": {\n              \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld\"\n            }\n          },\n          \"rdfs:comment\": \"Use of the expandContext option to expand the input document\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e077-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e077-out.nq\",\n          \"title\": \"expandContext option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b597\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078\",\n              \"result\": {\n                \"@id\": \"_:b598\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Use of multiple reverse properties\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e078-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e078-out.nq\",\n          \"title\": \"multiple reverse properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b483\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079\",\n              \"result\": {\n                \"@id\": \"_:b679\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b484\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e079-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e079-out.nq\",\n          \"title\": \"expand @graph container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b171\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080\",\n              \"result\": {\n                \"@id\": \"_:b173\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b172\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of [@graph, @set] containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e080-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e080-out.nq\",\n          \"title\": \"expand [@graph, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1526\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081\",\n              \"result\": {\n                \"@id\": \"_:b2296\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1527\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Don't double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e081-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e081-out.nq\",\n          \"title\": \"Creates an @graph container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b238\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082\",\n              \"result\": {\n                \"@id\": \"_:b852\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b239\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e082-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e082-out.nq\",\n          \"title\": \"expand [@graph, @index] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2802\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083\",\n              \"result\": {\n                \"@id\": \"_:b816\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2803\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e083-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e083-out.nq\",\n          \"title\": \"expand [@graph, @index, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b965\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084\",\n              \"result\": {\n                \"@id\": \"_:b967\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b966\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e084-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e084-out.nq\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1021\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085\",\n              \"result\": {\n                \"@id\": \"_:b1214\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1022\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e085-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e085-out.nq\",\n          \"title\": \"expand [@graph, @id] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3240\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086\",\n              \"result\": {\n                \"@id\": \"_:b3459\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3241\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e086-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e086-out.nq\",\n          \"title\": \"expand [@graph, @id, @set] container\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2796\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087\",\n              \"result\": {\n                \"@id\": \"_:b2997\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2797\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e087-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e087-out.nq\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2636\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088\",\n              \"result\": {\n                \"@id\": \"_:b2593\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Value Expansion does not expand native values, such as booleans, to a node object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e088-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e088-out.nq\",\n          \"title\": \"Do not expand native values to IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2908\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089\",\n              \"result\": {\n                \"@id\": \"_:b2909\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1997\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of an empty @base is applied to the base option\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e089-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e089-out.nq\",\n          \"title\": \"empty @base applied to the base option\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2037\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090\",\n              \"result\": {\n                \"@id\": \"_:b2038\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1330\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of a relative @base overrides base option and document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e090-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e090-out.nq\",\n          \"title\": \"relative @base overrides base option and document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b59\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091\",\n              \"result\": {\n                \"@id\": \"_:b61\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b60\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example/base/\"\n            }\n          },\n          \"rdfs:comment\": \"Use of a relative and absolute @base overrides base option and document location\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e091-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e091-out.nq\",\n          \"title\": \"relative and absolute @base overrides base option and document location\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2611\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092\",\n              \"result\": {\n                \"@id\": \"_:b2613\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2612\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e092-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e092-out.nq\",\n          \"title\": \"Various relative IRIs as properties with with @vocab: ''\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1833\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093\",\n              \"result\": {\n                \"@id\": \"_:b1835\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1834\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e093-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e093-out.nq\",\n          \"title\": \"expand @graph container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1778\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094\",\n              \"result\": {\n                \"@id\": \"_:b2744\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1779\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of [@graph, @set] containers\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e094-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e094-out.nq\",\n          \"title\": \"expand [@graph, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3088\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095\",\n              \"result\": {\n                \"@id\": \"_:b3089\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2295\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Don't double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e095-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e095-out.nq\",\n          \"title\": \"Creates an @graph container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1717\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096\",\n              \"result\": {\n                \"@id\": \"_:b1082\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1718\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e096-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e096-out.nq\",\n          \"title\": \"expand [@graph, @index] container (multiple indexed objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b680\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097\",\n              \"result\": {\n                \"@id\": \"_:b682\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b681\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e097-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e097-out.nq\",\n          \"title\": \"expand [@graph, @index, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3335\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098\",\n              \"result\": {\n                \"@id\": \"_:b1715\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3286\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e098-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e098-out.nq\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b317\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099\",\n              \"result\": {\n                \"@id\": \"_:b318\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b99\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e099-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e099-out.nq\",\n          \"title\": \"expand [@graph, @id] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2896\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100\",\n              \"result\": {\n                \"@id\": \"_:b2897\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2321\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id and @set\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e100-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e100-out.nq\",\n          \"title\": \"expand [@graph, @id, @set] container (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b633\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101\",\n              \"result\": {\n                \"@id\": \"_:b2745\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b634\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e101-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e101-out.nq\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1146\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102\",\n              \"result\": {\n                \"@id\": \"_:b3154\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1147\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e102-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e102-out.nq\",\n          \"title\": \"Expand @graph container if value is a graph (multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2488\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103\",\n              \"result\": {\n                \"@id\": \"_:b1368\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2489\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e103-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e103-out.nq\",\n          \"title\": \"Expand @graph container if value is a graph (multiple graphs)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2027\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104\",\n              \"result\": {\n                \"@id\": \"_:b2008\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2028\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Don't double-expand an already expanded graph\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e104-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e104-out.nq\",\n          \"title\": \"Creates an @graph container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3188\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105\",\n              \"result\": {\n                \"@id\": \"_:b2875\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2688\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e105-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e105-out.nq\",\n          \"title\": \"Do not expand [@graph, @index] container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2522\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106\",\n              \"result\": {\n                \"@id\": \"_:b2082\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2523\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not create a new graph object if indexed value is already a graph object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e106-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e106-out.nq\",\n          \"title\": \"Do not expand [@graph, @id] container if value is a graph (mixed graph and object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b403\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107\",\n              \"result\": {\n                \"@id\": \"_:b895\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b404\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e107-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e107-out.nq\",\n          \"title\": \"expand [@graph, @index] container (indexes with multiple objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b742\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108\",\n              \"result\": {\n                \"@id\": \"_:b744\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b743\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Use of @graph containers with @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e108-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e108-out.nq\",\n          \"title\": \"expand [@graph, @id] container (multiple ids and objects)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2480\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109\",\n              \"result\": {\n                \"@id\": \"_:b2481\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not treat as absolute IRIs values that look like compact IRIs if they're not absolute\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e109-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e109-out.nq\",\n          \"title\": \"IRI expansion of fragments including ':'\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b264\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110\",\n              \"result\": {\n                \"@id\": \"_:b2059\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b265\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e110-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e110-out.nq\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b931\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111\",\n              \"result\": {\n                \"@id\": \"_:b932\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b933\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e111-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e111-out.nq\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab itself relative to an existing vocabulary base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b448\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112\",\n              \"result\": {\n                \"@id\": \"_:b449\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b450\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Pathological relative property IRIs\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e112-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e112-out.nq\",\n          \"title\": \"Various relative IRIs as properties with with relative @vocab relative to another relative vocabulary base\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b802\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113\",\n              \"result\": {\n                \"@id\": \"_:b803\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Expand with context including JavaScript Object property names\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e113-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e113-out.nq\",\n          \"title\": \"context with JavaScript Object property names\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b66\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114\",\n              \"result\": {\n                \"@id\": \"_:b68\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b67\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"An exception for the colliding keywords error is made for @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e114-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e114-out.nq\",\n          \"title\": \"Expansion allows multiple properties expanding to @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2922\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117\",\n              \"result\": {\n                \"@id\": \"_:b2923\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2924\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms may begin with a colon and not be treated as IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e117-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e117-out.nq\",\n          \"title\": \"A term starting with a colon can expand to a different IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3055\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118\",\n              \"result\": {\n                \"@id\": \"_:b1220\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3056\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms may begin with a colon and not be treated as IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e118-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e118-out.nq\",\n          \"title\": \"Expanding a value staring with a colon does not treat that value as an IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1564\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119\",\n              \"result\": {\n                \"@id\": \"_:b1566\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1565\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore terms having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e119-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e119-out.nq\",\n          \"title\": \"Ignore some terms with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1535\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120\",\n              \"result\": {\n                \"@id\": \"_:b2938\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1536\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore values of @id having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e120-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e120-out.nq\",\n          \"title\": \"Ignore some values of @id with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2993\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121\",\n              \"result\": {\n                \"@id\": \"_:b536\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2994\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore values of @reverse having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e121-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e121-out.nq\",\n          \"title\": \"Ignore some values of @reverse with @, allow others.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b608\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122\",\n              \"result\": {\n                \"@id\": \"_:b610\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b609\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors SHOULD generate a warning and MUST ignore IRIs having the form of a keyword.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e122-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e122-out.nq\",\n          \"title\": \"Ignore some IRIs when that start with @ when expanding.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3213\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123\",\n              \"result\": {\n                \"@id\": \"_:b3214\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1695\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors MUST validate datatype IRIs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e123-in.jsonld\",\n          \"mf:result\": \"invalid typed value\",\n          \"title\": \"Value objects including invalid literal datatype IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2955\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124\",\n              \"result\": {\n                \"@id\": \"_:b3436\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1672\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": [\n            \"IRI resolution according to RFC3986.\",\n            \"Verifies that @vocab defined as a compact IRI expands properly\"\n          ],\n          \"testAction\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0124-in.jsonld\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e124-in.jsonld\"\n          ],\n          \"testResult\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0124-out.nq\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e124-out.nq\"\n          ],\n          \"title\": [\n            \"compact IRI as @vocab\",\n            \"IRI Resolution (4)\"\n          ]\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1794\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125\",\n              \"result\": {\n                \"@id\": \"_:b1795\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1796\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": [\n            \"Verifies that @vocab defined as a term expands properly\",\n            \"IRI resolution according to RFC3986.\"\n          ],\n          \"testAction\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e125-in.jsonld\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0125-in.jsonld\"\n          ],\n          \"testResult\": [\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/0125-out.nq\",\n            \"https://w3c.github.io/json-ld-api/tests/toRdf/e125-out.nq\"\n          ],\n          \"title\": [\n            \"term as @vocab\",\n            \"IRI Resolution (5)\"\n          ]\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2804\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126\",\n              \"result\": {\n                \"@id\": \"_:b1074\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2805\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing a scoped context referencing itself directly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e126-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e126-out.nq\",\n          \"title\": \"A scoped context may include itself recursively (direct)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2675\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127\",\n              \"result\": {\n                \"@id\": \"_:b3080\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2676\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing a scoped context referencing itself indirectly\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e127-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e127-out.nq\",\n          \"title\": \"A scoped context may include itself recursively (indirect)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2971\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128\",\n              \"result\": {\n                \"@id\": \"_:b513\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2972\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that no exception is raised on expansion when processing two scoped contexts referencing a shared context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e128-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e128-out.nq\",\n          \"title\": \"Two scoped context may include a shared context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1391\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129\",\n              \"result\": {\n                \"@id\": \"_:b1029\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1392\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify URI resolution relative to base (without trailing slash, without path) according to RFC 3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e129-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e129-out.nq\",\n          \"title\": \"Base without trailing slash, without path\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b698\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130\",\n              \"result\": {\n                \"@id\": \"_:b1671\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b699\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verify URI resolution relative to base (without trailing slash, with path) according to RFC 3986\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e130-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/e130-out.nq\",\n          \"title\": \"Base without trailing slash, with path\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2576\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01\",\n              \"result\": {\n                \"@id\": \"_:b1434\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2577\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid term definition is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/ec01-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Invalid keyword in term definition\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1050\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02\",\n              \"result\": {\n                \"@id\": \"_:b3393\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1051\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised if @type is defined as a term with an empty map\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/ec02-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Term definition on @type with empty map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3053\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01\",\n              \"result\": {\n                \"@id\": \"_:b3423\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3054\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid container mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/em01-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Invalid container mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1664\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01\",\n              \"result\": {\n                \"@id\": \"_:b1666\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1665\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"container: @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en01-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a string value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2322\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02\",\n              \"result\": {\n                \"@id\": \"_:b1182\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1372\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en02-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a boolen value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b271\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03\",\n              \"result\": {\n                \"@id\": \"_:b273\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b272\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en03-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a numeric value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2398\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04\",\n              \"result\": {\n                \"@id\": \"_:b2400\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2399\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en04-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"@nest MUST NOT have a value object value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3236\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05\",\n              \"result\": {\n                \"@id\": \"_:b1642\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3194\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en05-in.jsonld\",\n          \"mf:result\": \"invalid @nest value\",\n          \"title\": \"does not allow a keyword other than @nest for the value of @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3389\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06\",\n              \"result\": {\n                \"@id\": \"_:b3435\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3390\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Transparent Nesting\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/en06-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"does not allow @nest with @reverse\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1515\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02\",\n              \"result\": {\n                \"@id\": \"_:b2158\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1516\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processingMode is explicitly json-ld-1.0, it will conflict with 1.1 features.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/ep02-in.jsonld\",\n          \"mf:result\": \"processing mode conflict\",\n          \"title\": \"processingMode json-ld-1.0 conflicts with @version: 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b729\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03\",\n              \"result\": {\n                \"@id\": \"_:b731\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b730\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If @version is specified, it must be 1.1\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/ep03-in.jsonld\",\n          \"mf:result\": \"invalid @version value\",\n          \"title\": \"@version must be 1.1\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3046\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01\",\n              \"result\": {\n                \"@id\": \"_:b3403\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when processing an invalid context aliasing a keyword to another keyword\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er01-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Keywords cannot be aliased to other keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2194\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04\",\n              \"result\": {\n                \"@id\": \"_:b2195\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context dereference results in an error\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er04-in.jsonld\",\n          \"mf:result\": \"loading remote context failed\",\n          \"title\": \"Error dereferencing a remote context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1196\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05\",\n              \"result\": {\n                \"@id\": \"_:b2854\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1197\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a remote context is not an object containing @context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er05-in.jsonld\",\n          \"mf:result\": \"invalid remote context\",\n          \"title\": \"Invalid remote context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1283\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06\",\n              \"result\": {\n                \"@id\": \"_:b2371\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context is not a string or object\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er06-in.jsonld\",\n          \"mf:result\": \"invalid local context\",\n          \"title\": \"Invalid local context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2822\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07\",\n              \"result\": {\n                \"@id\": \"_:b1149\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er07-in.jsonld\",\n          \"mf:result\": \"invalid base IRI\",\n          \"title\": \"Invalid base IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3132\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08\",\n              \"result\": {\n                \"@id\": \"_:b3133\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @vocab mapping\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er08-in.jsonld\",\n          \"mf:result\": \"invalid vocab mapping\",\n          \"title\": \"Invalid vocab mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2679\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09\",\n              \"result\": {\n                \"@id\": \"_:b3033\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er09-in.jsonld\",\n          \"mf:result\": \"invalid default language\",\n          \"title\": \"Invalid default language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1009\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10\",\n              \"result\": {\n                \"@id\": \"_:b1010\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a cyclic IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er10-in.jsonld\",\n          \"mf:result\": \"cyclic IRI mapping\",\n          \"title\": \"Cyclic IRI mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b763\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11\",\n              \"result\": {\n                \"@id\": \"_:b3464\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid term definition is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er11-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Invalid term definition\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1105\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12\",\n              \"result\": {\n                \"@id\": \"_:b1106\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er12-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid type mapping (not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3264\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13\",\n              \"result\": {\n                \"@id\": \"_:b3265\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er13-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid type mapping (not absolute IRI)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3015\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14\",\n              \"result\": {\n                \"@id\": \"_:b3016\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid reverse property is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er14-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"Invalid reverse property (contains @id)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1928\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15\",\n              \"result\": {\n                \"@id\": \"_:b1929\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er15-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (@reverse not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1094\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17\",\n              \"result\": {\n                \"@id\": \"_:b1095\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid reverse property is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er17-in.jsonld\",\n          \"mf:result\": \"invalid reverse property\",\n          \"title\": \"Invalid reverse property (invalid @container)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b756\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18\",\n              \"result\": {\n                \"@id\": \"_:b1001\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er18-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (@id not a string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2774\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19\",\n              \"result\": {\n                \"@id\": \"_:b797\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid keyword alias is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er19-in.jsonld\",\n          \"mf:result\": \"invalid keyword alias\",\n          \"title\": \"Invalid keyword alias (@context)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b428\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20\",\n              \"result\": {\n                \"@id\": \"_:b3298\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid IRI mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er20-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid IRI mapping (no vocab mapping)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1489\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21\",\n              \"result\": {\n                \"@id\": \"_:b1490\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1491\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid container mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er21-in.jsonld\",\n          \"mf:result\": \"invalid container mapping\",\n          \"title\": \"Invalid container mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1286\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22\",\n              \"result\": {\n                \"@id\": \"_:b3174\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid language mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er22-in.jsonld\",\n          \"mf:result\": \"invalid language mapping\",\n          \"title\": \"Invalid language mapping\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3143\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23\",\n              \"result\": {\n                \"@id\": \"_:b3487\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a invalid type mapping is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er23-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"Invalid IRI mapping (relative IRI in @type)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1299\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25\",\n              \"result\": {\n                \"@id\": \"_:b1300\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when a invalid reverse property map is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er25-in.jsonld\",\n          \"mf:result\": \"invalid reverse property map\",\n          \"title\": \"Invalid reverse property map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2748\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26\",\n              \"result\": {\n                \"@id\": \"_:b2749\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when colliding keywords are found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er26-in.jsonld\",\n          \"mf:result\": \"colliding keywords\",\n          \"title\": \"Colliding keywords\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2447\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27\",\n              \"result\": {\n                \"@id\": \"_:b2448\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @id value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er27-in.jsonld\",\n          \"mf:result\": \"invalid @id value\",\n          \"title\": \"Invalid @id value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3450\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28\",\n              \"result\": {\n                \"@id\": \"_:b3454\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid type value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er28-in.jsonld\",\n          \"mf:result\": \"invalid type value\",\n          \"title\": \"Invalid type value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2476\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29\",\n              \"result\": {\n                \"@id\": \"_:b2080\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er29-in.jsonld\",\n          \"mf:result\": \"invalid value object value\",\n          \"title\": \"Invalid value object value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2782\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30\",\n              \"result\": {\n                \"@id\": \"_:b2783\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language-tagged string value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er30-in.jsonld\",\n          \"mf:result\": \"invalid language-tagged string\",\n          \"title\": \"Invalid language-tagged string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1725\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31\",\n              \"result\": {\n                \"@id\": \"_:b848\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @index value value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er31-in.jsonld\",\n          \"mf:result\": \"invalid @index value\",\n          \"title\": \"Invalid @index value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1531\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33\",\n              \"result\": {\n                \"@id\": \"_:b1227\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid @reverse value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er33-in.jsonld\",\n          \"mf:result\": \"invalid @reverse value\",\n          \"title\": \"Invalid @reverse value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b794\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34\",\n              \"result\": {\n                \"@id\": \"_:b795\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid reverse property value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er34-in.jsonld\",\n          \"mf:result\": \"invalid reverse property value\",\n          \"title\": \"Invalid reverse property value (in @reverse)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3352\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35\",\n              \"result\": {\n                \"@id\": \"_:b3407\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language map value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er35-in.jsonld\",\n          \"mf:result\": \"invalid language map value\",\n          \"title\": \"Invalid language map value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1004\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36\",\n              \"result\": {\n                \"@id\": \"_:b1162\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid reverse property value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er36-in.jsonld\",\n          \"mf:result\": \"invalid reverse property value\",\n          \"title\": \"Invalid reverse property value (through coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1785\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37\",\n              \"result\": {\n                \"@id\": \"_:b1063\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er37-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"Invalid value object (unexpected keyword)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1856\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38\",\n              \"result\": {\n                \"@id\": \"_:b1857\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er38-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"Invalid value object (@type and @language)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2565\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39\",\n              \"result\": {\n                \"@id\": \"_:b2801\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid language-tagged value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er39-in.jsonld\",\n          \"mf:result\": \"invalid language-tagged value\",\n          \"title\": \"Invalid language-tagged value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2055\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40\",\n              \"result\": {\n                \"@id\": \"_:b2056\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid typed value is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er40-in.jsonld\",\n          \"mf:result\": \"invalid typed value\",\n          \"title\": \"Invalid typed value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3216\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41\",\n              \"result\": {\n                \"@id\": \"_:b3281\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid set or list object is found\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er41-in.jsonld\",\n          \"mf:result\": \"invalid set or list object\",\n          \"title\": \"Invalid set or list object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2217\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42\",\n              \"result\": {\n                \"@id\": \"_:b2218\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1698\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when processing an invalid context attempting to define @container on a keyword\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er42-in.jsonld\",\n          \"mf:result\": \"keyword redefinition\",\n          \"title\": \"Keywords may not be redefined in 1.0\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1921\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43\",\n              \"result\": {\n                \"@id\": \"_:b1922\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1923\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding term mapping to @type uses @type syntax now illegal\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er43-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Term definition with @id: @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2200\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44\",\n              \"result\": {\n                \"@id\": \"_:b2201\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2202\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Term definitions may look like compact IRIs, but must be consistent.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er44-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Redefine terms looking like compact IRIs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1338\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48\",\n              \"result\": {\n                \"@id\": \"_:b3373\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1339\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that a relative IRI cannot be used as a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er48-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid term as relative IRI\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2811\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49\",\n              \"result\": {\n                \"@id\": \"_:b2812\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2813\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Verifies that a relative IRI cannot be used as a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er49-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"A relative IRI cannot be used as a prefix\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b783\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50\",\n              \"result\": {\n                \"@id\": \"_:b935\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid IRI is used for @reverse.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er50-in.jsonld\",\n          \"mf:result\": \"invalid IRI mapping\",\n          \"title\": \"Invalid reverse id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2490\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51\",\n              \"result\": {\n                \"@id\": \"_:b2491\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised in Expansion when an invalid value object value is found using a value alias\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er51-in.jsonld\",\n          \"mf:result\": \"invalid value object value\",\n          \"title\": \"Invalid value object value using a value alias\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b462\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52\",\n              \"result\": {\n                \"@id\": \"_:b579\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains a definition for the empty term\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er52-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Definition for the empty term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1777\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53\",\n              \"result\": {\n                \"@id\": \"_:b368\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Verifies that an exception is raised on expansion when a context contains an invalid @prefix value\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/er53-in.jsonld\",\n          \"mf:result\": \"invalid @prefix value\",\n          \"title\": \"Invalid prefix value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b266\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01\",\n              \"result\": {\n                \"@id\": \"_:b2558\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b267\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in01-out.nq\",\n          \"title\": \"Basic Included array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2048\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02\",\n              \"result\": {\n                \"@id\": \"_:b1428\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2049\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in02-out.nq\",\n          \"title\": \"Basic Included object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1301\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03\",\n              \"result\": {\n                \"@id\": \"_:b2747\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1302\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in03-out.nq\",\n          \"title\": \"Multiple properties mapping to @included are folded together\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2877\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04\",\n              \"result\": {\n                \"@id\": \"_:b2734\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2878\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in04-out.nq\",\n          \"title\": \"Included containing @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3327\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05\",\n              \"result\": {\n                \"@id\": \"_:b2973\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3285\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in05-out.nq\",\n          \"title\": \"Property value with @included\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2683\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06\",\n              \"result\": {\n                \"@id\": \"_:b2685\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2684\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in06-out.nq\",\n          \"title\": \"json.api example\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1756\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07\",\n              \"result\": {\n                \"@id\": \"_:b1953\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1757\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in07-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2651\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08\",\n              \"result\": {\n                \"@id\": \"_:b2652\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2653\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in08-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a value object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2837\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09\",\n              \"result\": {\n                \"@id\": \"_:b1393\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2838\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests included blocks.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/in09-in.jsonld\",\n          \"mf:result\": \"invalid @included value\",\n          \"title\": \"Error if @included value is a list object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b778\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01\",\n              \"result\": {\n                \"@id\": \"_:b779\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b780\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (boolean true).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js01-out.nq\",\n          \"title\": \"Transform JSON literal (boolean true)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b208\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02\",\n              \"result\": {\n                \"@id\": \"_:b209\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b210\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (boolean false).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js02-out.nq\",\n          \"title\": \"Transform JSON literal (boolean false)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1158\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03\",\n              \"result\": {\n                \"@id\": \"_:b1159\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1160\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (double).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js03-out.nq\",\n          \"title\": \"Transform JSON literal (double)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2086\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04\",\n              \"result\": {\n                \"@id\": \"_:b2088\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2087\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (double-zero).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js04-out.nq\",\n          \"title\": \"Transform JSON literal (double-zero)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2262\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05\",\n              \"result\": {\n                \"@id\": \"_:b2264\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2263\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (integer).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js05-out.nq\",\n          \"title\": \"Transform JSON literal (integer)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2735\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06\",\n              \"result\": {\n                \"@id\": \"_:b692\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2736\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (object).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js06-out.nq\",\n          \"title\": \"Transform JSON literal (object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2227\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07\",\n              \"result\": {\n                \"@id\": \"_:b2229\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2228\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js07-out.nq\",\n          \"title\": \"Transform JSON literal (array)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2849\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08\",\n              \"result\": {\n                \"@id\": \"_:b1927\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b923\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with array canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js08-out.nq\",\n          \"title\": \"Transform JSON literal with array canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2808\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09\",\n              \"result\": {\n                \"@id\": \"_:b2809\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2810\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with string canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js09-out.nq\",\n          \"title\": \"Transform JSON literal with string canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2198\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10\",\n              \"result\": {\n                \"@id\": \"_:b1880\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2199\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with structural canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js10-out.nq\",\n          \"title\": \"Transform JSON literal with structural canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b39\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11\",\n              \"result\": {\n                \"@id\": \"_:b815\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b40\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with unicode canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js11-out.nq\",\n          \"title\": \"Transform JSON literal with unicode canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1376\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12\",\n              \"result\": {\n                \"@id\": \"_:b2601\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1377\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with value canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js12-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js12-out.nq\",\n          \"title\": \"Transform JSON literal with value canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1528\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13\",\n              \"result\": {\n                \"@id\": \"_:b1228\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1529\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with wierd canonicalization.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js13-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js13-out.nq\",\n          \"title\": \"Transform JSON literal with wierd canonicalization\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2159\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14\",\n              \"result\": {\n                \"@id\": \"_:b2160\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2081\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal does not expand terms inside json.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js14-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js14-out.nq\",\n          \"title\": \"Transform JSON literal without expanding contents\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b529\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15\",\n              \"result\": {\n                \"@id\": \"_:b2514\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b530\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal in expanded form.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js15-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js15-out.nq\",\n          \"title\": \"Transform JSON literal aleady in expanded form\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2254\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16\",\n              \"result\": {\n                \"@id\": \"_:b2255\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1384\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal in expanded form with aliased keys in value object.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js16-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js16-out.nq\",\n          \"title\": \"Transform JSON literal aleady in expanded form with aliased keys\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3205\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17\",\n              \"result\": {\n                \"@id\": \"_:b1738\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b439\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (string).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js17-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js17-out.nq\",\n          \"title\": \"Transform JSON literal (string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2284\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18\",\n              \"result\": {\n                \"@id\": \"_:b3493\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2285\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js18-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js18-out.nq\",\n          \"title\": \"Transform JSON literal (null)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3424\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19\",\n              \"result\": {\n                \"@id\": \"_:b3256\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3063\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with aliased @type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js19-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js19-out.nq\",\n          \"title\": \"Transform JSON literal with aliased @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1292\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20\",\n              \"result\": {\n                \"@id\": \"_:b1293\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b218\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with aliased @value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js20-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js20-out.nq\",\n          \"title\": \"Transform JSON literal with aliased @value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1736\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21\",\n              \"result\": {\n                \"@id\": \"_:b3333\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1737\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming JSON literal with a @context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js21-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js21-out.nq\",\n          \"title\": \"Transform JSON literal with @context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1572\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22\",\n              \"result\": {\n                \"@id\": \"_:b1574\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1573\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js22-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js22-out.nq\",\n          \"title\": \"Transform JSON literal (null) aleady in expanded form.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1138\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23\",\n              \"result\": {\n                \"@id\": \"_:b1139\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1140\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useJCS\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests transforming property with @type @json to a JSON literal (empty array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js23-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/js23-out.nq\",\n          \"title\": \"Transform JSON literal (empty array).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b553\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01\",\n              \"result\": {\n                \"@id\": \"_:b555\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b554\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li01-out.nq\",\n          \"title\": \"@list containing @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1423\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02\",\n              \"result\": {\n                \"@id\": \"_:b1424\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1425\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li02-out.nq\",\n          \"title\": \"@list containing empty @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b454\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03\",\n              \"result\": {\n                \"@id\": \"_:b456\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b455\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li03-out.nq\",\n          \"title\": \"@list containing @list (with coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3289\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04\",\n              \"result\": {\n                \"@id\": \"_:b3290\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2781\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li04-out.nq\",\n          \"title\": \"@list containing empty @list (with coercion)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2587\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05\",\n              \"result\": {\n                \"@id\": \"_:b2588\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2589\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li05-out.nq\",\n          \"title\": \"coerced @list containing an array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3260\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06\",\n              \"result\": {\n                \"@id\": \"_:b3262\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3261\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li06-out.nq\",\n          \"title\": \"coerced @list containing an empty array\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b531\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07\",\n              \"result\": {\n                \"@id\": \"_:b2914\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b532\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li07-out.nq\",\n          \"title\": \"coerced @list containing deep arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3442\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08\",\n              \"result\": {\n                \"@id\": \"_:b3294\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3443\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li08-out.nq\",\n          \"title\": \"coerced @list containing deep empty arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b870\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09\",\n              \"result\": {\n                \"@id\": \"_:b2792\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b871\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li09-out.nq\",\n          \"title\": \"coerced @list containing multiple lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1032\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10\",\n              \"result\": {\n                \"@id\": \"_:b1033\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b670\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/li10-out.nq\",\n          \"title\": \"coerced @list containing mixed list values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b507\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001\",\n              \"result\": {\n                \"@id\": \"_:b509\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b508\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m001-out.nq\",\n          \"title\": \"Adds @id to object not having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2965\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002\",\n              \"result\": {\n                \"@id\": \"_:b1207\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b174\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m002-out.nq\",\n          \"title\": \"Retains @id in object already having an @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1268\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003\",\n              \"result\": {\n                \"@id\": \"_:b1521\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1269\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m003-out.nq\",\n          \"title\": \"Adds @type to object not having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2976\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004\",\n              \"result\": {\n                \"@id\": \"_:b2977\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2978\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m004-out.nq\",\n          \"title\": \"Prepends @type in object already having an @type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2799\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005\",\n              \"result\": {\n                \"@id\": \"_:b2638\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2800\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#base\": {\n              \"@id\": \"http://example.org/\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m005-out.nq\",\n          \"title\": \"Adds expanded @id to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1406\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006\",\n              \"result\": {\n                \"@id\": \"_:b1408\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1407\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m006-out.nq\",\n          \"title\": \"Adds vocabulary expanded @type to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b253\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007\",\n              \"result\": {\n                \"@id\": \"_:b255\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b254\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @container: @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m007-out.nq\",\n          \"title\": \"Adds document expanded @type to object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b204\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008\",\n              \"result\": {\n                \"@id\": \"_:b205\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b206\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"scoped context on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m008-out.nq\",\n          \"title\": \"When type is in a type map\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b328\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009\",\n              \"result\": {\n                \"@id\": \"_:b329\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b330\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m009-out.nq\",\n          \"title\": \"language map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1465\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010\",\n              \"result\": {\n                \"@id\": \"_:b1466\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1467\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m010-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m010-out.nq\",\n          \"title\": \"language map with alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b879\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011\",\n              \"result\": {\n                \"@id\": \"_:b881\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b880\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @id\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m011-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m011-out.nq\",\n          \"title\": \"id map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3501\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012\",\n              \"result\": {\n                \"@id\": \"_:b2011\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2274\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m012-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m012-out.nq\",\n          \"title\": \"type map with alias of @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2196\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013\",\n              \"result\": {\n                \"@id\": \"_:b2366\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2197\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m013-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m013-out.nq\",\n          \"title\": \"graph index map with @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2946\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014\",\n              \"result\": {\n                \"@id\": \"_:b2561\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2947\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @index\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m014-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m014-out.nq\",\n          \"title\": \"graph index map with alias @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2525\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015\",\n              \"result\": {\n                \"@id\": \"_:b1226\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2526\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id with @none\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m015-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m015-out.nq\",\n          \"title\": \"graph id index map with aliased @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1532\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016\",\n              \"result\": {\n                \"@id\": \"_:b1534\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1533\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @graph and @id with @none\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m016-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m016-out.nq\",\n          \"title\": \"graph id index map with aliased @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3064\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017\",\n              \"result\": {\n                \"@id\": \"_:b3066\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3065\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m017-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m017-out.nq\",\n          \"title\": \"string value of type map expands to node reference\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b441\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018\",\n              \"result\": {\n                \"@id\": \"_:b443\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b442\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m018-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m018-out.nq\",\n          \"title\": \"string value of type map expands to node reference with @type: @id\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2472\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019\",\n              \"result\": {\n                \"@id\": \"_:b2474\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2473\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m019-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m019-out.nq\",\n          \"title\": \"string value of type map expands to node reference with @type: @vocab\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b268\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020\",\n              \"result\": {\n                \"@id\": \"_:b3062\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b269\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"index on @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/m020-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"string value of type map must not be a literal\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b137\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001\",\n              \"result\": {\n                \"@id\": \"_:b138\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b139\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n001-out.nq\",\n          \"title\": \"Expands input using @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2999\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002\",\n              \"result\": {\n                \"@id\": \"_:b2998\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3000\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n002-out.nq\",\n          \"title\": \"Expands input using aliased @nest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2912\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003\",\n              \"result\": {\n                \"@id\": \"_:b2913\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2826\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n003-out.nq\",\n          \"title\": \"Appends nested values when property at base and nested\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b184\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004\",\n              \"result\": {\n                \"@id\": \"_:b186\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b185\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n004-out.nq\",\n          \"title\": \"Appends nested values from all @nest aliases in term order\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1334\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005\",\n              \"result\": {\n                \"@id\": \"_:b1335\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1336\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n005-out.nq\",\n          \"title\": \"Nested nested containers\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3282\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006\",\n              \"result\": {\n                \"@id\": \"_:b3284\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3283\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n006-out.nq\",\n          \"title\": \"Arrays of nested values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2108\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007\",\n              \"result\": {\n                \"@id\": \"_:b2109\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b772\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n007-out.nq\",\n          \"title\": \"A nest of arrays\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3316\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008\",\n              \"result\": {\n                \"@id\": \"_:b3421\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3317\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion using @nest\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n008-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/n008-out.nq\",\n          \"title\": \"Multiple keys may mapping to @type when nesting\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2620\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01\",\n              \"result\": {\n                \"@id\": \"_:b3306\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal_ascii_boundaries '\\\\x00\\\\x26\\\\x28...' from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt01-in.jsonld\",\n          \"title\": \"literal_ascii_boundaries\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b684\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02\",\n              \"result\": {\n                \"@id\": \"_:b685\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal_with_UTF8_boundaries '\\\\x80\\\\x7ff\\\\x800\\\\xfff...' from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt02-in.jsonld\",\n          \"title\": \"literal_with_UTF8_boundaries\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b126\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03\",\n              \"result\": {\n                \"@id\": \"_:b2215\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal_all_controls '\\\\x00\\\\x01\\\\x02\\\\x03\\\\x04...' from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt03-in.jsonld\",\n          \"title\": \"literal_all_controls\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1444\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04\",\n              \"result\": {\n                \"@id\": \"_:b1673\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal_all_punctuation '!\\\"#$%&()...' from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt04-in.jsonld\",\n          \"title\": \"literal_all_punctuation\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1562\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05\",\n              \"result\": {\n                \"@id\": \"_:b1651\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with squote \\\"x'y\\\" from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt05-in.jsonld\",\n          \"title\": \"literal_with_squote\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1217\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06\",\n              \"result\": {\n                \"@id\": \"_:b1113\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with 2 squotes \\\"x''y\\\" from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt06-in.jsonld\",\n          \"title\": \"literal_with_2_squotes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1096\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07\",\n              \"result\": {\n                \"@id\": \"_:b1097\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with dquote \\\"x\\\"y\\\" from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt07-in.jsonld\",\n          \"title\": \"literal_with_dquote\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b327\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08\",\n              \"result\": {\n                \"@id\": \"_:b516\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with 2 dquotes \\\"\\\"\\\"a\\\"\\\"b\\\"\\\"\\\" from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt08-in.jsonld\",\n          \"title\": \"literal_with_2_dquotes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1127\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09\",\n              \"result\": {\n                \"@id\": \"_:b1128\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"REVERSE SOLIDUS at end of literal from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt09-in.jsonld\",\n          \"title\": \"literal_with_REVERSE_SOLIDUS2\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2961\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10\",\n              \"result\": {\n                \"@id\": \"_:b2866\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with CHARACTER TABULATION from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt10-in.jsonld\",\n          \"title\": \"literal_with_CHARACTER_TABULATION\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2498\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11\",\n              \"result\": {\n                \"@id\": \"_:b2499\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with BACKSPACE from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt11-in.jsonld\",\n          \"title\": \"literal_with_BACKSPACE\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b492\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12\",\n              \"result\": {\n                \"@id\": \"_:b493\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with LINE FEED from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt12-in.jsonld\",\n          \"title\": \"literal_with_LINE_FEED\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2143\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13\",\n              \"result\": {\n                \"@id\": \"_:b2144\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with CARRIAGE RETURN from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt13-in.jsonld\",\n          \"title\": \"literal_with_CARRIAGE_RETURN\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2342\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14\",\n              \"result\": {\n                \"@id\": \"_:b1435\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with FORM FEED from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt14-in.jsonld\",\n          \"title\": \"literal_with_FORM_FEED\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b188\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15\",\n              \"result\": {\n                \"@id\": \"_:b189\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with REVERSE SOLIDUS from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt15-in.jsonld\",\n          \"title\": \"literal_with_REVERSE_SOLIDUS\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveSyntaxTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1201\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16\",\n              \"result\": {\n                \"@id\": \"_:b2418\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"literal with numeric escape4 \\\\u from N-Triples\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/nt16-in.jsonld\",\n          \"title\": \"literal_with_numeric_escape4\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2336\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001\",\n              \"result\": {\n                \"@id\": \"_:b2338\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2337\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p001-out.nq\",\n          \"title\": \"@version may be specified after first context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b332\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002\",\n              \"result\": {\n                \"@id\": \"_:b334\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b333\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p002-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p002-out.nq\",\n          \"title\": \"@version setting [1.0, 1.1, 1.0]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2192\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003\",\n              \"result\": {\n                \"@id\": \"_:b2193\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b907\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p003-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p003-out.nq\",\n          \"title\": \"@version setting [1.1, 1.0]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3036\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004\",\n              \"result\": {\n                \"@id\": \"_:b3037\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b927\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"If processing mode is not set through API, it is set by the first context containing @version.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p004-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/p004-out.nq\",\n          \"title\": \"@version setting [1.1, 1.0, 1.1]\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1503\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01\",\n              \"result\": {\n                \"@id\": \"_:b2359\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1504\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi01-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @version is json-ld-1.0 for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2658\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02\",\n              \"result\": {\n                \"@id\": \"_:b1204\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b557\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi02-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @container does not include @index for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b799\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03\",\n              \"result\": {\n                \"@id\": \"_:b801\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b800\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi03-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @index is a keyword for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1805\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04\",\n              \"result\": {\n                \"@id\": \"_:b1806\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b735\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi04-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"error if @index is not a string for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1985\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05\",\n              \"result\": {\n                \"@id\": \"_:b1987\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1986\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi05-in.jsonld\",\n          \"mf:result\": \"invalid value object\",\n          \"title\": \"error if attempting to add property to value object for property-valued index\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b104\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06\",\n              \"result\": {\n                \"@id\": \"_:b106\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b105\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi06-out.nq\",\n          \"title\": \"property-valued index expands to property value, instead of @index (value)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b62\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07\",\n              \"result\": {\n                \"@id\": \"_:b64\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b63\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi07-out.nq\",\n          \"title\": \"property-valued index appends to property value, instead of @index (value)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1600\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08\",\n              \"result\": {\n                \"@id\": \"_:b1601\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1602\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi08-out.nq\",\n          \"title\": \"property-valued index expands to property value, instead of @index (node)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b479\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09\",\n              \"result\": {\n                \"@id\": \"_:b481\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b480\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi09-out.nq\",\n          \"title\": \"property-valued index appends to property value, instead of @index (node)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b590\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10\",\n              \"result\": {\n                \"@id\": \"_:b465\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b591\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi10-out.nq\",\n          \"title\": \"property-valued index does not output property for @none\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2624\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11\",\n              \"result\": {\n                \"@id\": \"_:b2626\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2625\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expanding index maps where index is a property.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pi11-out.nq\",\n          \"title\": \"property-valued index adds property to graph object\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2869\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01\",\n              \"result\": {\n                \"@id\": \"_:b3090\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2870\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check error when overriding a protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr01-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect a term\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b776\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02\",\n              \"result\": {\n                \"@id\": \"_:b373\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b777\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A term with @protected: false is not protected.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr02-out.nq\",\n          \"title\": \"Set a term to not be protected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3474\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03\",\n              \"result\": {\n                \"@id\": \"_:b3475\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2678\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context protects all term definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr03-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect all terms in context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3231\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04\",\n              \"result\": {\n                \"@id\": \"_:b3375\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3020\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context does not protect terms with @protected: false.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr04-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Do not protect term with @protected: false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2766\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05\",\n              \"result\": {\n                \"@id\": \"_:b2482\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b982\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The Active context be set to null from an embedded context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr05-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Clear active context with protected terms from an embedded context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b896\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06\",\n              \"result\": {\n                \"@id\": \"_:b898\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b897\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The Active context may be set to null from a scoped context of a term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr06-out.nq\",\n          \"title\": \"Clear active context of protected terms from a term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1828\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08\",\n              \"result\": {\n                \"@id\": \"_:b1682\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1829\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A scoped context can protect terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr08-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Term with protected scoped context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1416\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09\",\n              \"result\": {\n                \"@id\": \"_:b1418\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1417\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected term cannot redefine another protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr09-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Attempt to redefine term in other protected context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2966\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10\",\n              \"result\": {\n                \"@id\": \"_:b1812\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2967\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Simple protected and unprotected terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr10-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr10-out.nq\",\n          \"title\": \"Simple protected and unprotected terms.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2701\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11\",\n              \"result\": {\n                \"@id\": \"_:b2076\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2702\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr11-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fail to override protected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b380\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12\",\n              \"result\": {\n                \"@id\": \"_:b2865\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b381\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Scoped context fail to override protected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr12-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Scoped context fail to override protected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1739\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13\",\n              \"result\": {\n                \"@id\": \"_:b1740\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b747\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Override unprotected term.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr13-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr13-out.nq\",\n          \"title\": \"Override unprotected term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1619\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14\",\n              \"result\": {\n                \"@id\": \"_:b1874\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b98\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Clear protection with null context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr14-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr14-out.nq\",\n          \"title\": \"Clear protection with null context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2767\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15\",\n              \"result\": {\n                \"@id\": \"_:b2370\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1678\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Clear protection with array with null context\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr15-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr15-out.nq\",\n          \"title\": \"Clear protection with array with null context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b602\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16\",\n              \"result\": {\n                \"@id\": \"_:b603\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b604\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Override protected terms after null.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr16-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr16-out.nq\",\n          \"title\": \"Override protected terms after null.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b426\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17\",\n              \"result\": {\n                \"@id\": \"_:b3019\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b427\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected terms with type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr17-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail to override protected terms with type.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b86\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18\",\n              \"result\": {\n                \"@id\": \"_:b88\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b87\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail to override protected terms with type+null+ctx.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr18-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail to override protected terms with type+null+ctx.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2292\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19\",\n              \"result\": {\n                \"@id\": \"_:b3309\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b542\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Mix of protected and unprotected terms.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr19-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr19-out.nq\",\n          \"title\": \"Mix of protected and unprotected terms.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1704\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20\",\n              \"result\": {\n                \"@id\": \"_:b1705\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1706\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail with mix of protected and unprotected terms with type+null+ctx.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr20-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail with mix of protected and unprotected terms with type+null+ctx.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1474\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21\",\n              \"result\": {\n                \"@id\": \"_:b637\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1475\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fail with mix of protected and unprotected terms with type+null.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr21-in.jsonld\",\n          \"mf:result\": \"invalid context nullification\",\n          \"title\": \"Fail with mix of protected and unprotected terms with type+null.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1636\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22\",\n              \"result\": {\n                \"@id\": \"_:b2585\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1637\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check legal overriding of type-scoped protected term from nested node.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr22-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr22-out.nq\",\n          \"title\": \"Check legal overriding of type-scoped protected term from nested node.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b434\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23\",\n              \"result\": {\n                \"@id\": \"_:b436\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b435\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected alias term with same definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr23-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr23-out.nq\",\n          \"title\": \"Allows redefinition of protected alias term with same definition.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b15\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24\",\n              \"result\": {\n                \"@id\": \"_:b3075\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b16\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected prefix term with same definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr24-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr24-out.nq\",\n          \"title\": \"Allows redefinition of protected prefix term with same definition.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2533\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25\",\n              \"result\": {\n                \"@id\": \"_:b2536\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2427\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of terms with scoped contexts using same definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr25-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr25-out.nq\",\n          \"title\": \"Allows redefinition of terms with scoped contexts using same definitions.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1844\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26\",\n              \"result\": {\n                \"@id\": \"_:b2693\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1845\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Fails on redefinition of terms with scoped contexts using different definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr26-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fails on redefinition of terms with scoped contexts using different definitions.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3022\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27\",\n              \"result\": {\n                \"@id\": \"_:b1065\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3023\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Allows redefinition of protected alias term with same definition modulo protected flag.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr27-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr27-out.nq\",\n          \"title\": \"Allows redefinition of protected alias term with same definition modulo protected flag.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b141\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28\",\n              \"result\": {\n                \"@id\": \"_:b3087\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b142\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected term with a null IRI mapping cannot be redefined.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr28-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Fails if trying to redefine a protected null term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b177\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29\",\n              \"result\": {\n                \"@id\": \"_:b178\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b179\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Expansion of Compact IRIs considers if the term can be used as a prefix.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr29-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr29-out.nq\",\n          \"title\": \"Does not expand a Compact IRI using a non-prefix term.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2871\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30\",\n              \"result\": {\n                \"@id\": \"_:b2101\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b89\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr30-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr30-out.nq\",\n          \"title\": \"Keywords may be protected.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2598\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31\",\n              \"result\": {\n                \"@id\": \"_:b2600\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2599\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr31-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protected keyword aliases cannot be overridden.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b12\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32\",\n              \"result\": {\n                \"@id\": \"_:b14\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b13\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keywords may not be redefined other than to protect them.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr32-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protected @type cannot be overridden.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2102\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33\",\n              \"result\": {\n                \"@id\": \"_:b2103\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2104\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Keyword aliases can not be used as prefixes.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr33-in.jsonld\",\n          \"mf:result\": \"invalid term definition\",\n          \"title\": \"Fails if trying to declare a keyword alias as prefix.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b845\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34\",\n              \"result\": {\n                \"@id\": \"_:b846\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b847\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr34-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr34-out.nq\",\n          \"title\": \"Ignores a non-keyword term starting with '@'\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2130\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35\",\n              \"result\": {\n                \"@id\": \"_:b2131\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2132\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr35-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr35-out.nq\",\n          \"title\": \"Ignores a non-keyword term starting with '@' (with @vocab)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b773\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36\",\n              \"result\": {\n                \"@id\": \"_:b774\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b775\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr36-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr36-out.nq\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b190\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37\",\n              \"result\": {\n                \"@id\": \"_:b157\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b191\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr37-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr37-out.nq\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (with @vocab).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1867\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38\",\n              \"result\": {\n                \"@id\": \"_:b842\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1868\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr38-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr38-out.nq\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (@reverse).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b707\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39\",\n              \"result\": {\n                \"@id\": \"_:b709\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b708\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Terms in the form of a keyword, which are not keywords, are ignored.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr39-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr39-out.nq\",\n          \"title\": \"Ignores a term mapping to a value in the form of a keyword (@reverse with @vocab).\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b838\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40\",\n              \"result\": {\n                \"@id\": \"_:b840\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b839\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Check overriding of protected term from property-scoped context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr40-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/pr40-out.nq\",\n          \"title\": \"Protected terms and property-scoped contexts\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b383\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01\",\n              \"result\": {\n                \"@id\": \"_:b1609\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b384\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"numbers with no fractions but that are >= 1e21 are represented as xsd:double\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/rt01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/rt01-out.nq\",\n          \"title\": \"Representing numbers >= 1e21\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1347\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01\",\n              \"result\": {\n                \"@id\": \"_:b1348\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1349\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import is invalid in 1.0.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so01-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import is invalid in 1.0.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2350\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02\",\n              \"result\": {\n                \"@id\": \"_:b3045\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1765\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import must be a string.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so02-in.jsonld\",\n          \"mf:result\": \"invalid @import value\",\n          \"title\": \"@import must be a string\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b885\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03\",\n              \"result\": {\n                \"@id\": \"_:b886\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b887\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors must detect source contexts that include @import.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so03-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import overflow\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2790\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05\",\n              \"result\": {\n                \"@id\": \"_:b2385\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2061\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"type-scoped context with @propagate: true survive node-objects (with @import)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so05-out.nq\",\n          \"title\": \"@propagate: true on type-scoped context with @import\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1193\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06\",\n              \"result\": {\n                \"@id\": \"_:b1194\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1195\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"property-scoped context with @propagate: false do not survive node-objects (with @import)\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so06-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so06-out.nq\",\n          \"title\": \"@propagate: false on property-scoped context with @import\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1441\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07\",\n              \"result\": {\n                \"@id\": \"_:b1442\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1443\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"A protected context protects all term definitions.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so07-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect all terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3461\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08\",\n              \"result\": {\n                \"@id\": \"_:b2312\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b614\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so08-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so08-out.nq\",\n          \"title\": \"Override term defined in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2545\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09\",\n              \"result\": {\n                \"@id\": \"_:b2721\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2383\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so09-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so09-out.nq\",\n          \"title\": \"Override @vocab defined in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2462\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10\",\n              \"result\": {\n                \"@id\": \"_:b3406\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2463\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so10-in.jsonld\",\n          \"mf:result\": \"protected term redefinition\",\n          \"title\": \"Protect terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b928\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11\",\n              \"result\": {\n                \"@id\": \"_:b929\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b930\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"The containing context is merged into the source context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so11-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so11-out.nq\",\n          \"title\": \"Override protected terms in sourced context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b110\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12\",\n              \"result\": {\n                \"@id\": \"_:b112\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b111\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import only valid within a term definition.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so12-in.jsonld\",\n          \"mf:result\": \"invalid context entry\",\n          \"title\": \"@import may not be used in an imported context.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b495\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13\",\n              \"result\": {\n                \"@id\": \"_:b496\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b497\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@import can only reference a single context.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/so13-in.jsonld\",\n          \"mf:result\": \"invalid remote context\",\n          \"title\": \"@import can only reference a single context\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1270\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01\",\n              \"result\": {\n                \"@id\": \"_:b2380\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1271\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processingMode\": \"json-ld-1.0\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none is illegal in json-ld-1.0.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/tn01-in.jsonld\",\n          \"mf:result\": \"invalid type mapping\",\n          \"title\": \"@type: @none is illegal in 1.0.\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2551\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02\",\n              \"result\": {\n                \"@id\": \"_:b2553\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2552\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"@type: @none leaves inputs other than strings alone\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/tn02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/tn02-out.nq\",\n          \"title\": \"@type: @none expands strings as value objects\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2071\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01\",\n              \"result\": {\n                \"@id\": \"_:b2073\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2072\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf01-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf01-out.nq\",\n          \"title\": \"Triples including invalid subject IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b764\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02\",\n              \"result\": {\n                \"@id\": \"_:b2341\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b765\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf02-out.nq\",\n          \"title\": \"Triples including invalid predicate IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2456\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03\",\n              \"result\": {\n                \"@id\": \"_:b2457\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2458\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf03-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf03-out.nq\",\n          \"title\": \"Triples including invalid object IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1656\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04\",\n              \"result\": {\n                \"@id\": \"_:b3275\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1657\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf04-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf04-out.nq\",\n          \"title\": \"Triples including invalid type IRIs are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3165\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05\",\n              \"result\": {\n                \"@id\": \"_:b3166\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2925\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf05-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf05-out.nq\",\n          \"title\": \"Triples including invalid language tags are rejected\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ToRDFTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b81\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07\",\n              \"result\": {\n                \"@id\": \"_:b2256\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b82\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"ToRdf emits only well-formed statements.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf07-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/toRdf/wf07-out.nq\",\n          \"title\": \"Triples including invalid graph name IRIs are rejected\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Transform JSON-LD to RDF\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"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).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2910\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b2224\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Document loader loads a JSON-LD document.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld\",\n          \"title\": \"load JSON-LD document\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1643\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b1644\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Document loader loads a JSON document.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0002-in.json\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0002-out.jsonld\",\n          \"title\": \"load JSON document\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b817\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b818\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b819\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#contentType\": \"application/jldTest+json\"\n          },\n          \"rdfs:comment\": \"Document loader loads a JSON document having an extension mime-subtype.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0003-in.jldt\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0003-out.jsonld\",\n          \"title\": \"load JSON document with extension-type\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2543\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b2544\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2062\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#contentType\": \"application/jldTest\"\n          },\n          \"rdfs:comment\": \"Loading a document with a non-JSON mime type raises loading document failed\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0004-in.jldte\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"loading an unknown type raises loading document failed\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2570\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b2571\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2572\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpStatus\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\",\n              \"@value\": \"301\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#redirectTo\": {\n              \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld\"\n            }\n          },\n          \"rdfs:comment\": \"Loading a document with a redirect should use the redirected URL as document base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0005-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld\",\n          \"title\": \"Load JSON-LD through 301 redirect\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1369\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b1371\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1370\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpStatus\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\",\n              \"@value\": \"303\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#redirectTo\": {\n              \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld\"\n            }\n          },\n          \"rdfs:comment\": \"Loading a document with a redirect should use the redirected URL as document base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0006-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld\",\n          \"title\": \"Load JSON-LD through 303 redirect\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2776\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b2777\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b912\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpStatus\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\",\n              \"@value\": \"307\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#redirectTo\": {\n              \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld\"\n            }\n          },\n          \"rdfs:comment\": \"Loading a document with a redirect should use the redirected URL as document base\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0007-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0001-out.jsonld\",\n          \"title\": \"Load JSON-LD through 307 redirect\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b347\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008\",\n              \"result\": {\n                \"@id\": \"_:b348\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Loading a non-existant file raises loading document failed error\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/missing-in.jsonld\",\n          \"mf:result\": \"loading document failed\",\n          \"title\": \"Non-existant file (404)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3047\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b289\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2819\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<0009-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\"\n          },\n          \"rdfs:comment\": \"If a context is specified in a link header, it is not used for JSON-LD.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0009-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0009-out.jsonld\",\n          \"title\": \"load JSON-LD document with link\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1322\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b1598\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1323\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<0010-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\"\n          },\n          \"rdfs:comment\": \"If a context is specified in a link header, it is used for JSON.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0010-in.json\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0010-out.jsonld\",\n          \"title\": \"load JSON document with link\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1098\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b2151\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1099\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#contentType\": \"application/jldTest+json\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<0011-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\"\n          },\n          \"rdfs:comment\": \"If a context is specified in a link header, it is used for a JSON extension type.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0011-in.jldt\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0011-out.jsonld\",\n          \"title\": \"load JSON document with extension-type with link\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2276\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b2277\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2278\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": [\n              \"<0012-context2.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\",\n              \"<0012-context1.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\"\n            ]\n          },\n          \"rdfs:comment\": \"Loading a file when multiple link headers are returned is an error\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0012-in.json\",\n          \"mf:result\": \"multiple context link headers\",\n          \"title\": \"Multiple context link headers\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3070\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b3071\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3072\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<0013-context.html>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\"\n          },\n          \"rdfs:comment\": \"If a context is specified in a link header, it is used for JSON, extracting from HTML.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0013-in.json\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/0013-out.jsonld\",\n          \"title\": \"load JSON document with link to HTML document\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b452\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01\",\n              \"result\": {\n                \"@id\": \"_:b3477\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b453\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<la01-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\"\n          },\n          \"rdfs:comment\": \"Load an alternate link if type is not ld+json and rel=alternate.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la01-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la01-out.jsonld\",\n          \"title\": \"Redirects if type is text/html\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2031\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02\",\n              \"result\": {\n                \"@id\": \"_:b2033\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2032\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<la02-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\"\n          },\n          \"rdfs:comment\": \"Load an alternate link if type is not ld+json and rel=alternate.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la02-in.jsonld\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la02-out.jsonld\",\n          \"title\": \"Does not redirect if type is application/ld+json\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1256\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03\",\n              \"result\": {\n                \"@id\": \"_:b3483\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1257\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<la03-alternate.json>; rel=\\\"alternate\\\"; type=\\\"application/json\\\"\"\n          },\n          \"rdfs:comment\": \"Load an alternate link if type is not ld+json and rel=alternate.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la03-in.json\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la03-out.jsonld\",\n          \"title\": \"Does not redirect if link type is not application/ld+json\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2213\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04\",\n              \"result\": {\n                \"@id\": \"_:b601\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2214\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<la04-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\"\n          },\n          \"rdfs:comment\": \"Load an alternate link if type is not ld+json and rel=alternate.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la04-in.json\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la04-out.jsonld\",\n          \"title\": \"Does not redirect if type is application/json\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05\",\n          \"@type\": [\n            \"https://w3c.github.io/json-ld-api/tests/vocab#ExpandTest\",\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2937\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05\",\n              \"result\": {\n                \"@id\": \"_:b2575\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2001\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#processorFeature\": \"HTML Script Extraction\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#httpLink\": \"<la05-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\"\n          },\n          \"rdfs:comment\": \"Load an alternate link if type is not ld+json and rel=alternate.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la05-in.html\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/remote-doc/la05-out.jsonld\",\n          \"title\": \"Base is that of the alternate URL\"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Remote document\"\n    },\n    {\n      \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest\",\n      \"@type\": [\n        \"Report\",\n        \"mf:Manifest\"\n      ],\n      \"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).\",\n      \"entries\": [\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3353\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001\",\n              \"result\": {\n                \"@id\": \"_:b796\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Tests generation using different types of objects.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0001-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0001-out.jsonld\",\n          \"title\": \"Object Lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2261\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002\",\n              \"result\": {\n                \"@id\": \"_:b2995\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not use native datatypes for xsd:boolean, xsd:integer, and xsd:double by default.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0002-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0002-out.jsonld\",\n          \"title\": \"Native Types\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3383\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003\",\n              \"result\": {\n                \"@id\": \"_:b3384\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"BNode name generation and references between resources.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0003-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0003-out.jsonld\",\n          \"title\": \"BNodes and references\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2373\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004\",\n              \"result\": {\n                \"@id\": \"_:b123\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Multiple lists with different types of element.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0004-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0004-out.jsonld\",\n          \"title\": \"Lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b240\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005\",\n              \"result\": {\n                \"@id\": \"_:b241\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Uses a named graph containing a list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0005-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0005-out.jsonld\",\n          \"title\": \"Document with list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2483\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006\",\n              \"result\": {\n                \"@id\": \"_:b2484\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Ensure that properties and list elements aren't confused between graphs.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0006-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0006-out.jsonld\",\n          \"title\": \"Two graphs having same subject but different values\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1797\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007\",\n              \"result\": {\n                \"@id\": \"_:b1798\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Testing @graph recursion.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0007-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0007-out.jsonld\",\n          \"title\": \"Graph with multiple named graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2230\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009\",\n              \"result\": {\n                \"@id\": \"_:b3491\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Preserve IRI list nodes (i.e., not blank nodes) when converting to @list\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0009-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0009-out.jsonld\",\n          \"title\": \"List conversion with IRI nodes\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2138\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010\",\n              \"result\": {\n                \"@id\": \"_:b1931\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not convert lists that are not terminated by rdf:nil to @list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0010-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0010-out.jsonld\",\n          \"title\": \"List pattern without rdf:nil\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3467\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011\",\n              \"result\": {\n                \"@id\": \"_:b3468\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If additional properties are associated to a list node, the list is only partially converted to @list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0011-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0011-out.jsonld\",\n          \"title\": \"List pattern with extra properties\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1028\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012\",\n              \"result\": {\n                \"@id\": \"_:b1881\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Detect lists containing cycles and do not convert them to @list.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0012-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0012-out.jsonld\",\n          \"title\": \"List pattern with cycles\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2855\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013\",\n              \"result\": {\n                \"@id\": \"_:b2856\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not convert list nodes to @list if nodes contain more than one value for rdf:first.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0013-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0013-out.jsonld\",\n          \"title\": \"List pattern with multiple values of rdf:first\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1976\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014\",\n              \"result\": {\n                \"@id\": \"_:b2253\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not convert list nodes to @list if nodes contain more than one value for rdf:rest.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0014-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0014-out.jsonld\",\n          \"title\": \"List pattern with multiple values of rdf:rest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b301\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015\",\n              \"result\": {\n                \"@id\": \"_:b262\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Do not convert lists to @list if a list node's rdf:rest is an IRI.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0015-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0015-out.jsonld\",\n          \"title\": \"List pattern with IRI rdf:rest\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3277\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016\",\n              \"result\": {\n                \"@id\": \"_:b3273\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"List nodes may have a rdf:type rdf:List.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0016-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0016-out.jsonld\",\n          \"title\": \"List pattern with type rdf:List\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1733\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017\",\n              \"result\": {\n                \"@id\": \"_:b377\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Equivalent triples are used only once\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0017-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0017-out.jsonld\",\n          \"title\": \"Remove duplicate triples\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2244\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018\",\n              \"result\": {\n                \"@id\": \"_:b3021\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2245\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            }\n          },\n          \"rdfs:comment\": \"Literals with datatype xsd:boolean, xsd:integer, and xsd:double are serialized using native scalar values\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0018-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0018-out.jsonld\",\n          \"title\": \"use native types flag set to true\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2898\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019\",\n              \"result\": {\n                \"@id\": \"_:b2899\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2900\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#useRdfType\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"true\"\n            }\n          },\n          \"rdfs:comment\": \"Setting useRdfType to true causes an rdf:type predicate to be treated like a normal property, not @type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0019-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0019-out.jsonld\",\n          \"title\": \"use rdf:type flag set to false\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1294\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020\",\n              \"result\": {\n                \"@id\": \"_:b1295\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"An otherwise conformant list with a node shared across different lists does not serialize using @list\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0020-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0020-out.jsonld\",\n          \"title\": \"list with node shared across graphs\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1963\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021\",\n              \"result\": {\n                \"@id\": \"_:b1964\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"If a list node is used in different graphs, it isn't removed and converted to @list\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0021-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0021-out.jsonld\",\n          \"title\": \"list with node shared across graphs (same triple in different graphs)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2956\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022\",\n              \"result\": {\n                \"@id\": \"_:b2957\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Duplicate triples for a list node will not prevent @list from being properly generated\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0022-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0022-out.jsonld\",\n          \"title\": \"list from duplicate triples\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1492\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023\",\n              \"result\": {\n                \"@id\": \"_:b1493\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Test triple with RDF nil subject\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0023-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0023-out.jsonld\",\n          \"title\": \"triple with RDF nil subject\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2830\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024\",\n              \"result\": {\n                \"@id\": \"_:b2831\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Uniqness of triples should include the value language\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0024-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0024-out.jsonld\",\n          \"title\": \"multiple languages for same subject+property+value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3120\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025\",\n              \"result\": {\n                \"@id\": \"_:b3052\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Uniqness of triples should include the value type\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0025-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0025-out.jsonld\",\n          \"title\": \"multiple types for same subject+property+value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2045\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026\",\n              \"result\": {\n                \"@id\": \"_:b1039\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"rdfs:comment\": \"Check list generation with rdf:first property and rdf:nil value.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0026-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/0026-out.jsonld\",\n          \"title\": \"triple with rdf:first property and rdf:nil value\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b419\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01\",\n              \"result\": {\n                \"@id\": \"_:b421\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b420\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not parse i18n datatype without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di01-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di01-out.jsonld\",\n          \"title\": \"rdfDirection: null with i18n literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2395\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02\",\n              \"result\": {\n                \"@id\": \"_:b2396\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2397\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not parse i18n datatype without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di02-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di02-out.jsonld\",\n          \"title\": \"rdfDirection: null with i18n literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1849\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03\",\n              \"result\": {\n                \"@id\": \"_:b1851\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1850\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not parse compound literal without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di03-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di03-out.jsonld\",\n          \"title\": \"rdfDirection: null with compound literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b72\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04\",\n              \"result\": {\n                \"@id\": \"_:b74\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b73\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Does not parse compound literal without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di04-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di04-out.jsonld\",\n          \"title\": \"rdfDirection: null with compound literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1888\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05\",\n              \"result\": {\n                \"@id\": \"_:b1890\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1889\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Parses i18n datatype with proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di05-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di05-out.jsonld\",\n          \"title\": \"rdfDirection: i18n-datatype with i18n literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b385\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06\",\n              \"result\": {\n                \"@id\": \"_:b2881\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b386\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Parses i18n datatype with proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di06-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di06-out.jsonld\",\n          \"title\": \"rdfDirection: i18n-datatype with i18n literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1896\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07\",\n              \"result\": {\n                \"@id\": \"_:b1897\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1898\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Does not parse compound literal without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di07-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di07-out.jsonld\",\n          \"title\": \"rdfDirection: i18n-datatype with compound literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2710\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08\",\n              \"result\": {\n                \"@id\": \"_:b2410\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b578\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"i18n-datatype\"\n          },\n          \"rdfs:comment\": \"Does not parse compound literal without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di08-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di08-out.jsonld\",\n          \"title\": \"rdfDirection: i18n-datatype with compound literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1483\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09\",\n              \"result\": {\n                \"@id\": \"_:b1484\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1121\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Does not parse i18n datatype without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di09-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di09-out.jsonld\",\n          \"title\": \"rdfDirection: compound-literal with i18n literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b226\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10\",\n              \"result\": {\n                \"@id\": \"_:b228\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b227\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Does not parse i18n datatype without proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di10-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di10-out.jsonld\",\n          \"title\": \"rdfDirection: compound-literal with i18n literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b539\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11\",\n              \"result\": {\n                \"@id\": \"_:b541\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b540\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Parses compound literal with proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di11-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di11-out.jsonld\",\n          \"title\": \"rdfDirection: compound-literal with compound literal with direction and no language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2210\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12\",\n              \"result\": {\n                \"@id\": \"_:b904\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2211\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#normative\": {\n              \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\",\n              \"@value\": \"false\"\n            },\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection\": \"compound-literal\"\n          },\n          \"rdfs:comment\": \"Parses compound literal with proper option.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di12-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/di12-out.jsonld\",\n          \"title\": \"rdfDirection: compound-literal with compound literal with direction and language\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1462\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01\",\n              \"result\": {\n                \"@id\": \"_:b1463\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1464\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean true).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js01-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js01-out.jsonld\",\n          \"title\": \"JSON literal (boolean true)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b475\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02\",\n              \"result\": {\n                \"@id\": \"_:b1584\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b476\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (boolean false).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js02-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js02-out.jsonld\",\n          \"title\": \"JSON literal (boolean false)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3381\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03\",\n              \"result\": {\n                \"@id\": \"_:b550\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b263\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (double).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js03-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js03-out.jsonld\",\n          \"title\": \"JSON literal (double)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3082\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04\",\n              \"result\": {\n                \"@id\": \"_:b3084\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3083\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (double-zero).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js04-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js04-out.jsonld\",\n          \"title\": \"JSON literal (double-zero)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b905\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05\",\n              \"result\": {\n                \"@id\": \"_:b906\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b652\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (integer).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js05-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js05-out.jsonld\",\n          \"title\": \"JSON literal (integer)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2307\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06\",\n              \"result\": {\n                \"@id\": \"_:b2309\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2308\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (object).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js06-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js06-out.jsonld\",\n          \"title\": \"JSON literal (object)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1730\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07\",\n              \"result\": {\n                \"@id\": \"_:b1732\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1731\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (array).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js07-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js07-out.jsonld\",\n          \"title\": \"JSON literal (array)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3238\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08\",\n              \"result\": {\n                \"@id\": \"_:b2846\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2175\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors must generate an error when deserializing an invalid JSON literal.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js08-in.nq\",\n          \"mf:result\": \"invalid JSON literal\",\n          \"title\": \"Invalid JSON literal (bare-word)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#NegativeEvaluationTest\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b645\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09\",\n              \"result\": {\n                \"@id\": \"_:b646\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b647\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Processors must generate an error when deserializing an invalid JSON literal.\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js09-in.nq\",\n          \"mf:result\": \"invalid JSON literal\",\n          \"title\": \"Invalid JSON literal (invalid structure)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b3135\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10\",\n              \"result\": {\n                \"@id\": \"_:b303\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b3136\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (string).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js10-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js10-out.jsonld\",\n          \"title\": \"JSON literal (string)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1557\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11\",\n              \"result\": {\n                \"@id\": \"_:b2475\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1558\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"Tests creating property with rdf:type rdf:JSON to a JSON literal (null).\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js11-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/js11-out.jsonld\",\n          \"title\": \"JSON literal (null)\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1024\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01\",\n              \"result\": {\n                \"@id\": \"_:b1025\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1026\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li01-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li01-out.jsonld\",\n          \"title\": \"@list containing empty @list\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b1468\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02\",\n              \"result\": {\n                \"@id\": \"_:b667\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b1469\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld\",\n          \"title\": \"@list containing multiple lists\"\n        },\n        {\n          \"@id\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03\",\n          \"@type\": [\n            \"TestCriterion\",\n            \"TestCase\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#PositiveEvaluationTest\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#FromRDFTest\"\n          ],\n          \"assertions\": [\n            {\n              \"@id\": \"_:b2519\",\n              \"@type\": \"Assertion\",\n              \"subject\": \"https://rubygems.org/gems/json-ld\",\n              \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n              \"mode\": \"earl:automatic\",\n              \"test\": \"https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03\",\n              \"result\": {\n                \"@id\": \"_:b2520\",\n                \"@type\": \"TestResult\",\n                \"outcome\": \"earl:passed\"\n              }\n            }\n          ],\n          \"https://w3c.github.io/json-ld-api/tests/vocab#option\": {\n            \"@id\": \"_:b2521\",\n            \"https://w3c.github.io/json-ld-api/tests/vocab#specVersion\": \"json-ld-1.1\"\n          },\n          \"rdfs:comment\": \"List of lists\",\n          \"testAction\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li02-in.nq\",\n          \"testResult\": \"https://w3c.github.io/json-ld-api/tests/fromRdf/li02-out.jsonld\",\n          \"title\": \"t0008 as interpreted for 1.1. \"\n        }\n      ],\n      \"https://w3c.github.io/json-ld-api/tests/vocab#baseIri\": \"https://w3c.github.io/json-ld-api/tests/\",\n      \"title\": \"Transform RDF to JSON-LD\"\n    }\n  ],\n  \"bibRef\": \"[[json-ld-api]]\"\n}"
  },
  {
    "path": "etc/earl.ttl",
    "content": "@prefix dc: <http://purl.org/dc/terms/> .\n@prefix earl: <http://www.w3.org/ns/earl#> .\n@prefix doap: <http://usefulinc.com/ns/doap#> .\n@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n<https://rubygems.org/gems/json-ld> a doap:Project;\n   dc:creator <https://greggkellogg.net/foaf#me>;\n   doap:blog <https://greggkellogg.net/>;\n   doap:bug-database <https://github.com/ruby-rdf/json-ld/issues>;\n   doap:created \"2011-05-07\"^^xsd:date;\n   doap:description \"RDF.rb extension for parsing/serializing JSON-LD data.\"@en;\n   doap:developer <https://greggkellogg.net/foaf#me>;\n   doap:documenter <https://greggkellogg.net/foaf#me>;\n   doap:homepage <https://github.com/ruby-rdf/json-ld/>;\n   doap:implements <https://www.w3.org/TR/json-ld11/>,\n     <https://www.w3.org/TR/json-ld11-api/>,\n     <https://www.w3.org/TR/json-ld11-framing/>;\n   doap:license <https://unlicense.org/1.0/>;\n   doap:maintainer <https://greggkellogg.net/foaf#me>;\n   doap:name \"JSON::LD\"^^xsd:string;\n   doap:programming-language \"Ruby\"^^xsd:string;\n   doap:shortdesc \"JSON-LD support for RDF.rb.\"@en;\n   foaf:maker <https://greggkellogg.net/foaf#me> .\n\n<https://greggkellogg.net/foaf#me> a foaf:Person;\n   rdfs:isDefinedBy <https://greggkellogg.net/foaf>;\n   foaf:made <https://rubygems.org/gems/json-ld>;\n   foaf:mbox <mailto:gregg@greggkellogg.net>;\n   foaf:name \"Gregg Kellogg\"^^xsd:string .\n\n<https://rubygems.org/gems/json-ld> doap:release [\n  doap:name \"json-ld-3.1.4\";\n  doap:revision \"3.1.4\";\n  doap:created \"2020-04-28\"^^xsd:date;\n] .\n<> foaf:primaryTopic <https://rubygems.org/gems/json-ld>;\n  dc:issued \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime;\n  foaf:maker <http://greggkellogg.net/foaf#me> .\n\n<http://greggkellogg.net/foaf#me> a earl:Assertor;\n  foaf:title \"Implementor\" .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#te002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tex01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#te022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tc001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tc002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tc003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tc004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tf001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tf002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tf003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tf004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/html-manifest#tr022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n\n[ a earl:Assertion;\n  earl:assertedBy <http://greggkellogg.net/foaf#me>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:passed;\n    dc:date \"2020-04-28T14:46:56-07:00\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n"
  },
  {
    "path": "etc/manifests.nt",
    "content": "<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52580 .\n_:g52560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0004> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Compaction\" .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g52600 .\n<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/\" .\n<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> .\n<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).\" .\n_:g52620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52640 .\n_:g52620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"alias keywords\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52680 .\n_:g52660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"compact date\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52700 .\n_:g52600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0001> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"compact @id\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52740 .\n_:g52720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0006> .\n_:g52580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52720 .\n_:g52580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0005> .\n_:g52760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52780 .\n_:g52760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0023> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52800 .\n_:g52700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"add context\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52760 .\n_:g52820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0022> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52860 .\n_:g52840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0020> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g52880 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52920 .\n_:g52900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52560 .\n_:g52800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0003> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52820 .\n_:g52860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0021> .\n_:g52940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52660 .\n_:g52940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0008> .\n_:g52960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52980 .\n_:g52960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> .\n_:g53000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53020 .\n_:g53000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> .\n_:g53040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53060 .\n_:g53040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> .\n_:g53080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53100 .\n_:g53080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53160 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g53180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"coerced @id\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53200 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g53200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53220 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53240 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g53260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53280 .\n_:g53260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> .\n_:g53300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53320 .\n_:g53300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> .\n_:g53340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53380 .\n_:g53360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> .\n_:g53400 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g53420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53460 .\n_:g53440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> .\n_:g53480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53500 .\n_:g53480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> .\n_:g53520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53540 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g53560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53580 .\n_:g53560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53620 .\n_:g53600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> .\n_:g53640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53720 .\n_:g53700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0025> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53760 .\n_:g53740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> .\n_:g53780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53800 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g53820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53860 .\n_:g53840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te008> .\n_:g53880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53900 .\n_:g53880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53920 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53960 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53980 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g54020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54040 .\n_:g54020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> .\n_:g54060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54080 .\n_:g54060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt05> .\n_:g54100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54120 .\n_:g54100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0013> .\n_:g54140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54160 .\n_:g54140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> .\n_:g54180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54200 .\n_:g54180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te061> .\n_:g54220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54240 .\n_:g54220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te025> .\n_:g54260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54280 .\n_:g54260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> .\n_:g54300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54320 .\n_:g54300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter35> .\n_:g54340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g54380 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g54380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54420 .\n_:g54400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> .\n_:g54440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54460 .\n_:g54440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54500 .\n_:g54480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> .\n_:g54520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54540 .\n_:g54520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g54560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54580 .\n_:g54560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> .\n_:g54600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54620 .\n_:g54600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54640 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g54660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g54660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54680 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54720 .\n_:g54700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0122> .\n_:g54740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54760 .\n_:g54740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> .\n_:g54780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54800 .\n_:g54780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54860 .\n_:g54840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> .\n_:g54880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54900 .\n_:g54880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> .\n<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> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54940 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54960 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54980 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g55080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55100 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55120 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55140 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55160 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55200 .\n_:g55180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"GeneralizedRdf\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55220 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g55240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55260 .\n_:g55240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> .\n_:g55280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55320 .\n_:g55300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> .\n_:g55340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55360 .\n_:g55340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0011> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55380 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55400 .\n<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> .\n<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> .\n<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> .\n<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: [].\" .\n_:g55420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55480 .\n_:g55460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g55520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55540 .\n_:g55520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> .\n_:g55560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55580 .\n_:g55560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> .\n_:g55600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55620 .\n_:g55600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> .\n_:g55640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55660 .\n_:g55640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> .\n_:g55680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55700 .\n_:g55680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> .\n<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> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55720 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55740 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55800 .\n_:g55780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Conflicting indexes\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55820 .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"conflicting indexes\" .\n<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> .\n<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> .\n<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\" .\n_:g55840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55860 .\n_:g55840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter11> .\n_:g55880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55900 .\n_:g55880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0003> .\n_:g55920 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g55920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55940 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g55960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55980 .\n_:g55960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> .\n_:g56000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56020 .\n_:g56000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0113> .\n_:g56040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56080 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"basic\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52940 .\n_:g52740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0007> .\n_:g56140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55880 .\n_:g56140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0002> .\n_:g56160 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g56160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56160 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g56180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56220 .\n_:g56200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> .\n_:g56240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56260 .\n_:g56240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> .\n_:g56280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56300 .\n_:g56280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter29> .\n_:g56320 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g56320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56360 .\n_:g56340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> .\n_:g56380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56440 .\n_:g56420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56460 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> <http://www.w3.org/2000/01/rdf-schema#comment> \"Use of @graph containers\" .\n_:g56480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56520 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g56540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55240 .\n_:g56540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g56580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56600 .\n_:g56580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te016> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56640 .\n_:g56620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0087> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56660 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56680 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56700 .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"invalid frame\" .\n<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> .\n<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> .\n<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.\" .\n_:g56720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g56740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56760 .\n_:g56740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56780 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53640 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n_:g56820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56840 .\n_:g56820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g56860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56900 .\n_:g56880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0132> .\n_:g56920 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g54420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56940 .\n_:g54420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g56980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57000 .\n_:g56980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te048> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57020 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57040 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57080 .\n_:g57060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> .\n_:g57100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57100 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g57120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57140 .\n_:g57120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> .\n_:g57160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57180 .\n_:g57160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57220 .\n_:g57200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> .\n_:g57240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57280 .\n_:g57260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0078> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57300 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57320 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57380 .\n_:g57360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57420 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57440 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g57460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57480 .\n_:g57460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g57520 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g57520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57560 .\n_:g57540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0003> .\n_:g56840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57580 .\n_:g56840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> .\n_:g57600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57660 .\n_:g57640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0003> .\n_:g57680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57700 .\n_:g57680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> .\n_:g57720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57740 .\n_:g57720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te052> .\n_:g57760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57780 .\n_:g57760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> .\n_:g53220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"alias keywords\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0068> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57840 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57880 .\n_:g57860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> .\n_:g57900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54560 .\n_:g57900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57940 .\n_:g57920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0030> .\n_:g57960 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g57960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57920 .\n_:g57980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0029> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g58020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58040 .\n_:g58020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> .\n_:g58060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58100 .\n_:g58080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter14> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58120 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g58140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58160 .\n_:g58140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0117> .\n_:g58180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56200 .\n_:g58180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> .\n_:g55100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g58200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58240 .\n_:g58220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te069> .\n_:g58260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58280 .\n_:g58260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58300 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g58320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58340 .\n_:g58320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58380 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58400 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g58420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58440 .\n_:g58420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> .\n_:g58460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58480 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58520 .\n_:g58500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> .\n_:g58540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58580 .\n_:g58560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0053> .\n_:g58600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58620 .\n_:g58600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0058> .\n_:g58640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58660 .\n_:g58640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0018> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58680 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58720 .\n_:g58700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> .\n_:g58740 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g58760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58800 .\n_:g58780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> .\n_:g58820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58840 .\n_:g58820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> .\n<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> .\n<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: ''\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58900 .\n_:g58880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0074> .\n_:g58920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58940 .\n_:g58920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58980 .\n_:g58960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0089> .\n_:g59000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59020 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59100 .\n_:g59080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59140 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59180 .\n_:g59160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0108> .\n_:g59200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57260 .\n_:g59200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> .\n_:g59220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59240 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Use alias of @direction.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g59260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59280 .\n_:g59260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59300 .\n_:g53720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0026> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"default value\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59320 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g59340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59380 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59420 .\n_:g59400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> .\n_:g59440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59480 .\n_:g59460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59540 .\n_:g54240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> .\n_:g59560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59600 .\n_:g59280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> .\n_:g59620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59660 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g59680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59700 .\n_:g59680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te058> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g59720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59740 .\n_:g59720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te010> .\n_:g59760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59780 .\n_:g59760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> .\n_:g59800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59840 .\n_:g59820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter17> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g59880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59900 .\n_:g59880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> .\n_:g59920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59940 .\n_:g59920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te021> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59960 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60000 .\n_:g59980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g60040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58460 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g60060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60080 .\n_:g60060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> .\n_:g60100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60120 .\n_:g60100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0020> .\n_:g60140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60160 .\n_:g60140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> .\n_:g60180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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 '@'\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60200 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60220 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60260 .\n_:g60240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60280 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g60300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60320 .\n_:g60300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60340 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60420 .\n_:g60400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> .\n_:g60440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55300 .\n_:g60480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0130> .\n_:g60500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60540 .\n_:g60520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0008> .\n_:g60560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60580 .\n_:g60560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60620 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g60640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60660 .\n_:g60640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60680 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g60700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60720 .\n_:g60700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60740 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of lists\" .\n_:g60760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60800 .\n_:g60780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g60820 .\n<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/\" .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60840 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g56960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60860 .\n_:g58620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0059> .\n_:g56680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60900 .\n_:g60880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> .\n_:g60920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60940 .\n_:g60920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60960 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g60980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61000 .\n_:g60980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61020 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61040 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g61060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61080 .\n_:g61060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g61100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61120 .\n_:g61100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61160 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"expandContext option\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61180 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61220 .\n_:g61200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> .\n_:g61240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Colliding keywords\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"colliding keywords\" .\n<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> .\n<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> .\n<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\" .\n_:g61280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61300 .\n_:g61280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @index\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61340 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped vocab\" .\n_:g61360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61380 .\n_:g61360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n_:g61420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61440 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56240 .\n_:g61460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> .\n_:g61480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61520 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g61540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61580 .\n_:g61560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61600 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g61620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61640 .\n_:g61620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> .\n_:g61660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61680 .\n_:g61660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> .\n_:g61700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57980 .\n_:g61700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> .\n_:g61720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60880 .\n_:g61720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61740 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"alias keywords\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61780 .\n_:g61760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter40> .\n_:g61800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61820 .\n_:g61800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> .\n_:g53920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61840 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Expanding @reverse\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expanding @reverse keeps @reverse\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g61900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61920 .\n_:g61900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> .\n_:g61940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61960 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g61980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62000 .\n_:g61980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62020 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g62040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62060 .\n_:g62040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter22> .\n_:g62080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62100 .\n_:g62080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62120 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g62140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62160 .\n_:g62140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0051> .\n_:g62180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62220 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62240 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62260 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g62280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62300 .\n_:g62280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g59660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g62340 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g62340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62340 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g62360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62380 .\n_:g54160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> .\n_:g62400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62420 .\n_:g62400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te055> .\n_:g62440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62460 .\n_:g62440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62480 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g62500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62500 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62520 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g62540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62580 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g62600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62620 .\n_:g62600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter33> .\n_:g62640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62660 .\n_:g62640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> .\n_:g62680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62700 .\n_:g62680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter40> .\n_:g62720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62740 .\n_:g62720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g62780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62800 .\n_:g62780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm013> .\n_:g62820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59880 .\n_:g62840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> .\n_:g55940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62880 .\n_:g61640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> .\n_:g62900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55600 .\n_:g62900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> .\n_:g62920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62960 .\n_:g62940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0005> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62980 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56340 .\n_:g63000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63020 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63060 .\n_:g63040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> .\n_:g63080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63160 .\n_:g63140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g63180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63200 .\n_:g63180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> .\n_:g63220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63260 .\n_:g63240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> .\n_:g63280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63300 .\n_:g63280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63320 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63340 .\n_:g58900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63380 .\n_:g63360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0032> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compact traverses through @reverse\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63460 .\n_:g63440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0040> .\n_:g54680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63480 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g63520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63540 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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)\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63560 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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.\" .\n_:g63580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63580 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63620 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compact a @graph container\" .\n_:g63640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63680 .\n_:g63660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr04> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g63720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63760 .\n_:g63740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0001> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g53500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63780 .\n_:g53500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0027> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63820 .\n_:g63800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63840 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63860 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63900 .\n_:g63880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0114> .\n_:g63920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g64020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64060 .\n_:g64040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> .\n_:g64080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64100 .\n_:g64080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc027> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64120 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g64140 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g64140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64140 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g64160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64180 .\n_:g64160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter07> .\n_:g56520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64200 .\n_:g59540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te027> .\n_:g64220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64240 .\n_:g64220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter20> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g64300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64320 .\n_:g64300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64360 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g64380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64400 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g64440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64460 .\n_:g64440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0128> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g64480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57200 .\n_:g64500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter23> .\n_:g60420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64520 .\n_:g60420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> .\n_:g64540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60240 .\n_:g64620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> .\n_:g64640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61200 .\n_:g64640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0003> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64660 .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g64680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64700 .\n_:g64680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> .\n_:g64720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54180 .\n_:g64720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te060> .\n_:g64740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64760 .\n_:g64740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0034> .\n_:g64780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64800 .\n_:g64780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> .\n_:g64820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58260 .\n_:g64820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g64840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64880 .\n_:g64860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58200 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g64900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64920 .\n_:g54200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te062> .\n_:g64940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64960 .\n_:g64940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> .\n_:g64980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65000 .\n_:g64980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g65020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65040 .\n_:g65020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> .\n_:g54960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65100 .\n_:g65080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0047> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g65140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56980 .\n_:g65140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te047> .\n_:g65160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65180 .\n_:g65160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> .\n_:g65200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65220 .\n_:g65200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g65240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65260 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g65280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65300 .\n_:g65280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65320 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Language maps\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65340 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g65380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65400 .\n_:g65380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65420 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g65440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65460 .\n_:g65440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0045> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62180 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65480 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g65500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65520 .\n_:g65500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0037> .\n_:g65540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65580 .\n_:g65560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0061> .\n_:g65600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53300 .\n_:g65600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> .\n_:g53320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65280 .\n_:g53320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> .\n_:g65620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65640 .\n_:g65620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> .\n_:g65660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65680 .\n_:g65660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g65700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65720 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g65740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65780 .\n_:g65760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0023> .\n_:g65800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65820 .\n_:g65800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter09> .\n_:g65840 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g65860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65880 .\n_:g65860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> .\n_:g65900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65920 .\n_:g65900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> .\n_:g65940 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g65940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g65980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66040 .\n_:g66020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter36> .\n_:g66060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66080 .\n_:g66060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66100 .\n_:g55200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> .\n_:g66120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66140 .\n_:g66120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"coerced @id\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66200 .\n_:g66180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66220 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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: ''\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66240 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66320 .\n_:g66300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0056> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66340 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g66360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53960 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66380 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66400 .\n_:g55860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter12> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66420 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g66440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66480 .\n_:g66460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66500 .\n_:g54580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> .\n_:g66520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66540 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66580 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66600 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g61680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66620 .\n_:g61680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli09> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66660 .\n_:g54320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter36> .\n_:g66140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66680 .\n_:g66140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> .\n_:g66700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66720 .\n_:g66700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te073> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g54000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66760 .\n_:g66740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> .\n_:g66780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66800 .\n_:g66780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> .\n_:g66820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66840 .\n_:g66820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g66880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66920 .\n_:g66900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli09> .\n_:g66940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66960 .\n_:g66940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> .\n_:g62520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67040 .\n_:g67020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> .\n_:g67060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67080 .\n_:g67060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter02> .\n_:g67100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67120 .\n_:g67100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0049> .\n_:g67140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67160 .\n_:g67140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67180 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67220 .\n_:g67200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> .\n_:g67240 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g67240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67280 .\n_:g67260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> .\n_:g58720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67300 .\n_:g58720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> .\n_:g53860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59760 .\n_:g53860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te009> .\n_:g67320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67340 .\n_:g67320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter04> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g62580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67380 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g67420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67440 .\n_:g67420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0024> .\n_:g67460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67480 .\n_:g67460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> .\n_:g67500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67520 .\n_:g67500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0041> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g52780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65660 .\n_:g52780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0024> .\n_:g67540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"basic\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67640 .\n_:g67620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67660 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g67680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67700 .\n_:g67680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> .\n_:g67720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67740 .\n_:g67720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67760 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g67780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67800 .\n_:g67780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67820 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g67840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53600 .\n_:g67860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Compact @reverse\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compact traverses through @reverse\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g67900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67920 .\n_:g67900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0037> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g67960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67980 .\n_:g67960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0053> .\n_:g68000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59680 .\n_:g68020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te057> .\n_:g68040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68080 .\n_:g68060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0109> .\n_:g67220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63000 .\n_:g67220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm006> .\n_:g68100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68160 .\n_:g68140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> .\n_:g68180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68200 .\n_:g68180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59220 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g68220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68260 .\n_:g68240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"GeneralizedRdf\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68300 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g68320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68340 .\n_:g68320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> .\n_:g67160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68360 .\n_:g67160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> .\n_:g68380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g68420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68440 .\n_:g68420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> .\n_:g68460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68480 .\n_:g68460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter06> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68520 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g68540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68560 .\n_:g68540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56100 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g68580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58020 .\n_:g68600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> .\n_:g58440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68620 .\n_:g58440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter01> .\n_:g68640 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g68640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68680 .\n_:g68660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> .\n_:g58160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68700 .\n_:g58160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0118> .\n_:g68720 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g68720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58180 .\n_:g68740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68760 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60380 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g61600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68800 .\n_:g55660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> .\n_:g68820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g68840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68880 .\n_:g68860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> .\n_:g59780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68900 .\n_:g59780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te011> .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g68940 <https://w3c.github.io/json-ld-api/tests/vocab#useNativeTypes> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g68960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68980 .\n_:g68960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0120> .\n_:g69000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69020 .\n_:g69000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> .\n_:g69040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69080 .\n_:g69060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter28> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69100 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69140 .\n_:g69120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> .\n_:g69160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69180 .\n_:g69160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0053> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69240 .\n_:g69220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> .\n_:g69260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69280 .\n_:g69260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter53> .\n_:g69300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69320 .\n_:g69300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> .\n_:g66340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g69340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69420 .\n_:g69400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> .\n_:g69440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69480 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69500 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> \"application/jldTest+json\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56380 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g69520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69540 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g69560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69580 .\n_:g69560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0030> .\n_:g69600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69620 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n_:g69660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69680 .\n_:g69660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69700 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69740 .\n_:g69720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> .\n_:g69760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69780 .\n_:g69760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te065> .\n_:g69800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Relative IRIs\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g64000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59340 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69880 .\n_:g69860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> .\n_:g69900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62900 .\n_:g69900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57520 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59440 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69700 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g69700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69700 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69960 .\n_:g69940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0019> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"coerced @id\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70040 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of Lists\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70100 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g70100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70140 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g70160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70180 .\n_:g70160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0074> .\n_:g67040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70200 .\n_:g67040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc017> .\n_:g70220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70240 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70260 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g70280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70300 .\n_:g70280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0034> .\n_:g70320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67940 <https://w3c.github.io/json-ld-api/tests/vocab#compactToRelative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g67940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0120> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70380 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70440 .\n_:g70420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70460 .\n_:g61780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter41> .\n_:g70480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70500 .\n_:g70480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0033> .\n_:g70520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70540 .\n_:g70520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g70580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70600 .\n_:g70580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70620 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g70640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70660 .\n_:g70640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70680 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62600 .\n_:g70720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g67440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70740 .\n_:g67440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0025> .\n_:g65880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70760 .\n_:g65880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> .\n_:g64320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70780 .\n_:g64320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te088> .\n_:g63480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70820 .\n_:g70800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0018> .\n_:g70840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70860 .\n_:g70840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin03> .\n_:g70880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g70900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70920 .\n_:g70900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> .\n_:g70940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70960 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g70980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71000 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g71000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71000 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g71020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71040 .\n_:g71020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0130> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64540 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69340 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71080 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g71100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71120 .\n_:g70920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0045> .\n_:g53240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71140 .\n_:g62960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71160 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71180 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g71180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71180 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g71200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71220 .\n_:g71200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> .\n_:g71240 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g71240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g67800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71260 .\n_:g67800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> .\n_:g71280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65020 .\n_:g71280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n_:g71340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71360 .\n_:g71340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te031> .\n_:g66860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71380 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61100 .\n_:g71400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> .\n_:g71420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71440 .\n_:g71420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> .\n_:g70620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g53760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71480 .\n_:g53760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> .\n_:g71500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53700 .\n_:g65780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0024> .\n_:g71520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69860 .\n_:g71520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71540 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g66540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61960 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71580 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53880 .\n_:g71600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> .\n_:g71620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71640 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"reframe (type)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71660 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Multiple matches on @type.\" .\n_:g71680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71700 .\n_:g71680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt09> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71720 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"CompoundLiteral\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71000 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71740 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0009-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71780 .\n_:g70440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs19> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71800 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71840 .\n_:g71820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> .\n_:g71860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71880 .\n_:g71860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt15> .\n_:g70680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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 ':'\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71900 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71940 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g71980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72000 .\n_:g71980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> .\n_:g72020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70480 .\n_:g72040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0032> .\n_:g72060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72080 .\n_:g72060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0005> .\n_:g72100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72120 .\n_:g72100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> .\n_:g72140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67460 .\n_:g72140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> .\n_:g58520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72160 .\n_:g58520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0079> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72180 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value\" .\n_:g72200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58920 .\n_:g72200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> .\n_:g72220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72240 .\n_:g72220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0029> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72260 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g72280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64040 .\n_:g57700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70220 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0116> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72300 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g72320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71400 .\n_:g72320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc034> .\n_:g72340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72360 .\n_:g72340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs13> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"native types\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63080 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g55120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60840 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0012-context1.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n_:g60840 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0012-context2.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72380 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g72420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72460 .\n_:g72440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> .\n_:g68340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72480 .\n_:g68340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> .\n_:g72500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72520 .\n_:g72500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72540 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> <http://www.w3.org/2000/01/rdf-schema#comment> \"Flatten a test manifest\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g72580 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g72580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72580 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g72600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56280 .\n_:g72620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter28> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72660 .\n_:g72640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te067> .\n_:g69280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72680 .\n_:g69280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72700 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72720 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value\" .\n_:g72740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72760 .\n_:g72740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> .\n_:g72780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62860 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g72800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72840 .\n_:g72820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72860 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72880 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> <http://www.w3.org/2000/01/rdf-schema#comment> \"Use of @graph containers\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72900 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g72920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72940 .\n_:g72920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter26> .\n_:g72960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72980 .\n_:g72960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73040 .\n_:g73020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> .\n_:g73060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73080 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g73100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73120 .\n_:g73100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> .\n_:g73140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73160 .\n_:g73140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73180 .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73200 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73240 .\n_:g60080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g64260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73280 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g60580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73300 .\n_:g60580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> .\n_:g73320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73360 .\n_:g73340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73400 .\n_:g73380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> .\n_:g73420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59920 .\n_:g73420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te020> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73440 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73480 .\n_:g73460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73540 .\n_:g73520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs20> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59640 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g73560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57680 .\n_:g73560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> .\n_:g73240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73580 .\n_:g73240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> .\n_:g73600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69720 .\n_:g73600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0126> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73620 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tf003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62500 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73660 .\n_:g73640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0005> .\n_:g73680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71860 .\n_:g73700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt14> .\n_:g73720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73740 .\n_:g73720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te075> .\n_:g73760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73780 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73820 .\n_:g73800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te107> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73840 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @id\" .\n_:g57080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73860 .\n_:g57080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten06> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g73880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55640 .\n_:g73880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73900 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56820 .\n_:g73920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0048> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74020 .\n_:g55700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> .\n_:g53900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72340 .\n_:g53900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> .\n_:g74040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74080 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g74080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"CompoundLiteral\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g74120 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g74120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74140 .\n_:g71260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52620 .\n_:g52680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0010> .\n_:g74160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74180 .\n_:g74160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0017> .\n_:g74200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74220 .\n_:g74200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0072> .\n_:g56260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60980 .\n_:g56260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn008> .\n_:g58980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74240 .\n_:g58980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74260 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54660 .\n_:g66620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> .\n_:g74300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g74340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74380 .\n_:g74360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0009> .\n_:g74400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74440 .\n_:g74420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi11> .\n_:g70300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74460 .\n_:g70300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0035> .\n_:g74480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56420 .\n_:g74500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> .\n_:g74520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70520 .\n_:g74520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> .\n_:g74540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68240 .\n_:g74540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi07> .\n_:g65520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74560 .\n_:g65520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> .\n_:g74580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62840 .\n_:g74600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74620 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74640 .\n_:g71780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> .\n_:g74660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74680 .\n_:g74660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0050> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74720 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74740 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g74780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74800 .\n_:g74780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0014> .\n_:g74820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74840 .\n_:g74820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr03> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74860 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66440 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g74880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67100 .\n_:g74900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0048> .\n_:g74920 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g74920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74940 .\n_:g68560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75000 .\n_:g74980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te013> .\n_:g54640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75040 .\n_:g75020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> .\n_:g75060 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g75060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75080 .\n_:g57140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs04> .\n_:g75100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75120 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g59960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75140 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g75160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75180 .\n_:g75160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter38> .\n_:g75200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75220 .\n_:g75200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs05> .\n_:g75240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75260 .\n_:g75240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0006> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56160 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75280 .\n_:g66680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59620 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75300 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g75320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67420 .\n_:g75320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0023> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75340 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75360 .\n<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> .\n<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> .\n<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> .\n_:g75380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75400 .\n_:g75380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te097> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64480 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57460 .\n_:g61580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso08> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55760 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g57280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75420 .\n_:g57280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> .\n_:g75440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75460 .\n_:g75440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te013> .\n_:g75480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75500 .\n_:g75480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te018> .\n_:g75520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75540 .\n_:g75520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75560 .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g66660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75580 .\n_:g66660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter37> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g75600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75620 .\n_:g75600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> .\n_:g75640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75680 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74080 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g75700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64160 .\n_:g60660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter06> .\n_:g57740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75720 .\n_:g57740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te053> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75740 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> \"Override unprotected term.\" .\n_:g75760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75780 .\n_:g75760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72600 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g75800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55780 .\n_:g75800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> .\n_:g75820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75820 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75840 .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g75560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"reframe (null)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75860 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g58840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75900 .\n_:g58840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> .\n_:g75920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75940 .\n_:g75920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc010> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Language maps\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g75960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74980 .\n_:g68900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te012> .\n_:g75980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76000 .\n_:g75980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76020 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76060 .\n_:g76040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc011> .\n_:g76080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76120 .\n_:g76100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0040> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value mix\" .\n_:g76160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76200 .\n_:g76180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63140 .\n_:g69420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc024> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53660 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g76220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59160 .\n_:g76220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0107> .\n_:g76240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65200 .\n_:g76240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc004> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g60340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g74100 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g74100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74100 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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 '/'\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76280 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76300 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76340 .\n_:g76320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp005> .\n_:g76360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76380 .\n_:g76360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76440 .\n_:g76420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0027> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"compactArrays option\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0044> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76460 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76500 .\n_:g76480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter17> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65760 .\n_:g76520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0022> .\n_:g63620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54480 .\n_:g76540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g76580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76600 .\n_:g76580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76620 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g76640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69660 .\n_:g75900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> .\n_:g76660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66740 .\n_:g76660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> .\n_:g76680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g76720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76740 .\n_:g76720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> .\n_:g66600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76760 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69380 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g62740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76780 .\n_:g62740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr39> .\n_:g76800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76820 .\n_:g76800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi02> .\n_:g76840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76860 .\n_:g76840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> .\n_:g75000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76880 .\n_:g75000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> .\n<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> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0063> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55420 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76900 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> \"URL resolution follows RFC3986\" .\n_:g76920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57360 .\n_:g76940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te103> .\n_:g76960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54840 .\n_:g76960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76980 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53680 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77000 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77020 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66160 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g77040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53040 .\n_:g77040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter43> .\n_:g77060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77080 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g77100 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g77100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54520 .\n_:g77120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g77160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g77160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72960 .\n_:g77180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g77200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53840 .\n_:g77200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te007> .\n_:g61160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77220 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin07> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"reframe (explicit)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65840 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g59860 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<la03-alternate.json>; rel=\\\"alternate\\\"; type=\\\"application/json\\\"\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g54540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77240 .\n_:g54540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> .\n_:g77260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69220 .\n_:g77300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te001> .\n_:g77320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66820 .\n_:g77340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> .\n_:g61520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g77360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77380 .\n_:g77360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"context reset\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g77400 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g77400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64980 .\n_:g65220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc006> .\n_:g77420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54740 .\n_:g77420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77440 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77460 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g77480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77500 .\n_:g77480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> .\n_:g77520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77540 .\n_:g77520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> .\n_:g77560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77600 .\n_:g57880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77620 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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. \" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77660 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74480 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g77680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77700 .\n_:g77680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0064> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77720 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77740 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g72460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77760 .\n_:g72460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70120 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g77780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77800 .\n_:g77780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> .\n_:g77820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77840 .\n_:g77820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr14> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77860 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g77880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68140 .\n_:g77880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> .\n_:g58800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77900 .\n_:g58800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0071> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g77920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g77940 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g77940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77940 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g71080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77960 .\n_:g75220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> .\n_:g77980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64560 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g78020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78060 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78080 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78120 .\n_:g78100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0069> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0025> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Language maps\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68040 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc006> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g67300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64620 .\n_:g67300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0118> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63100 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78160 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g54120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78180 .\n_:g54120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0014> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Relative IRIs\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78220 .\n_:g78200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0055> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78240 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78260 .\n_:g56020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> .\n_:g55900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72060 .\n_:g55900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0004> .\n_:g59300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61700 .\n_:g59300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0027> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78280 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78300 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78340 .\n_:g66480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf03> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0028> <http://www.w3.org/2000/01/rdf-schema#comment> \"Signing a graph.\" .\n_:g78360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78400 .\n_:g78380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter30> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78420 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g64200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78440 .\n_:g64200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te028> .\n_:g62760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78460 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @type\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Flattening @index\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78480 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> .\n_:g78480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78540 .\n_:g78520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te045> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g74280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66780 .\n_:g60000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf004> .\n_:g69880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78580 .\n_:g69880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78620 .\n_:g78600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57620 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g78640 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g78640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0062> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78660 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78720 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g78740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78760 .\n_:g78740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi02> .\n_:g74840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78780 .\n_:g74840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> .\n_:g78800 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g78800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78840 .\n_:g78820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0055> .\n_:g78860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55080 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78900 .\n_:g78880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61280 .\n_:g78940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g54380 .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g78960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78980 .\n_:g78960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0098> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57240 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g79000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55180 .\n_:g79020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> .\n_:g60720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79040 .\n_:g60720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g64100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79060 .\n_:g64100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc028> .\n_:g79080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62780 .\n_:g79080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm012> .\n_:g76500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79100 .\n_:g76500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter18> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79140 .\n_:g79120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter49> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79160 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g53380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79180 .\n_:g53380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs01> .\n_:g63060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79200 .\n_:g63060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79220 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g62240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62240 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59520 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79240 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79260 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g75880 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g75880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79300 .\n_:g79280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> .\n_:g69020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63040 .\n_:g69020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79320 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75160 .\n_:g66040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter37> .\n_:g79340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79360 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67620 .\n_:g79380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> .\n_:g79400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79460 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g79480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79500 .\n_:g79480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> .\n_:g79520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g79520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli03> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g79540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70700 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0078> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compact with [@graph, @set]\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79580 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79620 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79640 .\n_:g56360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> .\n_:g64180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79660 .\n_:g64180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter08> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79680 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g52640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79720 .\n_:g52640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0012> .\n_:g73480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79740 .\n_:g73480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0104> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g61340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62440 .\n_:g79760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0015> .\n_:g63760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57540 .\n_:g63760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0002> .\n_:g68680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77340 .\n_:g68680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc018> .\n_:g62700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79780 .\n_:g62700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter41> .\n_:g79800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79820 .\n_:g79800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0067> .\n_:g64760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79840 .\n_:g64760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0035> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79860 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g79880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg008> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g79920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61060 .\n_:g79920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> .\n_:g54820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Array frame\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79280 .\n_:g78780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr05> .\n_:g79940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79960 .\n_:g79940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0020> .\n_:g73580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79980 .\n_:g73580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> .\n_:g80000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80020 .\n_:g80000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> .\n_:g80040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g80060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80080 .\n_:g80060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> .\n_:g80100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80120 .\n_:g80100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71740 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80140 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61360 .\n_:g80160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> .\n_:g80180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69760 .\n_:g80180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te064> .\n_:g80020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80200 .\n_:g80020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80220 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g80240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80260 .\n_:g80240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> .\n_:g66840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65860 .\n_:g66840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> .\n_:g80280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67260 .\n_:g80280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso09> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Expanding @reverse\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80300 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/toRdf/e077-context.jsonld> .\n_:g76280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80320 .\n_:g58240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te070> .\n_:g80340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80360 .\n_:g80340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te023> .\n_:g80380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80400 .\n_:g80380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0092> .\n_:g80420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61460 .\n_:g80420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> .\n_:g72980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59980 .\n_:g72980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> .\n_:g61820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80440 .\n_:g61820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80480 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g80500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g55320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80520 .\n_:g55320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc002> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53340 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80540 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g80560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80580 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g66260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80620 .\n_:g80600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0031> .\n_:g74800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80640 .\n_:g74800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0015> .\n_:g63260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78940 .\n_:g63260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80660 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g78920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80680 .\n_:g78900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm017> .\n_:g70260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80700 .\n_:g53020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep12> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80720 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66900 .\n_:g80740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli08> .\n_:g80760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74000 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80780 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80800 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#teo01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80820 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g78620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80840 .\n_:g78620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> .\n_:g80860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80880 .\n_:g80860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> .\n_:g80900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80920 .\n_:g80900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> .\n_:g79980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79020 .\n_:g79980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> .\n_:g80940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62040 .\n_:g64240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> .\n_:g62460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80960 .\n_:g62460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0017> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#trt01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69520 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80980 .\n_:g78980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g54500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81020 .\n_:g54500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> .\n_:g81040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73560 .\n_:g81040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value mix\" .\n_:g61740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81080 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g77720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81100 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @id\" .\n_:g70560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g60740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81120 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g81140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69980 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Typed literal\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g81060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81160 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81000 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g81180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72320 .\n_:g81180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> .\n_:g81200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81260 .\n_:g81240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> .\n_:g81280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81300 .\n_:g66200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81320 .\n_:g59900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> .\n_:g74320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53480 .\n_:g81340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0025> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g59240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65440 .\n_:g81380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0044> .\n_:g65040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79520 .\n_:g65040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tli02> .\n_:g81400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69900 .\n_:g81400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> .\n_:g76380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81420 .\n_:g76380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr13> .\n_:g70060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81460 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81500 .\n_:g81480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75140 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g53540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67780 .\n_:g81300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli04> .\n_:g79740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81540 .\n_:g79740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0105> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73220 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g73260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78100 .\n_:g79820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0068> .\n_:g81560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81600 .\n_:g81580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> .\n_:g81620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81640 .\n_:g81620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla04> .\n_:g79460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80860 .\n_:g81660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te109> .\n_:g81680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74820 .\n_:g81680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> .\n_:g81700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81720 .\n_:g81700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0008> .\n_:g80360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54220 .\n_:g80360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81760 .\n_:g81740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tla01> .\n_:g81780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g59020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81820 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60180 .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"invalid frame\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79440 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g81840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Language maps\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69060 .\n_:g81860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter27> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81880 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81900 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81920 .\n_:g74140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm003> .\n_:g81940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57640 .\n_:g81960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0002> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77320 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59800 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g75940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81980 .\n_:g75940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82000 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71460 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<la04-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\" .\n_:g82040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82060 .\n_:g82040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter50> .\n_:g82080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82100 .\n_:g82080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr36> .\n_:g82120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82140 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g77540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82160 .\n_:g77540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0002> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82180 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g71700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82200 .\n_:g71700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt10> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82220 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g74640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60300 .\n_:g74640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs21> .\n_:g82240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g80460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g82300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58320 .\n_:g82300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm001> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#te001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82320 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68820 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68840 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g82340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74660 .\n_:g82340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0049> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82380 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82420 .\n_:g82400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> .\n_:g79840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82440 .\n_:g79840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0036> .\n_:g82460 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g82460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82460 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g61020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g82480 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g78400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70720 .\n_:g78400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter31> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81940 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67960 .\n_:g82500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0052> .\n_:g63380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82300 .\n_:g63380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> .\n_:g80680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60140 .\n_:g80680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm018> .\n_:g82520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82540 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82560 .\n_:g63160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> .\n_:g82580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71620 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped base\" .\n_:g82620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82660 .\n_:g82640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0095> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63520 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g70460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82680 .\n_:g70460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter42> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> <http://www.w3.org/2000/01/rdf-schema#comment> \"@type: @none honors @container.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82720 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm009> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @index\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g82740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82760 .\n_:g82740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla02> .\n_:g76060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82780 .\n_:g76060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc012> .\n_:g53280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82800 .\n_:g53280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm012> .\n_:g70380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63640 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82820 .\n_:g73040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te078> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g62660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64080 .\n_:g62660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57100 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g58660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52840 .\n_:g58660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0019> .\n_:g82840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82860 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g60160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68540 .\n_:g60160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm020> .\n_:g82880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82900 .\n_:g82880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te091> .\n_:g67880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82960 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g68500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54400 .\n_:g82980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr23> .\n_:g83000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73880 .\n_:g83000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0010> .\n_:g83020 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> .\n_:g83020 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> \"301\"^^<http://www.w3.org/2001/XMLSchema#integer> .\n_:g76120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83040 .\n_:g76120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0041> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82120 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g52980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71420 .\n_:g52980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> .\n_:g71920 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0010-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77920 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @id\" .\n_:g63200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75760 .\n_:g63200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0027> .\n_:g62100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83060 .\n_:g62100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep02> .\n_:g83080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83100 .\n_:g83080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83120 .\n_:g78760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi03> .\n_:g83140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83160 .\n_:g83140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0022> .\n_:g82160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83180 .\n_:g82160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0003> .\n_:g79680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83220 .\n_:g83200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0111> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83240 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Colliding keywords\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"colliding keywords\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g81120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65740 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc011> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g83260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60480 .\n_:g83260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0129> .\n_:g83280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83300 .\n_:g83280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr04> .\n_:g83320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74780 .\n_:g83320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0013> .\n_:g76260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83380 .\n_:g83360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te043> .\n_:g73620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g74680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83400 .\n_:g74680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0051> .\n_:g83420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81040 .\n_:g83420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> .\n_:g60260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83440 .\n_:g60260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83460 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58540 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g83480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81700 .\n_:g83480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0007> .\n_:g73820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81660 .\n_:g73820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te108> .\n_:g83500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83080 .\n_:g83520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0019> .\n_:g61080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83540 .\n_:g61080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso06> .\n_:g83560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83580 .\n_:g83560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr012> .\n_:g65720 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g65720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77820 .\n_:g69680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83620 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g65960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73980 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g77840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83660 .\n_:g77840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> .\n_:g83680 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g83680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83700 .\n_:g80120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs06> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g83720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83740 .\n_:g83720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> .\n_:g60120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83760 .\n_:g60120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0021> .\n_:g83780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78600 .\n_:g83780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> .\n_:g75340 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g75340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83680 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83800 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83860 .\n_:g83840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> .\n_:g83880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73100 .\n_:g83880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0028> .\n_:g83900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55280 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g57400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83940 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g75620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73380 .\n_:g75620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71180 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58500 .\n_:g83960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0077> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64840 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72140 .\n_:g72160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0080> .\n_:g73160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83980 .\n_:g73160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr29> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84020 .\n_:g84000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0014> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84040 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"compactArrays option\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0070> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58740 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84080 .\n_:g84060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> .\n_:g80400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84100 .\n_:g80400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0093> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70100 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58420 .\n_:g73860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> .\n_:g84120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84140 .\n_:g84120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0059> .\n_:g84160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65080 .\n_:g84160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0046> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84260 .\n_:g84240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te005> .\n_:g84280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84320 .\n_:g84300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter31> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84340 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84360 .\n_:g78440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te029> .\n_:g84380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g84400 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g84400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68860 .\n_:g82100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> .\n_:g84420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84440 .\n_:g84420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> .\n_:g84460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66700 .\n_:g84460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te072> .\n_:g80480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g84020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84480 .\n_:g84020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0015> .\n_:g72680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84500 .\n_:g72680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> .\n_:g84520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Object Lists\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84540 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84600 .\n_:g84580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g84620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84640 .\n_:g84620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi02> .\n_:g84660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84680 .\n_:g84660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te101> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g84720 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g84720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84760 .\n_:g84740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs08> .\n_:g84040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84780 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84800 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84840 .\n_:g75280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli06> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78640 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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 ':'\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g84880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78740 .\n_:g84920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> .\n_:g84940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84960 .\n_:g84940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt12> .\n_:g69740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83260 .\n_:g69740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0128> .\n_:g84980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82920 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g84680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76940 .\n_:g84680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> .\n_:g67700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79120 .\n_:g67700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter48> .\n_:g64920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80180 .\n_:g64920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te063> .\n_:g59120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g85000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66300 .\n_:g85000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0055> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69120 .\n_:g85040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr32> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85060 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63940 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g84560 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g84560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85080 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm001> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n_:g70600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64740 .\n_:g70600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> .\n_:g85100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70800 .\n_:g85100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0017> .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85120 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85140 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83780 .\n_:g85160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0014> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85180 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g66640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85220 .\n_:g85200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr17> .\n_:g58940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85240 .\n_:g58940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin05> .\n_:g84600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85260 .\n_:g84600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> .\n_:g85280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85320 .\n_:g85300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0044> .\n_:g85260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85340 .\n_:g85260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85360 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85380 .\n_:g66320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0057> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85400 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g78060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78060 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g85420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85460 .\n_:g85440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te040> .\n_:g60460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79000 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g67120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65380 .\n_:g67120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#te001> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tf002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71240 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g77140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85480 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62720 .\n_:g85500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77940 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68600 .\n_:g85520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85560 .\n_:g65460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0046> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85580 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0062> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative IRIs\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68940 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77880 .\n_:g80440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> .\n_:g85600 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g85600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85600 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g85620 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g85620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85620 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g63900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85640 .\n_:g63900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0115> .\n_:g85660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85040 .\n_:g85660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr31> .\n_:g85680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81340 .\n_:g85680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69200 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g85700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65800 .\n_:g85700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter08> .\n_:g75420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85720 .\n_:g75420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0080> .\n_:g67080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67320 .\n_:g67080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter03> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0096> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85740 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74520 .\n_:g85760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> .\n_:g52880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g85780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73600 .\n_:g85780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0125> .\n_:g85800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84880 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of Lists\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66880 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g58580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78200 .\n_:g58580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0054> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85840 .\n_:g85820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> .\n_:g85860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85880 .\n_:g85860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0066> .\n_:g60360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g79500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65600 .\n_:g79500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"context reset\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59260 .\n_:g85900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> .\n_:g77960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85920 .\n_:g77960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs07> .\n_:g79580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82840 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70320 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g81160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85940 .\n_:g82780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc013> .\n_:g53100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85960 .\n_:g53100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr10> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76160 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g76300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86000 .\n_:g85980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65940 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79540 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83960 .\n_:g86020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0076> .\n_:g78240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86040 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g86060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86080 .\n_:g86060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr19> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67840 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Expanding @index\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86120 .\n_:g86100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te004> .\n_:g79780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77040 .\n_:g79780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> .\n_:g80200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76840 .\n_:g80200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn006> .\n_:g62620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86140 .\n_:g62620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter34> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86160 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g86180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86200 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82240 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g85320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86220 .\n_:g85320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0045> .\n_:g67760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66180 .\n_:g81760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> .\n_:g86240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86260 .\n_:g86240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0007> .\n_:g75860 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"I18nDatatype\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86280 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0084> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77060 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g86320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71980 .\n_:g86320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g86340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86360 .\n_:g86340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt03> .\n_:g86380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86400 .\n_:g86380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te034> .\n_:g86420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86440 .\n_:g86420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> .\n_:g86360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54060 .\n_:g86360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt04> .\n_:g86460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86100 .\n_:g86460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te003> .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69600 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g73840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86480 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g81640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g81640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped base\" .\n_:g71220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76180 .\n_:g71220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm007> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86520 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g77860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g81360 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<la05-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\" .\n_:g81360 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g86540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0123> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86560 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g64880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86580 .\n_:g64880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> .\n_:g75260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80240 .\n_:g75260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> .\n_:g56900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85760 .\n_:g56900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> .\n_:g57300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57860 .\n_:g86600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> .\n_:g86620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86640 .\n_:g86620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> .\n_:g86660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55560 .\n_:g86660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> .\n_:g86680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61800 .\n_:g86680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g86720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86740 .\n_:g86720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0060> .\n_:g86760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86780 .\n_:g86760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te050> .\n_:g55160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te128> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86800 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83640 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86860 .\n_:g86840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te113> .\n_:g86880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77360 .\n_:g86880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0124> .\n_:g72080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86240 .\n_:g72080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0006> .\n_:g86280 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g86280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86280 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g86900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86920 .\n_:g86400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te035> .\n_:g86520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86940 .\n_:g59840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter18> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te110> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86980 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g58280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70840 .\n_:g58280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87000 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g87020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87040 .\n_:g87020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> .\n_:g87060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87080 .\n_:g87060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> .\n_:g66500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83420 .\n_:g66500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc035> .\n_:g86140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66020 .\n_:g86140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter35> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82140 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g87140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74420 .\n_:g87140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> .\n_:g77220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87160 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g87180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87200 .\n_:g87180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc020> .\n_:g84500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86680 .\n_:g84500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> .\n_:g87220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g87220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66560 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87260 .\n_:g87240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69940 .\n_:g74180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0018> .\n_:g67920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87280 .\n_:g67920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0038> .\n_:g87300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87320 .\n_:g87300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> .\n_:g62160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58560 .\n_:g62160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0052> .\n<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> .\n<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 '@'\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g65680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76420 .\n_:g65680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0026> .\n_:g72120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87340 .\n_:g72120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc004> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g87380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82640 .\n_:g87380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> .\n_:g68360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87400 .\n_:g68360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc026> .\n_:g87420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87240 .\n_:g87420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs02> .\n_:g85920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67860 .\n_:g85920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs08> .\n_:g61040 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g61040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87460 .\n_:g87440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc002> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87500 .\n_:g87480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc021> .\n_:g77460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68180 .\n_:g87520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter20> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87540 .\n_:g54620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> .\n_:g82900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76660 .\n_:g82900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> .\n_:g87560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87580 .\n_:g72360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0037> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87600 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63580 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71760 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g87620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87640 .\n_:g87620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0017> .\n_:g87660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87660 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g69780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72640 .\n_:g69780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te066> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87680 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g87700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87720 .\n_:g87700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg004> .\n_:g87740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59400 .\n_:g87740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0036> .\n_:g71380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60400 .\n_:g54720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0123> .\n_:g87760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87780 .\n_:g87760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin05> .\n_:g83380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78520 .\n_:g83380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te044> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87800 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87840 .\n_:g59740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te011> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g87860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87900 .\n_:g87880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61240 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87940 .\n_:g87920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> .\n_:g67740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87960 .\n_:g67740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc030> .\n_:g87980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86600 .\n_:g87980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> .\n_:g69240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88000 .\n_:g69240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te003> .\n_:g88020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87660 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g88040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88060 .\n_:g88040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78680 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g75120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88080 .\n_:g73400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs13> .\n_:g86000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58960 .\n_:g86000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0088> .\n_:g88100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77400 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g88120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63360 .\n_:g88120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli08> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88160 .\n_:g88140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0039> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g88180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76520 .\n_:g88180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0020> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88220 .\n_:g88200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> .\n_:g85240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87420 .\n_:g85240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86200 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g86200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88240 .\n_:g57780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63960 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74880 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82260 .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g88260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80280 .\n_:g88260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso08> .\n_:g73780 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g73780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88300 .\n_:g88280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te080> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88340 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88360 .\n_:g69320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr20> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88380 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> \"application/xhtml+xml\" .\n_:g88380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g65920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83840 .\n_:g65920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tec02> .\n_:g87000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g85140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85140 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g88400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87920 .\n_:g88420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> .\n_:g83300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88440 .\n_:g83300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g88460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88480 .\n_:g88460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g60940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68660 .\n_:g60940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87560 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g88500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74900 .\n_:g88500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0047> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64900 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped context nullification\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57820 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm021> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g75360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53780 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g82220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g82220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Expanding @index\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g82660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88540 .\n_:g82660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0096> .\n_:g65300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88560 .\n_:g65300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0104> .\n_:g67520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88580 .\n_:g67520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0042> .\n_:g65360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc033> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65980 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g83160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53560 .\n_:g83160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0023> .\n_:g88220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88620 .\n_:g88220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tr002> .\n_:g56120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88640 .\n_:g85880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0067> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67240 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88660 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g85340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88680 .\n_:g85340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0008> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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;.\" .\n_:g55260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53000 .\n_:g55260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> .\n_:g88700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68100 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g78280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76220 .\n_:g88720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0106> .\n_:g88160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67500 .\n_:g88160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0040> .\n_:g61300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88740 .\n_:g61300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> .\n_:g73120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88760 .\n_:g73120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0030> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88780 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g68280 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g68280 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr28> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64020 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g88820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88840 .\n_:g60540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0009> .\n_:g88860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88920 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88940 .\n_:g83980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr30> .\n_:g73500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81620 .\n_:g82760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla03> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88960 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84000 .\n_:g88980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0013> .\n_:g73200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57720 .\n_:g86780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te051> .\n_:g65400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72740 .\n_:g65400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin02> .\n_:g84640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54600 .\n_:g84640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g89020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr022> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70000 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g89040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89040 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68220 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81840 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88900 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g89120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89140 .\n_:g89120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter14> .\n_:g57500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85280 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g68480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85700 .\n_:g68480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter07> .\n_:g68160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53360 .\n_:g68160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tin08> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57960 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89160 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80060 .\n_:g89180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> .\n_:g89200 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g89200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89200 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g89220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83880 .\n_:g89220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0027> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89240 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89320 .\n_:g75580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter38> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g56600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75480 .\n_:g56600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te017> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g86800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89380 .\n_:g89360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt01> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89400 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0058> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89040 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87120 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g89420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54440 .\n_:g87720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg005> .\n_:g89440 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g89440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89440 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88520 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89460 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g89480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73280 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://a.example.com/doc> .\n_:g73280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73280 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g65180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89500 .\n_:g65180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0043> .\n_:g89520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81140 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89540 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0079> <http://www.w3.org/2000/01/rdf-schema#comment> \"Use of @graph containers\" .\n_:g89560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65540 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g74760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82340 .\n_:g65100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0048> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g76400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89620 .\n_:g89600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70080 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76080 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56860 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped vocab\" .\n_:g89660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71600 .\n_:g89660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g85060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62140 .\n_:g89680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0050> .\n_:g85020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77180 .\n_:g87460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc003> .\n_:g73080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74540 .\n_:g81020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi06> .\n_:g89700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g89160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g89340 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g89340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89720 .\n_:g65580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0062> .\n_:g83940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89760 .\n_:g89740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn002> .\n_:g85560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89780 .\n_:g85560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0047> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"@import overflow\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89800 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74960 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g71120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88500 .\n_:g71120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0046> .\n_:g88080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55520 .\n_:g88080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> .\n_:g89820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58880 .\n_:g74220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0073> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g57660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73640 .\n_:g57660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0004> .\n_:g57000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86760 .\n_:g57000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te049> .\n_:g68620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89840 .\n_:g68620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter02> .\n_:g63020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89880 .\n_:g89860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter10> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm019> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g89900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89940 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g76200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89960 .\n_:g76200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm009> .\n_:g89980 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0013-context.html>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n_:g90000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54260 .\n_:g88240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli02> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g90060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86660 .\n_:g90060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso02> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74920 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g88000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84240 .\n_:g88000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te004> .\n_:g90080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54300 .\n_:g90080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter34> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g66720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73720 .\n_:g66720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te074> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g90120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86720 .\n_:g87940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> .\n_:g79260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63860 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g80820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56920 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g90160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52960 .\n_:g90160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn011> .\n_:g71140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60520 .\n_:g71140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0007> .\n_:g90180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64440 .\n_:g90180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0127> .\n_:g90200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56580 .\n_:g90200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te015> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86540 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g90220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90240 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g83240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g90260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90280 .\n_:g90260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc022> .\n_:g67560 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g67560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72820 .\n_:g83100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77280 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86820 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g86860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83720 .\n_:g86860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te114> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90300 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g70860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90320 .\n_:g70860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp020> .\n_:g90340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90360 .\n_:g90340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp001> .\n_:g61220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75240 .\n_:g61220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0005> .\n_:g83800 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g76780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90380 .\n_:g76780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90220 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists.\" .\n_:g76880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90400 .\n_:g76880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te015> .\n_:g90420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90440 .\n_:g89500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0044> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90460 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90480 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0114> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73680 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77680 .\n_:g76600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0063> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr33> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90500 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g90520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70160 .\n_:g90520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0073> .\n_:g90540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90560 .\n_:g90540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr21> .\n_:g53580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90580 .\n_:g53580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0025> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Flattening\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g63740 .\n<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/\" .\n<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> .\n<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).\" .\n_:g90600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89480 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g69080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78380 .\n_:g69080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter29> .\n_:g90620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90640 .\n_:g90620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> .\n_:g90660 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g90680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82980 .\n_:g90680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr22> .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75640 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g90700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80160 .\n_:g90700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts002> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53180 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90720 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli06> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g90740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Testing @graph recursion.\" .\n_:g77760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85980 .\n_:g77760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0086> .\n_:g68760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g90780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90800 .\n_:g76340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp006> .\n_:g90820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g82680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67680 .\n_:g82680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter43> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90840 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of Lists\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74400 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56720 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g90860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72100 .\n_:g90860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc002> .\n_:g90880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65900 .\n_:g90880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te130> .\n_:g90900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87180 .\n_:g90900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90920 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of Lists\" .\n_:g61180 <https://w3c.github.io/json-ld-api/tests/vocab#expandContext> <https://w3c.github.io/json-ld-api/tests/expand/0077-context.jsonld> .\n_:g70820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88180 .\n_:g70820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0019> .\n_:g82720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90960 .\n_:g90940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs07> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56320 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g67640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90980 .\n_:g67640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc011> .\n_:g59600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84740 .\n_:g59600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> .\n_:g91000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57160 .\n_:g91000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"native types\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91020 .\n_:g70780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te089> .\n_:g62420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68020 .\n_:g62420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te056> .\n_:g80780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72280 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Reverse property\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0064> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91080 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73520 .\n_:g91100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs19> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75820 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g62380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90060 .\n_:g62380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso01> .\n_:g68880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54140 .\n_:g68880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped + graph container\" .\n_:g79140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91120 .\n_:g79140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter50> .\n_:g91140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81680 .\n_:g86640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68640 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68720 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91180 .\n_:g91160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te017> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83600 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g89140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59820 .\n_:g89140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter15> .\n_:g82420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62280 .\n_:g82420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> .\n_:g91200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70420 .\n_:g91200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86900 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g64340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87220 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g70500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91220 .\n_:g70500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0034> .\n_:g84360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71340 .\n_:g84360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te030> .\n_:g91240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91260 .\n_:g91240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0022> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73340 .\n_:g91280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0040> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"expandContext option\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te077> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80300 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62200 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g63820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85780 .\n_:g63820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91300 .\n_:g81420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr14> .\n_:g58340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71520 .\n_:g58340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm003> .\n_:g88760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72040 .\n_:g88760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0031> .\n_:g91320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91340 .\n_:g91320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te021> .\n_:g91360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91380 .\n_:g91360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs03> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70940 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of Lists\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of lists\" .\n_:g91420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91440 .\n_:g91420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> .\n_:g60320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57760 .\n_:g60320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs23> .\n_:g71480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81240 .\n_:g71480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> .\n_:g91460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90120 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89180 .\n_:g54900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> .\n_:g62480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91480 .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter42> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result> \"keyword redefinition\" .\n<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> .\n<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> .\n<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\" .\n_:g91500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91520 .\n_:g83060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tep03> .\n_:g56700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91540 .\n_:g81260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Multiple contexts\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84580 .\n_:g88480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0004> .\n_:g75540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64780 .\n_:g75540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm002> .\n_:g91580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82500 .\n_:g57580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0051> .\n_:g91600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55460 .\n_:g91600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84380 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91640 .\n_:g91620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0011> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g72560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81860 .\n_:g91660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter26> .\n_:g89240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91200 .\n_:g55540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs16> .\n_:g62880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69000 .\n_:g62880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn001> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73920 .\n_:g91680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0047> .\n_:g69480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86880 .\n_:g91700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te123> .\n<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> .\n<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]\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91720 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91780 .\n_:g91760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te038> .\n_:g91800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85660 .\n_:g91800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> .\n_:g53800 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> \"application/jldTest\" .\n_:g91820 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53420 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g74380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91840 .\n_:g74380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73940 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g77240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57060 .\n_:g77240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ten04> .\n_:g77660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84620 .\n_:g91880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi01> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56500 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g76900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90780 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g67660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87300 .\n_:g80980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91920 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91940 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g91960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85860 .\n_:g91960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0065> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70400 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g65260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71640 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<la02-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\" .\n_:g71640 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g88960 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> .\n_:g88960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88460 .\n_:g92000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0002> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88820 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g86480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89020 .\n_:g92020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr021> .\n_:g91260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85680 .\n_:g91260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0023> .\n_:g92040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90900 .\n_:g92040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc018> .\n_:g92060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86620 .\n_:g92060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> .\n_:g92080 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"compound-literal\" .\n_:g92080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92080 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g92100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92120 .\n_:g85460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te041> .\n_:g92140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77100 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @id\" .\n_:g87900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92180 .\n_:g87900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi05> .\n_:g92200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92220 .\n_:g92200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf05> .\n_:g87080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92240 .\n_:g87080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> .\n_:g85480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85480 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g92260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79940 .\n_:g92260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0019> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92280 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92300 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67060 .\n_:g91520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter01> .\n_:g91020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82880 .\n_:g91020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te090> .\n_:g92340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60560 .\n_:g92340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0032> .\n_:g62220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81460 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g79060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92360 .\n_:g79060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc029> .\n_:g63460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65160 .\n_:g63460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0041> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92380 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92400 .\n_:g56940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te119> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92420 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92440 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Simple embed\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60440 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g92460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92480 .\n_:g92460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0033> .\n_:g67980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78820 .\n_:g67980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0054> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g75720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62400 .\n_:g75720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te054> .\n_:g86560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92520 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g92520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92520 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g92540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g86960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g59940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80340 .\n_:g59940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te022> .\n_:g92580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60920 .\n_:g92580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc014> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g90380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92620 .\n_:g90380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso01> .\n_:g84480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87620 .\n_:g84480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0016> .\n_:g87200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90260 .\n_:g87200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc021> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g62020 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g62020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g62020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g91540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89740 .\n_:g91540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92660 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61760 .\n_:g89320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter39> .\n_:g78340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92200 .\n_:g78340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92680 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66520 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62640 .\n_:g70760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> .\n_:g82960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83360 .\n_:g92120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te042> .\n_:g92700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73800 .\n_:g92700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te106> .\n_:g70360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g88640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92720 .\n_:g88640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0068> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0089> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91940 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g87800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92740 .\n_:g89780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0048> .\n_:g90840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58780 .\n_:g92720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0069> .\n_:g90040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90540 .\n_:g86080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr20> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92760 .\n_:g72840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84200 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g79320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65560 .\n_:g60860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0060> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71100 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped context nullification\" .\n_:g70340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Native Types\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g92780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66060 .\n_:g92780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te084> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91460 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn02> <http://www.w3.org/2000/01/rdf-schema#comment> \"@type: @none honors @container.\" .\n_:g67480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72440 .\n_:g67480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0083> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92800 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69440 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g71800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71800 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g91440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76040 .\n_:g91440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc010> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs18> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72780 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g87340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68320 .\n_:g87340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc005> .\n_:g74560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63440 .\n_:g74560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0039> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0094> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86060 .\n_:g92820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr18> .\n_:g76020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76020 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g92840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64680 .\n_:g92840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te127> .\n_:g92860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g64660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92880 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g92880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78960 .\n_:g74020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0097> .\n_:g92900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76100 .\n_:g92900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0039> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g57340 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg010> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72900 <https://w3c.github.io/json-ld-api/tests/vocab#ordered> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g72900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75320 .\n_:g83760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0022> .\n_:g58400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76800 .\n_:g92920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi01> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g92280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92280 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g92960 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g92960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53440 .\n_:g92980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin02> .\n_:g67340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68460 .\n_:g67340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter05> .\n_:g93000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64640 .\n_:g93000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0002> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"@import overflow\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71300 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g93020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g68980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54700 .\n_:g68980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0121> .\n_:g83860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93040 .\n_:g83860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> .\n_:g83540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88260 .\n_:g83540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> .\n_:g61860 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g61860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93060 .\n_:g59480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi08> .\n_:g90280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67140 .\n_:g90280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc023> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g93080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86380 .\n_:g93080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te033> .\n_:g82180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93120 .\n_:g93100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> .\n_:g93140 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g93140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92820 .\n_:g66960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr17> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93160 .\n_:g73360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0042> .\n_:g77600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91700 .\n_:g77600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te122> .\n_:g57440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g86040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64940 .\n_:g55800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93180 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn007> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g93200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g92220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf07> .\n_:g91780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85440 .\n_:g91780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te039> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93220 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g59700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64720 .\n_:g59700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te059> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74300 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0029> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Relative IRIs\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85620 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g93240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59720 .\n_:g93240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te007> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93260 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61560 .\n_:g55580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso06> .\n_:g62300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80900 .\n_:g62300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> .\n_:g93280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56540 .\n_:g93280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep07> .\n_:g80260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93300 .\n_:g80260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0009> .\n_:g89460 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g89460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85100 .\n_:g80640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0016> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te104> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89080 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g56640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60780 .\n_:g56640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0088> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93320 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g93340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77780 .\n_:g90800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp007> .\n_:g72880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93360 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g93380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58600 .\n_:g93380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0057> .\n_:g93400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g93420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93440 .\n_:g93420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr014> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0087> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93460 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89220 .\n_:g90580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> .\n_:g93480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @index\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56480 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @type\" .\n_:g88780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93520 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g93520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72620 .\n_:g72940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter27> .\n_:g88740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93280 .\n_:g88740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep06> .\n_:g80540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g67820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64580 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Remote document\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g93540 .\n<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/\" .\n<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> .\n<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).\" .\n_:g93560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76720 .\n_:g93560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te001> .\n_:g92480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93580 .\n_:g92480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0034> .\n_:g63400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89820 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82600 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g85940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93600 .\n_:g85940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc014> .\n_:g91340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93620 .\n_:g91340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te022> .\n_:g70740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91880 .\n_:g70740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0026> .\n_:g77500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88120 .\n_:g77500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli07> .\n_:g83040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93640 .\n_:g83040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0042> .\n_:g84800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g93660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91320 .\n_:g93660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te020> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g92640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g93680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69260 .\n_:g93680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter52> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g88840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93700 .\n_:g88840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0010> .\n_:g62120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76460 <https://w3c.github.io/json-ld-api/tests/vocab#compactArrays> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g79860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85160 .\n_:g93720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0013> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Multiple contexts\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g54860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli03> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93740 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g93580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87740 .\n_:g93580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0035> .\n_:g86160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80000 .\n_:g74940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn003> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0033> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"@id reordering\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57020 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<la01-alternate.jsonld>; rel=\\\"alternate\\\"; type=\\\"application/ld+json\\\"\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr38> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84520 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83320 .\n_:g91640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0012> .\n_:g93760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87480 .\n_:g93760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc020> .\n_:g54940 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g54940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93780 .\n_:g54760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp003> .\n_:g89540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58080 .\n_:g93800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter13> .\n_:g56660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77260 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tli02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Lists of lists\" .\n_:g93820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83480 .\n_:g73660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0006> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0124> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93840 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72700 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g83180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68420 .\n_:g83180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0004> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g72520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56620 .\n_:g72520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0086> .\n_:g84760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93860 .\n_:g84760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> .\n_:g93880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0041> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93900 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g75840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g53620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81740 .\n_:g53620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs11> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68400 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g58000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69300 .\n_:g85220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr18> .\n_:g93440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86420 .\n_:g93440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr015> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63920 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g92440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90940 .\n_:g93920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs06> .\n_:g89380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86340 .\n_:g89380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt02> .\n_:g90400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91160 .\n_:g90400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te016> .\n_:g88060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76960 .\n_:g88060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> .\n_:g57480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75800 .\n_:g57480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso10> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77580 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80100 .\n_:g91380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g91720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84780 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g91480 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g91480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93960 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> .\n_:g93960 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> \"307\"^^<http://www.w3.org/2001/XMLSchema#integer> .\n_:g66580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93980 .\n_:g80700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0101> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g82200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84940 .\n_:g82200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt11> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0100> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94060 .\n_:g94040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc013> .\n_:g94080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61720 .\n_:g94080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp046> .\n_:g86700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91280 .\n_:g56220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0039> .\n_:g91180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94100 .\n_:g91180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te018> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84060 .\n_:g94120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi02> .\n_:g87280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88140 .\n_:g87280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ta038> .\n_:g94140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53080 .\n_:g94140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"native types\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g88940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64860 .\n_:g88940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr31> .\n_:g93980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65620 .\n_:g93980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tep14> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76680 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g89800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94160 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0016> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"context reset\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g79360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94220 .\n_:g94200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> .\n_:g52920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70280 .\n_:g52920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0033> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0127> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63220 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"basic\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94260 .\n_:g70200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc018> .\n_:g94280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94300 .\n_:g94280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> .\n_:g81880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92980 .\n_:g94320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin01> .\n_:g94340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66460 .\n_:g94340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#twf01> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92520 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g55060 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g55060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g93160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85300 .\n_:g93160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0043> .\n_:g83660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85200 .\n_:g83660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr16> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g75400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94380 .\n_:g75400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te098> .\n_:g88340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91500 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g78260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58700 .\n_:g78260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> .\n_:g83220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56000 .\n_:g83220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94400 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88400 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90740 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87980 .\n_:g94420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te117> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g57380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92700 .\n_:g57380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te105> .\n_:g58100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76480 .\n_:g58100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter15> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89920 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0112> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc024> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91040 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc021> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value mix\" .\n_:g83700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94440 .\n_:g83700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs07> .\n_:g86220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91680 .\n_:g86220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0046> .\n_:g80080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94460 .\n_:g80080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi11> .\n_:g93840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g69960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94480 .\n_:g69960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0020> .\n_:g63320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63320 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Framing\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g77520 .\n<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/\" .\n<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> .\n<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).\" .\n_:g87260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75200 .\n_:g87260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs04> .\n_:g83460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81200 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84720 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g94500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93200 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr30> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g94520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94520 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g86440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94540 .\n_:g86440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> .\n_:g88680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83000 .\n_:g88680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0009> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94560 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> <http://www.w3.org/2000/01/rdf-schema#comment> \"URL resolution follows RFC3986\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72020 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g79300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58820 .\n_:g79300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69840 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc010> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g86580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55960 .\n_:g86580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr34> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69500 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91740 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g72380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc020> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped value\" .\n_:g86740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60060 .\n_:g86740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> .\n_:g82940 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g68700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68960 .\n_:g68700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0119> .\n_:g94580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94600 .\n_:g94580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0013> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g71940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91140 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0032> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"@context reordering\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g90560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61900 .\n_:g90560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr22> .\n_:g94620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78560 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94640 .\n_:g79720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0013> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g94660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g52900 .\n_:g94660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0031> .\n_:g90980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94040 .\n_:g90980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc012> .\n_:g76560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86020 .\n_:g70180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0075> .\n_:g94680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82040 .\n_:g94680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter49> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72420 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81220 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g63340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59200 .\n_:g63340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0076> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90660 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g94640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94700 .\n_:g94640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0014> .\n_:g59380 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g59380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79560 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74160 .\n_:g94720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0016> .\n_:g86120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94740 .\n_:g86120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te005> .\n_:g94760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87380 .\n_:g94760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0093> .\n_:g85720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94780 .\n_:g85720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0081> .\n_:g93700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94800 .\n_:g93700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0011> .\n_:g94820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90080 .\n_:g94820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter33> .\n_:g55480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91360 .\n_:g55480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs02> .\n_:g94840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91800 .\n_:g94840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr29> .\n_:g66920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75520 .\n_:g66920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> .\n_:g54980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54980 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94860 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94880 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g90720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93680 .\n_:g91120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter51> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0059> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77160 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g84440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93720 .\n_:g84440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0012> .\n_:g64800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94900 .\n_:g64800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm004> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te085> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73760 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g81980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94920 .\n_:g81980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc012> .\n_:g94940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57900 .\n_:g94940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc031> .\n_:g57180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94960 .\n_:g57180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi03> .\n_:g64460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71020 .\n_:g64460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0129> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr16> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85540 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0037> <http://www.w3.org/2000/01/rdf-schema#comment> \"Flattening @reverse keeps @reverse\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g59420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92900 .\n_:g59420 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0038> .\n_:g94800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94580 .\n_:g94800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0012> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g61120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76540 .\n_:g61120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi02> .\n_:g67280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61660 .\n_:g67280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso11> .\n_:g94460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61980 .\n_:g94460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr01> .\n_:g85360 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> .\n_:g80920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86320 .\n_:g80920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89900 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g89960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95000 .\n_:g89960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95020 .\n_:g94540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr018> .\n_:g90960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95040 .\n_:g90960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs08> .\n_:g95060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75380 .\n_:g95060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te096> .\n_:g95080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90620 .\n_:g95080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr007> .\n_:g95100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77480 .\n_:g95100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli05> .\n_:g71840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90340 .\n_:g71840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn008> .\n_:g87780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56740 .\n_:g87780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin06> .\n_:g95120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95140 .\n_:g94380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te099> .\n_:g95160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82080 .\n_:g95160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr35> .\n_:g59320 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g89400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89400 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0004> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Lists\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g81920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67200 .\n_:g81920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm004> .\n_:g95000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79080 .\n_:g95000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm011> .\n_:g75180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62680 .\n_:g75180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter39> .\n_:g84140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95180 .\n_:g84140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0060> .\n_:g54360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91100 .\n_:g93120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs18> .\n_:g76740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86460 .\n_:g76740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te002> .\n_:g95200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84420 .\n_:g95200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0010> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68380 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g93780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92920 .\n_:g93780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp004> .\n_:g75500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93660 .\n_:g75500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te019> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79900 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g60620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g55620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95220 .\n_:g55620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm017> .\n_:g91220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95240 .\n_:g91220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0035> .\n_:g87320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73460 .\n_:g87320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0102> .\n_:g78140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53260 .\n_:g79640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm010> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93480 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g80720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80720 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g95260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90860 .\n_:g95260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc001> .\n_:g87360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0098> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93500 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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 []\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0023> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95280 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"List conversion\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90820 .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g95300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54100 .\n_:g95300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0012> .\n_:g95320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94760 .\n_:g95340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0092> .\n<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> .\n<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: ''\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr40> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g95360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54880 .\n_:g95360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi06> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g73060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn009> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89520 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g54040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95380 .\n_:g54040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> .\n_:g95400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91000 .\n_:g95400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp004> .\n_:g93180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93520 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g65340 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g88560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88720 .\n_:g88560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0105> .\n_:g82800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54020 .\n_:g82800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm013> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82520 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0065> <http://www.w3.org/2000/01/rdf-schema#comment> \"Value matching.\" .\n_:g85180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95100 .\n_:g54280 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g69040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli10> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95420 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g79180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g57120 .\n_:g79180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs02> .\n_:g95440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g54780 .\n_:g95440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tec01> .\n_:g87840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75440 .\n_:g87840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te012> .\n_:g64700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90880 .\n_:g64700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te129> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0038> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g95480 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g95480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71200 .\n_:g94900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm005> .\n_:g65820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55840 .\n_:g65820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter10> .\n_:g95500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95360 .\n_:g95500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi05> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95520 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g62000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83280 .\n_:g62000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr03> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr26> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95540 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95560 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94720 .\n_:g78180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0015> .\n_:g80800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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)\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0125> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81560 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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\" .\n_:g93540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92000 .\n_:g93540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0001> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs17> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78800 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95120 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g92660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95580 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g90480 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0026> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62360 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87100 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr13> <http://www.w3.org/2000/01/rdf-schema#comment> \"Override unprotected term.\" .\n_:g94260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93760 .\n_:g94260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc019> .\n_:g95620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73020 .\n_:g73740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te076> .\n_:g81720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95640 .\n_:g81720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0009> .\n_:g57420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g78540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65140 .\n_:g78540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te046> .\n_:g89100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95680 .\n_:g95660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> .\n_:g88440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94140 .\n_:g88440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr06> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82480 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g69180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85000 .\n_:g69180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0054> .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95700 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g86920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95720 .\n_:g86920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te036> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91820 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter21> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95740 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g63840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89300 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm011> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @id\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94520 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g95760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56140 .\n_:g95760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0001> .\n_:g92240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95200 .\n_:g92240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0009> .\n_:g82360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68920 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tem01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84900 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92860 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g71060 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g71060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71060 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g80880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95780 .\n_:g80880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te111> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g63720 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g95800 .\n<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/\" .\n<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> .\n<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).\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0006> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"alias keywords\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85520 .\n_:g73540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs21> .\n_:g59100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85820 .\n_:g59100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> .\n_:g77020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g56880 .\n_:g71040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0131> .\n_:g88660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g69540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g70540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59080 .\n_:g70540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc005> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81440 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g63600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g61880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83140 .\n_:g94480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0021> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95840 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g95020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95860 .\n_:g95020 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr019> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95880 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95900 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75980 .\n_:g66100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg001> .\n_:g94600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79760 .\n_:g94600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0014> .\n_:g95920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55040 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g95940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80600 .\n_:g95940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0030> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g63300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87140 .\n_:g63300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi09> .\n_:g68200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64500 .\n_:g68200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter22> .\n_:g81540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95960 .\n_:g81540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g74720 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g60800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95980 .\n_:g60800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0090> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61420 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g77800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94120 .\n_:g77800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi01> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92160 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g84080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74600 .\n_:g84080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi04> .\n_:g78220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93380 .\n_:g78220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0056> .\n_:g84260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77200 .\n_:g84260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te006> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74340 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped + graph container\" .\n_:g95240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g65500 .\n_:g95240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0036> .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g89840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96000 .\n_:g89840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter03> .\n_:g81500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58640 .\n_:g81500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0017> .\n_:g66240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g57220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72920 .\n_:g57220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter25> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Expansion\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g95760 .\n<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/\" .\n<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> .\n<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).\" .\n_:g65120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95340 .\n_:g74240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0091> .\n_:g61000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90160 .\n_:g61000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> .\n_:g77900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90520 .\n_:g77900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0072> .\n_:g96020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g56300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84300 .\n_:g56300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter30> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95060 .\n_:g66760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te095> .\n_:g89720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96040 .\n_:g89720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0063> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped base\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep15> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55920 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g96080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72200 .\n_:g96080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin02> .\n_:g95700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g94160 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> .\n_:g63680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88200 .\n_:g63680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr05> .\n_:g92380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92380 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g77740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp050> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93020 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g93220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g71880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77420 .\n_:g71880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt16> .\n_:g69140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95160 .\n_:g69140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr34> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64600 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli01> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g55440 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te121> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g79340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#requires> \"I18nDatatype\" .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g72580 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96100 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0066> <http://www.w3.org/2000/01/rdf-schema#comment> \"Value reference matching.\" .\n_:g78300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81400 .\n_:g94300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm012> .\n_:g91080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g94960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95500 .\n_:g94960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> .\n_:g72760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88040 .\n_:g72760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin04> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70020 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94200 .\n_:g78580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm007> .\n_:g87640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96120 .\n_:g87640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0018> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90000 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> \"container: @nest\" .\n_:g82820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88280 .\n_:g82820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te079> .\n_:g96140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71680 .\n_:g96140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt08> .\n_:g76820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87880 .\n_:g76820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi03> .\n_:g96160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79800 .\n_:g96160 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0066> .\n_:g79660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89860 .\n_:g79660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter09> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85800 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0115> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93400 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g72540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g92600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84660 .\n_:g95140 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te100> .\n_:g91300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66940 .\n_:g91300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr15> .\n_:g94920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92580 .\n_:g94920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> .\n_:g78040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95080 .\n_:g96200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr006> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g82380 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te010> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"native types\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g75040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62080 .\n_:g75040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten05> .\n_:g54080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96220 .\n_:g54080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt06> .\n_:g93940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69560 .\n_:g75780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> .\n_:g84540 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n_:g81600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g81600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra03> .\n_:g96240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63180 .\n_:g96240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0025> .\n_:g90320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94080 .\n_:g90320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp021> .\n_:g87160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96260 .\n_:g90360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp002> .\n_:g57320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tin05> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g69620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi12> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64140 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92540 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g96280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77120 .\n_:g54800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tem01> .\n_:g96300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g79100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87520 .\n_:g79100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter19> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0067> <http://www.w3.org/2000/01/rdf-schema#comment> \"List value matching.\" .\n_:g96320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72500 .\n_:g95680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0084> .\n_:g64520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90180 .\n_:g64520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0126> .\n_:g94060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74500 .\n_:g94060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc014> .\n_:g94740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93240 .\n_:g94740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te006> .\n_:g87040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91660 .\n_:g87040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter25> .\n_:g95880 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g95880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95880 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g94220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96340 .\n_:g94220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm009> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tp008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83500 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g77080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g73180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g56440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92040 .\n_:g56440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc017> .\n_:g58300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58860 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95260 .\n_:g96360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0110> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g74460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67900 .\n_:g74460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0036> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g65640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96080 .\n_:g65640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tin01> .\n_:g96380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93800 .\n_:g96380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter12> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84280 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0061> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g57560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g62940 .\n_:g57560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0004> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0042> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Reverse properties\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g56180 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59060 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm002> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @container: @id\" .\n_:g95900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g59180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96360 .\n_:g59180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0109> .\n_:g86260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74360 .\n_:g86260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0008> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94620 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn006> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n_:g56560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g81100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63240 .\n_:g96400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> .\n_:g71440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76320 .\n_:g71440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tp004> .\n_:g64120 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g64120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0082> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94240 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96240 .\n_:g92760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0024> .\n_:g74620 <https://w3c.github.io/json-ld-api/tests/vocab#extractAllScripts> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g74620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74620 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g95780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g86840 .\n_:g95780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> .\n_:g69100 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example/base/> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#te017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81800 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g66080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64300 .\n_:g66080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te086> .\n_:g67180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g77980 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten01> <http://www.w3.org/2000/01/rdf-schema#comment> \"container: @nest\" .\n_:g60200 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94280 .\n_:g96340 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm010> .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g61400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96440 .\n_:g87960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc031> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96460 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75600 .\n_:g95040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs09> .\n_:g96000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60640 .\n_:g96000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter04> .\n_:g95520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95400 .\n_:g96260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tp003> .\n_:g92420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0029> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86300 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin01> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g57940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70580 .\n_:g57940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0031> .\n_:g93620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87440 .\n_:g93620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tc001> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89420 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g93260 <https://w3c.github.io/json-ld-api/tests/vocab#redirectTo> <https://w3c.github.io/json-ld-api/tests/remote-doc/0001-in.jsonld> .\n_:g93260 <https://w3c.github.io/json-ld-api/tests/vocab#httpStatus> \"303\"^^<http://www.w3.org/2001/XMLSchema#integer> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc013> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g96480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94840 .\n_:g96480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr28> .\n_:g88360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90680 .\n_:g88360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr21> .\n_:g71360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93080 .\n_:g71360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te032> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92960 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"HTML\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries> _:g93560 .\n<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/\" .\n<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> .\n<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).\" .\n_:g55980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85500 .\n_:g55980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr36> .\n_:g84700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96320 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g54460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70640 .\n_:g54460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg007> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92080 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g93040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96500 .\n_:g93040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten02> .\n_:g60820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81960 .\n_:g60820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0001> .\n_:g96520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80420 .\n_:g96520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn004> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75020 .\n_:g96500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ten03> .\n_:g55140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g77640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89280 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin09> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53940 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g60900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81580 .\n_:g60900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra01> .\n_:g72000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g85900 .\n_:g72000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs03> .\n_:g94100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73420 .\n_:g94100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te019> .\n_:g83580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93420 .\n_:g83580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr013> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g62060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87020 .\n_:g62060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter23> .\n_:g68440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87060 .\n_:g68440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0006> .\n_:g76000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87700 .\n_:g76000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg003> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81780 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc007> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n_:g75460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90200 .\n_:g75460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#te014> .\n_:g90920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89660 .\n_:g94440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs08> .\n_:g80220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tp049> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g74060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g70040 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91240 .\n_:g79960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0021> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te118> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78700 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g90440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84160 .\n_:g90440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0045> .\n_:g63540 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g63540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g74200 .\n_:g96540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0071> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm022> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g78000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84920 .\n_:g82560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc027> .\n_:g82320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g91840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95300 .\n_:g91840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0011> .\n_:g77440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g71500 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tin04> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g55820 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g53740 .\n_:g96560 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm017> .\n_:g88580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81380 .\n_:g88580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0043> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g83440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63800 .\n_:g83440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0122> .\n_:g95380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96560 .\n_:g95380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tm016> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tl001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g81520 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g95580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84980 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92460 .\n_:g80620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0032> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tep13> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53200 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g84320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94820 .\n_:g84320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter32> .\n_:g72480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91420 .\n_:g72480 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc008> .\n_:g92740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89680 .\n_:g92740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0049> .\n_:g64420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96520 .\n_:g89760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tn003> .\n_:g95220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g61620 .\n_:g95220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> .\n_:g94700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81480 .\n_:g94700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0015> .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tjs10> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g87820 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g78840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88420 .\n_:g78840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0056> .\n_:g86940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64220 .\n_:g86940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter19> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80040 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g93740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84120 .\n_:g85380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0058> .\n_:g80320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g84460 .\n_:g80320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te071> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tra02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96580 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g83740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94420 .\n_:g83740 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te116> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84220 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm014> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @id\" .\n_:g61380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n_:g61380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ttn03> .\n_:g89620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96600 .\n_:g89620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr26> .\n_:g53980 <https://w3c.github.io/json-ld-api/tests/vocab#useRdfType> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g79040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96200 .\n_:g79040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr005> .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0034> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96180 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96620 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68780 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te093> <http://www.w3.org/2000/01/rdf-schema#comment> \"Use of @graph containers\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g65240 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g95840 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g66420 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g66420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g84860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96640 .\n_:g87400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc027> .\n_:g84960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73700 .\n_:g84960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt13> .\n_:g95280 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr25> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96660 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g83900 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tn010> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compaction using @nest\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g80580 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92780 .\n_:g96680 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te083> .\n_:g70960 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g70960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g80840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83520 .\n_:g80840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0018> .\n_:g96700 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g96700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96280 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @type\" .\n_:g88300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96720 .\n_:g88300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te081> .\n_:g75680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g72660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58220 .\n_:g72660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te068> .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc035> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88880 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0024> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"Multiple contexts\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0015> <http://www.w3.org/2000/01/rdf-schema#comment> \"Torture test.\" .\n_:g80960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92260 .\n_:g80960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0018> .\n_:g86980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89360 .\n_:g76860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn008> .\n_:g61920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89600 .\n_:g61920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr24> .\n_:g63700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr39> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75960 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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: ''\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te092> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n_:g96740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96740 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g95560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g60020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g75660 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm015> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi07> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g85600 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0106> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g86180 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g64960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94340 .\n_:g64960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ttn02> .\n_:g94880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g75080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93920 .\n_:g75080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs05> .\n_:g92800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96760 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96020 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g96660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g61260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g93900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84180 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g93320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g93860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71280 .\n_:g93860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs10> .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g60040 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc025> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped + graph container\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g72180 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g72240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94660 .\n_:g72240 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0030> .\n_:g88620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g90700 .\n_:g88620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#ts001> .\n_:g88600 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0083> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93340 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g53520 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tc016> <http://www.w3.org/2000/01/rdf-schema#comment> \"type-scoped vocab\" .\n_:g78080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76920 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tpi03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Compacting property-valued indexes.\" .\n_:g94360 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g94360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94360 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g78480 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm005> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @container: @id\" .\n_:g66400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g89120 .\n_:g66400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter13> .\n_:g89640 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g91560 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tjs14> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91860 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g74260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96460 <https://w3c.github.io/json-ld-api/tests/vocab#rdfDirection> \"i18n-datatype\" .\n_:g96460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96460 <https://w3c.github.io/json-ld-api/tests/vocab#normative> \"false\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g90300 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g90300 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82860 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g82860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80380 .\n_:g95980 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0091> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73440 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g55720 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g65000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79380 .\n_:g65000 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc008> .\n_:g73900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g94860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94680 .\n_:g53060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter48> .\n_:g83400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69160 .\n_:g83400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0052> .\n_:g55220 <https://w3c.github.io/json-ld-api/tests/vocab#produceGeneralizedRdf> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g55220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g76640 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm008> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96780 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62340 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96800 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ter44> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61480 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs22> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96700 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g94780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95660 .\n_:g94780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0082> .\n_:g85840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g75920 .\n_:g85840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc009> .\n_:g77000 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96300 .\n<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\" .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ten02> <http://www.w3.org/2000/01/rdf-schema#comment> \"Transparent Nesting\" .\n_:g84840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g80740 .\n_:g84840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli07> .\n_:g74440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g77300 .\n_:g74440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi12> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93140 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g70240 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g85580 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82020 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tli04> <http://www.w3.org/2000/01/rdf-schema#comment> \"List of lists\" .\n_:g79220 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n_:g87580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96820 .\n_:g87580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs15> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te102> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89000 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g68520 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68520 <https://w3c.github.io/json-ld-api/tests/vocab#processorFeature> \"HTML Script Extraction\" .\n_:g68080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83200 .\n_:g68080 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0110> .\n_:g86500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g82620 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0057> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91060 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g78160 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g78160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g68260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95440 .\n_:g68260 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tdi09> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g70140 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67360 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm010> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @language\" .\n_:g60960 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n_:g62980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g82060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96840 .\n_:g82060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter51> .\n_:g96640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67720 .\n_:g96640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc028> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tes01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95480 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g90640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g83560 .\n_:g90640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr011> .\n_:g96120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60100 .\n_:g96120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0019> .\n_:g96860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g78880 .\n_:g96860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm015> .\n_:g85640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g58140 .\n_:g85640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0116> .\n_:g62260 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g62260 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te002> <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name> \"basic\" .\n<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> .\n<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> .\n<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> .\n<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)\" .\n_:g94980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96420 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g53460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g87760 .\n_:g53460 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin04> .\n_:g92180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g59460 .\n_:g92180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi06> .\n_:g95740 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g95740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr017> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92300 .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0011> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g70980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g95720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91760 .\n_:g95720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te037> .\n_:g95800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93000 .\n_:g95800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0001> .\n_:g54920 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g54920 <https://w3c.github.io/json-ld-api/tests/vocab#omitGraph> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tex01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g88380 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94500 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn02> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93820 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#t0007> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g93960 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g80520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76240 .\n_:g80520 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc003> .\n_:g78660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96760 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g71660 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g76980 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g76980 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90140 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> <http://www.w3.org/2000/01/rdf-schema#comment> \"Test embedded graphs\" .\n_:g88320 <https://w3c.github.io/json-ld-api/tests/vocab#base> <http://example.org/> .\n_:g88320 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g76700 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82400 .\n_:g87540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tdi06> .\n_:g92360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94940 .\n_:g92360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc030> .\n_:g90100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#ttn01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g84400 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g70660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g64820 .\n_:g70660 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#tg009> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc019> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g66280 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96100 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g60220 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs23> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96880 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g96040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91960 .\n_:g96040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0064> .\n<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> .\n<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).\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr37> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g59040 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96400 .\n_:g96900 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi05> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tep03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g67540 .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g95960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96920 .\n_:g95960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0107> .\n_:g93460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g63780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g95940 .\n_:g63780 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0028> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89440 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#t0103> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95320 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91900 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/compact-manifest#tm020> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n_:g85740 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76580 .\n_:g95180 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0061> .\n_:g78460 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g87500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g69400 .\n_:g87500 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc022> .\n_:g71900 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g96060 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90500 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g55360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g88980 .\n_:g55360 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0012> .\n_:g83120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96900 .\n_:g83120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tdi04> .\n_:g96440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g81180 .\n_:g96440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tc032> .\n_:g96600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g73140 .\n_:g96600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr27> .\n_:g88540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79480 .\n_:g88540 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0097> .\n_:g89880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96380 .\n_:g89880 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#ter11> .\n_:g76440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g72220 .\n_:g76440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#t0028> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g79200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g71820 .\n_:g79200 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tn006> .\n_:g93600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g67020 .\n_:g93600 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tc015> .\n_:g77700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96160 .\n_:g77700 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0065> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g94320 .\n_:g96940 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter53> .\n_:g92400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96480 .\n_:g92400 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr27> .\n_:g96920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68060 .\n_:g96920 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0108> .\n_:g96880 <https://w3c.github.io/json-ld-api/tests/vocab#useJCS> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .\n_:g96880 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr08> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g92100 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n_:g72860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g95540 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g80660 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g90020 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g92560 <https://w3c.github.io/json-ld-api/tests/vocab#httpLink> \"<0011-context.jsonld>; rel=\\\"http://www.w3.org/ns/json-ld#context\\\"\" .\n_:g92560 <https://w3c.github.io/json-ld-api/tests/vocab#contentType> \"application/jldTest+json\" .\n_:g71160 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90420 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin06> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g92620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g79920 .\n_:g92620 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tso02> .\n_:g96780 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96620 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tn004> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n_:g85080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g74860 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96800 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tn003> <http://www.w3.org/2000/01/rdf-schema#comment> \"Expansion using @nest\" .\n<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> .\n<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.\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpr09> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g64380 .\n<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\" .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#tjs01> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95920 .\n<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> .\n<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> .\n<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> .\n<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).\" .\n_:g93060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92060 .\n_:g93060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tpi09> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g68580 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc008> <http://www.w3.org/2000/01/rdf-schema#comment> \"scoped context on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi04> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89560 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g96840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96940 .\n_:g96840 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#ter52> .\n_:g84100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55680 .\n_:g84100 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0094> .\n_:g95860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92020 .\n_:g95860 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr020> .\n_:g82440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63880 .\n_:g82440 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0113> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tc022> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g90600 .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr004> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g89200 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g69580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92340 .\n_:g69580 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0031> .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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)\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#t0099> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91580 .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g78120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96540 .\n_:g78120 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#t0070> .\n_:g96720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96680 .\n_:g96720 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te082> .\n_:g58120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.0\" .\n<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> .\n<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\" .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tf001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61840 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g96220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96140 .\n_:g96220 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tnt07> .\n_:g81320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63660 .\n_:g81320 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/compact-manifest#tpr03> .\n_:g56760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91600 .\n_:g56760 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tin08> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tp001> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95820 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58760 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tm018> <http://www.w3.org/2000/01/rdf-schema#comment> \"index on @type\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g61540 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/flatten-manifest#tin03> <http://www.w3.org/2000/01/rdf-schema#comment> \"Tests included blocks.\" .\n_:g93640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g70900 .\n_:g93640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/flatten-manifest#t0043> .\n_:g95640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g91620 .\n_:g95640 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#t0010> .\n_:g77380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g92840 .\n_:g77380 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te126> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/html-manifest#tr010> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g96740 .\n<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> .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g92940 <https://w3c.github.io/json-ld-api/tests/vocab#processingMode> \"json-ld-1.0\" .\n_:g81080 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0036> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g95620 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0028> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g91980 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n_:g87680 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g64060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g63280 .\n_:g64060 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tdi07> .\n_:g93300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g55340 .\n_:g93300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/fromRdf-manifest#t0010> .\n_:g66800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g60700 .\n_:g66800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/html-manifest#tr002> .\n_:g93360 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tso11> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g58360 .\n<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> .\n<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> .\n<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> .\n<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.\" .\n<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> .\n<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\" .\n<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\" .\n<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> .\n<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> .\n<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\" .\n_:g68800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g82740 .\n_:g68800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/remote-doc-manifest#tla01> .\n_:g85960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g76360 .\n_:g85960 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/expand-manifest#tpr11> .\n_:g62800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g96860 .\n_:g62800 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tm014> .\n_:g91400 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g89940 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/expand-manifest#tso05> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g94180 .\n<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> .\n<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> .\n<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> .\n<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)\" .\n<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> .\n<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\" .\n<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> .\n<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> .\n<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> .\n<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\" .\n_:g73300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g68740 .\n_:g73300 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-framing/tests/frame-manifest#t0035> .\n<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> .\n<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\" .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <https://w3c.github.io/json-ld-api/tests/vocab#option> _:g62540 .\n<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> .\n<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> .\n<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> .\n<https://w3c.github.io/json-ld-api/tests/toRdf-manifest#te112> <http://www.w3.org/2000/01/rdf-schema#comment> \"Pathological relative property IRIs\" .\n_:g96820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g93100 .\n_:g96820 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tjs16> .\n_:g63120 <https://w3c.github.io/json-ld-api/tests/vocab#specVersion> \"json-ld-1.1\" .\n_:g58040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:g66120 .\n_:g58040 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3c.github.io/json-ld-api/tests/toRdf-manifest#tli02> .\n"
  },
  {
    "path": "etc/schema.org.jsonld",
    "content": ""
  },
  {
    "path": "etc/template.haml",
    "content": "-# This template is used for generating a rollup EARL report. It expects to be\n-# called with a single _tests_ local with the following structure\n- require 'cgi'\n- require 'digest'\n\n!!! 5\n%html{prefix: \"earl: http://www.w3.org/ns/earl# doap: http://usefulinc.com/ns/doap# mf: http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\"}\n  - subjects = tests['testSubjects']\n  %head\n    %meta{\"http-equiv\" => \"Content-Type\", content: \"text/html;charset=utf-8\"}\n    %meta{name: \"viewport\", content: \"width=device-width, initial-scale=1.0\"}\n    %link{rel: \"stylesheet\", type: \"text/css\", href: \"https://www.w3.org/StyleSheets/TR/base\"}\n    %title\n      = tests['name']\n      Implementation Report\n    :css\n      span[property='dc:description'] { display: none; }\n      td.PASS { color: green; }\n      td.FAIL { color: red; }\n      table.report {\n        border-width: 1px;\n        border-spacing: 2px;\n        border-style: outset;\n        border-color: gray;\n        border-collapse: separate;\n        background-color: white;\n      }\n      table.report th {\n        border-width: 1px;\n        padding: 1px;\n        border-style: inset;\n        border-color: gray;\n        background-color: white;\n        -moz-border-radius: ;\n      }\n      table.report td {\n        border-width: 1px;\n        padding: 1px;\n        border-style: inset;\n        border-color: gray;\n        background-color: white;\n        -moz-border-radius: ;\n      }\n      tr.summary {font-weight: bold;}\n      td.passed-all {color: green;}\n      td.passed-most {color: darkorange;}\n      td.passed-some {color: red;}\n      td.passed-none {color: gray;}\n      em.rfc2119 { \n        text-transform: lowercase;\n        font-variant:   small-caps;\n        font-style:     normal;\n        color:          #900;\n      }\n      a.testlink {\n        color: inherit;\n        text-decoration: none;\n      }\n      a.testlink:hover {\n        text-decoration: underline;\n      }\n  %body\n    - subject_refs = {}\n    - tests['entries'].each {|m| m['title'] ||= m['rdfs:label'] || m['description']}\n    %section{about: tests['@id'], typeof: Array(tests['@type']).join(\" \")}\n      %h2\n        Ruby JSON-LD gem test results\n      %p\n        This document reports conformance for for\n        %a{property: \"doap:name\", href: \"https://www.w3.org/TR/json-ld11-api/\"}=\"JSON-LD 1.1 Processing Algorithms and API\"\n        %a{property: \"doap:name\", href: \"https://www.w3.org/TR/json-ld11-framing/\"}=\"JSON-LD 1.1 Framing\"\n      %dl\n        - subjects.each_with_index do |subject, index|\n          - subject_refs[subject['@id']] = \"subj_#{index}\"\n          %dt{id: subject_refs[subject['@id']]}\n            %a{href: subject['@id']}\n              %span{about: subject['@id'], property: \"doap:name\"}<= subject['name']\n          %dd{property: \"earl:testSubjects\", resource: subject['@id'], typeof: Array(subject['@type']).join(\" \")}\n            %dl\n              - if subject['doapDesc']\n                %dt= \"Description\"\n                %dd{property: \"doap:description\", lang: 'en'}<\n                  ~ CGI.escapeHTML subject['doapDesc'].to_s\n              - if subject['release']\n                - subject['release'] = subject['release'].first if subject['release'].is_a?(Array)\n                - subject['release']['revision'] = subject['release']['revision']['@value'] if subject['release']['revision'].is_a?(Hash)\n                %dt= \"Release\"\n                %dd{property: \"doap:release\"}<\n                  %span{property: \"doap:revision\"}<\n                    ~ CGI.escapeHTML subject['release']['revision'].to_s\n              - if subject['language']\n                %dt= \"Programming Language\"\n                %dd{property: \"doap:programming-language\"}<\n                  ~ CGI.escapeHTML subject['language'].to_s\n              - if subject['homepage']\n                %dt= \"Home Page\"\n                %dd{property: \"doap:homepage\"}\n                  %a{href: subject['homepage']}\n                    ~ CGI.escapeHTML subject['homepage'].to_s\n              - if subject['developer']\n                %dt= \"Developer\"\n                %dd{rel: \"doap:developer\"}\n                  - subject['developer'].each do |dev|\n                    %div{resource: dev['@id'], typeof: Array(dev['@type']).join(\" \")}\n                      - if dev.key?('@id')\n                        %a{href: dev['@id']}\n                          %span{property: \"foaf:name\"}<\n                            ~ CGI.escapeHTML dev['foaf:name'].to_s\n                      - else\n                        %span{property: \"foaf:name\"}<\n                          ~ CGI.escapeHTML dev['foaf:name'].to_s\n                      - if dev['foaf:homepage']\n                        %a{property: \"foaf:homepage\", href: dev['foaf:homepage']}\n                          ~ CGI.escapeHTML dev['foaf:homepage'].to_s\n              %dt\n                Test Suite Compliance\n              %dd\n                %table.report\n                  %tbody\n                    - tests['entries'].sort_by {|m| m['title'].to_s.downcase}.each do |manifest|\n                      - passed = manifest['entries'].select {|t| t['assertions'][index]['result']['outcome'] == 'earl:passed' }.length\n                      - total = manifest['entries'].length\n                      - pct = (passed * 100.0) / total\n                      - cls = (pct == 100.0 ? 'passed-all' : (pct >= 85.0) ? 'passed-most' : (pct == 0.0 ? 'passed-none' : 'passed-some'))\n                      %tr\n                        %td\n                          %a{href: \"##{manifest['rdfs:comment'].gsub(' ', '-')}\"}\n                            ~ manifest['rdfs:comment']\n                        %td{class: cls}\n                          = pct == 0.0 ? \"Untested\" : \"#{passed}/#{total} (#{'%.1f' % pct}%)\"\n    %section\n      %h2\n        Individual Test Results\n      - tests['entries'].sort_by {|m| m['title'].to_s.downcase}.each do |manifest|\n        - test_cases = manifest['entries']\n        %section{id: manifest['rdfs:comment'].gsub(' ', '-'), typeof: manifest['@type'].join(\" \"), resource: manifest['@id']}\n          %h2{property: \"rdfs:comment mf:name\"}<=(manifest['rdfs:comment'])\n          - Array(manifest['description']).each do |desc|\n            %p{property: \"rdfs:comment\"}<\n              ~ CGI.escapeHTML desc.to_s\n          %table.report\n            - skip_subject = {}\n            - passed_tests = []\n            %tr\n              %th\n                Test\n              - subjects.each_with_index do |subject, index|\n                - subject_refs[subject['@id']] = \"subj_#{index}\"\n                -# If subject is untested for every test in this manifest, skip it\n                - skip_subject[subject['@id']] = manifest['entries'].all? {|t| t['assertions'][index]['result']['outcome'] == 'earl:untested'}\n                - unless skip_subject[subject['@id']]\n                  %th\n                    %a{href: '#' + subject_refs[subject['@id']]}<=subject['name']\n            - test_cases.each do |test|\n              - test['title'] ||= test['rdfs:label']\n              - test['title'] = Array(test['title']).first\n              %tr{rel: \"mf:entries\", typeof: test['@type'].join(\" \"), resource: test['@id'], inlist: true}\n                %td\n                  = \"Test #{test['@id'].split(\"#\").last}: #{CGI.escapeHTML test['title'].to_s}\"\n                - test['assertions'].each_with_index do |assertion, ndx|\n                  - next if skip_subject[assertion['subject']]\n                  - pass_fail = assertion['result']['outcome'].split(':').last.upcase.sub(/(PASS|FAIL)ED$/, '\\1')\n                  - passed_tests[ndx] = (passed_tests[ndx] || 0) + (pass_fail == 'PASS' ? 1 : 0)\n                  %td{class: pass_fail, property: \"earl:assertions\", typeof: assertion['@type']}\n                    - if assertion['assertedBy']\n                      %link{property: \"earl:assertedBy\", href: assertion['assertedBy']}\n                    %link{property: \"earl:test\", href: assertion['test']}\n                    %link{property: \"earl:subject\", href: assertion['subject']}\n                    - if assertion['mode']\n                      %link{property: 'earl:mode', href: assertion['mode']}\n                    %span{property: \"earl:result\", typeof: assertion['result']['@type']}\n                      %span{property: 'earl:outcome', resource: assertion['result']['outcome']}\n                        = pass_fail\n            %tr.summary\n              %td\n                = \"Percentage passed out of #{manifest['entries'].length} Tests\"\n              - passed_tests.compact.each do |r|\n                - pct = (r * 100.0) / manifest['entries'].length\n                %td{class: (pct == 100.0 ? 'passed-all' : (pct >= 95.0 ? 'passed-most' : 'passed-some'))}\n                  = \"#{'%.1f' % pct}%\"\n    %section#appendix{property: \"earl:generatedBy\", resource: tests['generatedBy']['@id'], typeof: tests['generatedBy']['@type']}\n      %h2\n        Report Generation Software\n      - doap = tests['generatedBy']\n      - rel = doap['release']\n      %p\n        This report generated by\n        %span{property: \"doap:name\"}<\n          %a{href: tests['generatedBy']['@id']}<\n            = doap['name']\n        %meta{property: \"doap:shortdesc\", content: doap['shortdesc'], lang: 'en'}\n        %meta{property: \"doap:description\", content: doap['doapDesc'], lang: 'en'}\n        version\n        %span{property: \"doap:release\", resource: rel['@id'], typeof: 'doap:Version'}\n          %span{property: \"doap:revision\"}<=rel['revision']\n          %meta{property: \"doap:name\", content: rel['name']}\n          %meta{property: \"doap:created\", content: rel['created'], datatype: \"xsd:date\"}\n        an\n        %a{property: \"doap:license\", href: doap['license']}<=\"Unlicensed\"\n        %span{property: \"doap:programming-language\"}<=\"Ruby\"\n        application. More information is available at\n        %a{property: \"doap:homepage\", href: doap['homepage']}<=doap['homepage']\n        = \".\"\n"
  },
  {
    "path": "example-files/afs_prefix_flag.jsonld",
    "content": "{\n  \"@id\" : \"http://example/collection\",\n  \"http://example/p\" : [ \"book:ZZZ\" ],\n  \"book\" : [ \"book:YYY\" ],\n  \"@context\" : {\n    \"book\" : {\n      \"@id\" : \"http://onbetween.ch/3ms/cms#\",\n      \"@type\" : \"@id\"\n    }\n  }\n}"
  },
  {
    "path": "example-files/arnaud-lang.rb",
    "content": "#!/usr/bin/env ruby\nrequire 'json/ld'\n\ncontext = JSON.parse %({\n  \"@vocab\": \"http://schema.org/\" , \n  \"dc\": \"http://purl.org/dc/elements/1.1/\",\n  \"doag\": \"http://academy.dior.com/doag#\",\n  \"dior\": \"http://academy.dior.com/terms#\",\n  \"name\": {\n    \"@container\": \"@language\"\n  }\n})\n\nputs JSON::LD::API.compact(\"http://semio.dydra.com/arnaudlevy/dior-academy/seasons.jsonld?auth_token=rcelIAhAcmnYXv2A2rZ7\", context).to_json(JSON::LD::JSON_STATE)\n"
  },
  {
    "path": "example-files/bench.rb",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nrequire 'json/ld'\nrequire 'getoptlong'\n\ndef run(options)\n  parser_options = options[:parser_options].merge(standard_prefixes: true)\n  statement = RDF::Statement(RDF::URI(\"http://example/a\"), RDF::URI(\"http://example/b\"), RDF::Literal(\"c\"))\n  start = Time.new\n  num = 100_000\n  RDF::Writer.for(options[:output_format]).new(options[:output], parser_options) do |w|\n    (1..num).each do\n      w << statement\n    end\n  end\n  secs = Time.new - start\n  STDERR.puts \"\\nProcessed #{num} statements in #{secs} seconds @ #{num/secs} statements/second.\" unless options[:quiet]\nend\n\nparser_options = {\n  base:     nil,\n  progress: false,\n  validate: false,\n  stream:   false,\n  strict:   false,\n}\n\noptions = {\n  parser_options: parser_options,\n  output:         STDOUT,\n  output_format:  :jsonld,\n  input_format:   :jsonld,\n}\ninput = nil\n\nOPT_ARGS = [\n  [\"--output\", \"-o\",  GetoptLong::REQUIRED_ARGUMENT,\"Output to the specified file path\"],\n  [\"--stream\",        GetoptLong::NO_ARGUMENT,      \"Use Streaming reader/writer\"],\n  [\"--help\", \"-?\",    GetoptLong::NO_ARGUMENT,      \"This message\"]\n]\ndef usage\n  STDERR.puts %{Usage: #{$0} [options] file ...}\n  width = OPT_ARGS.map do |o|\n    l = o.first.length\n    l += o[1].length + 2 if o[1].is_a?(String)\n    l\n  end.max\n  OPT_ARGS.each do |o|\n    s = \"  %-*s  \" % [width, (o[1].is_a?(String) ? \"#{o[0,2].join(', ')}\" : o[0])]\n    s += o.last\n    STDERR.puts s\n  end\n  exit(1)\nend\n\n\nopts = GetoptLong.new(*OPT_ARGS.map {|o| o[0..-2]})\n\nopts.each do |opt, arg|\n  case opt\n  when '--output'       then options[:output] = File.open(arg, \"w\")\n  when '--quiet'        then options[:quiet] = true\n  when '--stream'       then parser_options[:stream] = true\n  when '--help'         then usage\n  end\nend\n\nrun(options)\n"
  },
  {
    "path": "example-files/bob-star.jsonld",
    "content": "{\n  \"@context\": {\n    \"@base\": \"http://example.org/\",\n    \"ex\": \"http://example.org/\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\": {\n    \"@id\": \"bob\",\n    \"foaf:age\": 23\n  },\n  \"ex:certainty\": 0.8\n}\n"
  },
  {
    "path": "example-files/bug_framing/bug_framing.rb",
    "content": "require 'json/ld'\nrequire 'rdf/ntriples'\n\ndef load_file(file)\n  RDF::Graph.new.tap do |g|\n    RDF::Reader.for(:content_type => \"text/plain\").open(file) do |reader|\n      g << reader.statements\n    end\n  end\nend\n\ninput = JSON.parse(load_file(File.expand_path('../input.nt', __FILE__)).dump(:jsonld))\n\nbuild_framing = {\n  \"@context\" => {\n    \"uuid\" => \"http://www.domain.com/profile/client/resource/\",\n    \"pmcore\" => \"http://www.domain.com/ontology/pmcore/1.0#\",\n    \"pmaudiovisual\" => \"http://www.domain.com/ontology/pmaudiovisual/1.0#\",\n    \"pmadditionalsubjects\" => \"http://www.domain.com/ontology/pmadditionalsubjects/\",\n    \"pmmodel\" => \"http://www.domain.com/ontology/pmmodel/1.0#\",\n    \"kb\" => \"http://www.domain.com/profile/client/kb/\",\n    \"rdfs\" => \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"dc\" => \"http://purl.org/dc/elements/1.1/\",\n    \"client\" => \"http://www.domain.com/ontology/client/1.0#\",\n    \"freebase\" => \"http://rdf.freebase.com/ns/\",\n    \"cents\" => \"http://www.domain.com/profile/1000cents/resource/\",\n    \"owl\" => \"http://www.w3.org/2002/07/owl#\",\n    \"skos\" => \"http://www.w3.org/2008/05/skos#\"\n  },\n  \"@id\" => \"kb:148F9D55-482A-4A96-B06F-16E05D44AA15\",\n  \"@embed\" => \"@last\"\n}\n\nputs JSON::LD::API.frame(input, build_framing).to_json(JSON::LD::JSON_STATE)\n"
  },
  {
    "path": "example-files/bug_framing/input.nt",
    "content": "<http://rdf.freebase.com/ns/m.03lzfx> <http://www.w3.org/2000/01/rdf-schema#label> \"Bataille de Liège\"@fr .\n<http://rdf.freebase.com/ns/m.03lzfx> <http://www.w3.org/2000/01/rdf-schema#label> \"Battle of Liège\"@en .\n<http://rdf.freebase.com/ns/m.03lzfx> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/50094f7a625e8caf4622e234889f066aaa1b250a\" .\n<http://rdf.freebase.com/ns/m.03lzfx> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://www.domain.com/profile/client/kb/40350292-4496-4AC7-98BA-84F7A86FDD4E> <http://www.w3.org/2000/01/rdf-schema#label> \"Justine Henin\"@fr .\n<http://www.domain.com/profile/client/kb/40350292-4496-4AC7-98BA-84F7A86FDD4E> <http://www.w3.org/2000/01/rdf-schema#label> \"Justine Henin\"@en .\n<http://www.domain.com/profile/client/kb/40350292-4496-4AC7-98BA-84F7A86FDD4E> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/1ce82860884dfe5dab93e44d266d8f07854963f5\" .\n<http://www.domain.com/profile/client/kb/40350292-4496-4AC7-98BA-84F7A86FDD4E> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://www.domain.com/profile/client/kb/40350292-4496-4AC7-98BA-84F7A86FDD4E> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.w3.org/2000/01/rdf-schema#label> \"2011 Liège attack\"@en .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.w3.org/2000/01/rdf-schema#label> \"Nordine Amrani\"@en .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.w3.org/2000/01/rdf-schema#label> \"Nordine Amrani\"@fr .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.w3.org/2000/01/rdf-schema#label> \"Tuerie de Liège\"@fr .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/9c8759b0d946a6c1f00a6219708b7dc8305e54e2\" .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://rdf.freebase.com/ns/m.0hr5z7z> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://www.domain.com/profile/client/kb/1566189C-2FC1-4762-B628-1DC9812B170F> <http://www.w3.org/2000/01/rdf-schema#label> \"Sclessin\"@fr .\n<http://www.domain.com/profile/client/kb/1566189C-2FC1-4762-B628-1DC9812B170F> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Accessible> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Entity> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Agent> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/Agent> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Agent> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmrights/1.0#Agent> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmrights/1.0#PMRightsObject> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmmodel/1.0#PMObject> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Subject> .\n<http://www.domain.com/profile/client/kb/client> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#PMCoreObject> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Accessible> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Entity> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Agent> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/terms/Agent> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Agent> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmrights/1.0#Agent> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmrights/1.0#PMRightsObject> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmmodel/1.0#PMObject> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Subject> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#NamedIndividual> .\n<http://www.domain.com/profile/pmcore/kb/Agent_Freebase> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#PMCoreObject> .\n<http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> <http://www.w3.org/2000/01/rdf-schema#label> \"Belgium\"@en .\n<http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> <http://www.w3.org/2000/01/rdf-schema#label> \"Belgique\"@fr .\n<http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/781ad959270d5a0d78599c6a5515c2997cf629a7\" .\n<http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://rdf.freebase.com/ns/m.0krxss> <http://www.w3.org/2000/01/rdf-schema#label> \"Didier Reynders\"@en .\n<http://rdf.freebase.com/ns/m.0krxss> <http://www.w3.org/2000/01/rdf-schema#label> \"Didier Reynders\"@fr .\n<http://rdf.freebase.com/ns/m.0krxss> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/631b2349398635ca2e7385cad6c12f0ac3a83a26\" .\n<http://rdf.freebase.com/ns/m.0krxss> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://rdf.freebase.com/ns/m.0krxss> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://www.domain.com/profile/client/kb/D8043EB6-D3DD-4963-9555-8EE0599C8F22> <http://www.w3.org/2000/01/rdf-schema#label> \"Université de Liège\"@fr .\n<http://www.domain.com/profile/client/kb/D8043EB6-D3DD-4963-9555-8EE0599C8F22> <http://www.w3.org/2000/01/rdf-schema#label> \"University of Liège\"@en .\n<http://www.domain.com/profile/client/kb/D8043EB6-D3DD-4963-9555-8EE0599C8F22> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/38fe923f650278a391c23decf211e3588c6ec2a8\" .\n<http://www.domain.com/profile/client/kb/D8043EB6-D3DD-4963-9555-8EE0599C8F22> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://www.domain.com/profile/client/kb/D8043EB6-D3DD-4963-9555-8EE0599C8F22> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://rdf.freebase.com/ns/m.0154j> <http://www.w3.org/2000/01/rdf-schema#label> \"Belgium\"@en .\n<http://rdf.freebase.com/ns/m.0154j> <http://www.w3.org/2000/01/rdf-schema#label> \"Belgique\"@fr .\n<http://rdf.freebase.com/ns/m.0154j> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/781ad959270d5a0d78599c6a5515c2997cf629a7\" .\n<http://rdf.freebase.com/ns/m.0154j> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://rdf.freebase.com/ns/m.0154j> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> <http://www.w3.org/2000/01/rdf-schema#label> \"Province de Liège\"@fr .\n<http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> <http://www.w3.org/2000/01/rdf-schema#label> \"Liège\"@en .\n<http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> <http://www.domain.com/ontology/pmcore/1.0#thumbnail> \"http://freebase.cdn.perfect-memory.com/a442530dc40ea694c5fad7bc94f5a976d2e27dbb\" .\n<http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/client/kb/client> .\n<http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> <http://www.domain.com/ontology/pmcore/1.0#hasInfoSource> <http://www.domain.com/profile/pmcore/kb/Agent_Freebase> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Place> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/client/1.0#Thesaurus> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Accessible> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Entity> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/location.location> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/base.type_ontology.inanimate> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/film.film_location> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/location.dated_location> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#PMCoreObject> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Settlement> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/periodicals.newspaper_circulation_area> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/base.type_ontology.abstract> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/sports.sports_team_location> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/location.citytown> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Subject> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://dbpedia.org/ontology/Place> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/base.type_ontology.agent> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmcore/1.0#Settlement> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/location.statistical_region> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.domain.com/ontology/pmmodel/1.0#PMObject> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://rdf.freebase.com/ns/common.topic> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/2000/01/rdf-schema#label> \"Liège\"@fr .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://www.w3.org/2000/01/rdf-schema#label> \"Liège\"@en .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://rdf.freebase.com/ns/location.location.containedby> <http://www.domain.com/profile/client/kb/0A786E68-1B16-405C-9EA3-B6221619E832> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://rdf.freebase.com/ns/location.location.containedby> <http://rdf.freebase.com/ns/m.0154j> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://rdf.freebase.com/ns/location.location.containedby.other> <http://rdf.freebase.com/ns/m.0154j> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://rdf.freebase.com/ns/location.location.containedby> <http://www.domain.com/profile/client/kb/779C782A-7142-4906-9B06-067D24FA81B6> .\n<http://www.domain.com/profile/client/kb/148F9D55-482A-4A96-B06F-16E05D44AA15> <http://rdf.freebase.com/ns/location.location.containedby> <http://rdf.freebase.com/ns/m.013d56> ."
  },
  {
    "path": "example-files/bug_framing/output.jsonld",
    "content": "{\n  \"@context\": {\n    \"uuid\": \"http://www.domain.com/profile/client/resource/\",\n    \"pmcore\": \"http://www.domain.com/ontology/pmcore/1.0#\",\n    \"pmaudiovisual\": \"http://www.domain.com/ontology/pmaudiovisual/1.0#\",\n    \"pmadditionalsubjects\": \"http://www.domain.com/ontology/pmadditionalsubjects/\",\n    \"pmmodel\": \"http://www.domain.com/ontology/pmmodel/1.0#\",\n    \"kb\": \"http://www.domain.com/profile/client/kb/\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"dc\": \"http://purl.org/dc/elements/1.1/\",\n    \"client\": \"http://www.domain.com/ontology/client/1.0#\",\n    \"freebase\": \"http://rdf.freebase.com/ns/\",\n    \"cents\": \"http://www.domain.com/profile/1000cents/resource/\",\n    \"owl\": \"http://www.w3.org/2002/07/owl#\",\n    \"skos\": \"http://www.w3.org/2008/05/skos#\"\n  },\n  \"@graph\": [\n    {\n      \"@id\": \"kb:148F9D55-482A-4A96-B06F-16E05D44AA15\",\n      \"@type\": [\n        \"freebase:periodicals.newspaper_circulation_area\",\n        \"client:Thesaurus\",\n        \"pmmodel:PMObject\",\n        \"pmcore:Entity\",\n        \"freebase:location.dated_location\",\n        \"freebase:common.topic\",\n        \"pmcore:Place\",\n        \"freebase:location.citytown\",\n        \"pmcore:Accessible\",\n        \"freebase:location.location\",\n        \"freebase:sports.sports_team_location\",\n        \"freebase:base.type_ontology.abstract\",\n        \"http://dbpedia.org/ontology/Settlement\",\n        \"pmcore:PMCoreObject\",\n        \"freebase:film.film_location\",\n        \"freebase:location.statistical_region\",\n        \"http://dbpedia.org/ontology/Place\",\n        \"freebase:base.type_ontology.inanimate\",\n        \"freebase:base.type_ontology.agent\",\n        \"pmcore:Settlement\",\n        \"pmcore:Subject\"\n      ],\n      \"freebase:location.location.containedby\": [\n        {\n          \"@id\": \"kb:779C782A-7142-4906-9B06-067D24FA81B6\",\n          \"pmcore:hasInfoSource\": [\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\",\n                \"owl:NamedIndividual\"\n              ]\n            },\n            {\n              \"@id\": \"kb:client\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\"\n              ]\n            },\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\"\n            },\n            {\n              \"@id\": \"kb:client\"\n            }\n          ],\n          \"pmcore:thumbnail\": \"http://freebase.cdn.perfect-memory.com/a442530dc40ea694c5fad7bc94f5a976d2e27dbb\",\n          \"rdfs:label\": [\n            {\n              \"@value\": \"Province de Liège\",\n              \"@language\": \"fr\"\n            },\n            {\n              \"@value\": \"Liège\",\n              \"@language\": \"en\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"freebase:m.0154j\",\n          \"pmcore:hasInfoSource\": [\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\",\n                \"owl:NamedIndividual\"\n              ]\n            },\n            {\n              \"@id\": \"kb:client\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\"\n              ]\n            },\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\"\n            },\n            {\n              \"@id\": \"kb:client\"\n            }\n          ],\n          \"pmcore:thumbnail\": \"http://freebase.cdn.perfect-memory.com/781ad959270d5a0d78599c6a5515c2997cf629a7\",\n          \"rdfs:label\": [\n            {\n              \"@value\": \"Belgique\",\n              \"@language\": \"fr\"\n            },\n            {\n              \"@value\": \"Belgium\",\n              \"@language\": \"en\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"kb:0A786E68-1B16-405C-9EA3-B6221619E832\",\n          \"pmcore:hasInfoSource\": [\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\",\n                \"owl:NamedIndividual\"\n              ]\n            },\n            {\n              \"@id\": \"kb:client\",\n              \"@type\": [\n                \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n                \"http://purl.org/dc/terms/Agent\",\n                \"pmmodel:PMObject\",\n                \"pmcore:Entity\",\n                \"http://xmlns.com/foaf/0.1/Agent\",\n                \"pmcore:Accessible\",\n                \"pmcore:Agent\",\n                \"pmcore:Subject\",\n                \"pmcore:PMCoreObject\",\n                \"http://www.domain.com/ontology/pmrights/1.0#Agent\"\n              ]\n            },\n            {\n              \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\"\n            },\n            {\n              \"@id\": \"kb:client\"\n            }\n          ],\n          \"pmcore:thumbnail\": \"http://freebase.cdn.perfect-memory.com/781ad959270d5a0d78599c6a5515c2997cf629a7\",\n          \"rdfs:label\": [\n            {\n              \"@value\": \"Belgique\",\n              \"@language\": \"fr\"\n            },\n            {\n              \"@value\": \"Belgium\",\n              \"@language\": \"en\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"freebase:m.013d56\"\n        },\n        {\n          \"@id\": \"freebase:m.0154j\"\n        }\n      ],\n      \"freebase:location.location.containedby.other\": {\n        \"@id\": \"freebase:m.0154j\",\n        \"pmcore:hasInfoSource\": [\n          {\n            \"@id\": \"http://www.domain.com/profile/pmcore/kb/Agent_Freebase\",\n            \"@type\": [\n              \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n              \"http://purl.org/dc/terms/Agent\",\n              \"pmmodel:PMObject\",\n              \"pmcore:Entity\",\n              \"http://xmlns.com/foaf/0.1/Agent\",\n              \"pmcore:Accessible\",\n              \"pmcore:Agent\",\n              \"pmcore:Subject\",\n              \"pmcore:PMCoreObject\",\n              \"http://www.domain.com/ontology/pmrights/1.0#Agent\",\n              \"owl:NamedIndividual\"\n            ]\n          },\n          {\n            \"@id\": \"kb:client\",\n            \"@type\": [\n              \"http://www.domain.com/ontology/pmrights/1.0#PMRightsObject\",\n              \"http://purl.org/dc/terms/Agent\",\n              \"pmmodel:PMObject\",\n              \"pmcore:Entity\",\n              \"http://xmlns.com/foaf/0.1/Agent\",\n              \"pmcore:Accessible\",\n              \"pmcore:Agent\",\n              \"pmcore:Subject\",\n              \"pmcore:PMCoreObject\",\n              \"http://www.domain.com/ontology/pmrights/1.0#Agent\"\n            ]\n          }\n        ],\n        \"pmcore:thumbnail\": \"http://freebase.cdn.perfect-memory.com/781ad959270d5a0d78599c6a5515c2997cf629a7\",\n        \"rdfs:label\": [\n          {\n            \"@value\": \"Belgique\",\n            \"@language\": \"fr\"\n          },\n          {\n            \"@value\": \"Belgium\",\n            \"@language\": \"en\"\n          }\n        ]\n      },\n      \"rdfs:label\": [\n        {\n          \"@value\": \"Liège\",\n          \"@language\": \"fr\"\n        },\n        {\n          \"@value\": \"Liège\",\n          \"@language\": \"en\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/c14n.json",
    "content": "{\n \"numbers\": [333333333.33333329, 1E30, 4.50,\n             2e-3, 0.000000000000000000000000001],\n \"string\": \"\\u20ac$\\u000F\\u000aA'\\u0042\\u0022\\u005c\\\\\\\"\\/\",\n \"literals\": [null, true, false]\n}\n"
  },
  {
    "path": "example-files/cog_.jsonld",
    "content": "{\n  \"http://rdfs.org/sioc/ns#content\": {\n    \"@value\": \"foo\",\n    \"@type\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral\"\n  }\n}"
  },
  {
    "path": "example-files/earl-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\": \"http://www.w3.org/ns/earl#\",\n    \"foaf:homepage\": {\n      \"@type\": \"@id\"\n    },\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"doap\": \"http://usefulinc.com/ns/doap#\",\n    \"earl\": \"http://www.w3.org/ns/earl#\",\n    \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"assertedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"assertions\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"bibRef\": {\n      \"@id\": \"dc:bibliographicCitation\"\n    },\n    \"created\": {\n      \"@id\": \"doap:created\",\n      \"@type\": \"xsd:date\"\n    },\n    \"description\": {\n      \"@id\": \"rdfs:comment\",\n      \"@language\": \"en\"\n    },\n    \"developer\": {\n      \"@id\": \"doap:developer\",\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"doapDesc\": {\n      \"@id\": \"doap:description\",\n      \"@language\": \"en\"\n    },\n    \"generatedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"homepage\": {\n      \"@id\": \"doap:homepage\",\n      \"@type\": \"@id\"\n    },\n    \"language\": {\n      \"@id\": \"doap:programming-language\"\n    },\n    \"license\": {\n      \"@id\": \"doap:license\",\n      \"@type\": \"@id\"\n    },\n    \"mode\": {\n      \"@type\": \"@id\"\n    },\n    \"name\": {\n      \"@id\": \"doap:name\"\n    },\n    \"outcome\": {\n      \"@type\": \"@id\"\n    },\n    \"release\": {\n      \"@id\": \"doap:release\",\n      \"@type\": \"@id\"\n    },\n    \"revision\": {\n      \"@id\": \"doap:revision\"\n    },\n    \"shortdesc\": {\n      \"@id\": \"doap:shortdesc\",\n      \"@language\": \"en\"\n    },\n    \"subject\": {\n      \"@type\": \"@id\"\n    },\n    \"test\": {\n      \"@type\": \"@id\"\n    },\n    \"testAction\": {\n      \"@id\": \"mf:action\",\n      \"@type\": \"@id\"\n    },\n    \"testResult\": {\n      \"@id\": \"mf:result\",\n      \"@type\": \"@id\"\n    },\n    \"title\": {\n      \"@id\": \"mf:name\"\n    },\n    \"entries\": {\n      \"@id\": \"mf:entries\",\n      \"@type\": \"@id\",\n      \"@container\": \"@list\"\n    },\n    \"testSubjects\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"xsd\": {\n      \"@id\": \"http://www.w3.org/2001/XMLSchema#\"\n    }\n  },\n  \"@requireAll\": true,\n  \"@embed\": \"@always\",\n  \"assertions\": {\n  },\n  \"bibRef\": {\n  },\n  \"generatedBy\": {\n    \"@embed\": \"@always\",\n    \"developer\": {\n      \"@embed\": \"@always\"\n    },\n    \"release\": {\n      \"@embed\": \"@always\"\n    }\n  },\n  \"testSubjects\": {\n    \"@embed\": \"@always\",\n    \"@type\": \"earl:TestSubject\",\n    \"developer\": {\n      \"@embed\": \"@always\"\n    },\n    \"homepage\": {\n      \"@embed\": \"@never\"\n    }\n  },\n  \"entries\": [\n    {\n      \"@embed\": \"@always\",\n      \"@type\": \"mf:Manifest\",\n      \"entries\": [\n        {\n          \"@embed\": \"@always\",\n          \"@type\": \"earl:TestCase\",\n          \"assertions\": {\n            \"@embed\": \"@always\",\n            \"@type\": \"earl:Assertion\",\n            \"assertedBy\": {\n              \"@embed\": \"@never\"\n            },\n            \"result\": {\n              \"@embed\": \"@always\",\n              \"@type\": \"earl:TestResult\"\n            },\n            \"subject\": {\n              \"@embed\": \"@never\"\n            }\n          }\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "example-files/example-120.html",
    "content": "    <p>Data describing Dave</p>\n    <script type=\"application/ld+json\">\n    {\n      \"@context\": {\n        \"@vocab\": \"http://schema.org/\"\n      },\n      \"@id\": \"https://digitalbazaar.com/author/dlongley/\",\n      \"@type\": \"Person\",\n      \"name\": \"Dave Longley\"\n    }\n    </script>\n\n    <p>Data describing Gregg</p>\n    <script type=\"application/ld+json\">\n    {\n      \"@context\": {\n        \"@vocab\": \"http://schema.org/\"\n      },\n      \"@id\": \"http://greggkellogg.net/foaf#me\",\n      \"@type\": \"Person\",\n      \"name\": \"Gregg Kellogg\"\n    }\n    </script>\n"
  },
  {
    "path": "example-files/foaf.json",
    "content": "{\n  \"@context\": {\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"foaf:birthday\": {\"@type\": \"xsd:date\"}\n  },\n  \"@id\": \"http://greggkellogg.net/foaf#me\",\n  \"@type\": \"foaf:Person\",\n  \"foaf:name\": \"Gregg Kellogg\",\n  \"foaf:birthday\": \"1957-02-27\",\n  \"foaf:homepage\": \"http://greggkellogg.net/\"\n}\n"
  },
  {
    "path": "example-files/frame-title-frame.jsonld",
    "content": "{\n  \"@context\": [\n    {\n      \"@language\": \"en\"\n    },\n    {\n      \"title\": {\n        \"@id\": \"dct:title\"\n      },\n      \"titles\": {\n        \"@id\": \"dct:title\",\n        \"@container\": \"@language\"\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/frame-title.jsonld",
    "content": "{\n  \"@context\": [\n    {\n      \"@language\": \"en\"\n    },\n    {\n      \"title\": {\n        \"@id\": \"dct:title\"\n      },\n      \"titles\": {\n        \"@id\": \"dct:title\",\n        \"@container\": \"@language\"\n      }\n    }\n  ],\n  \"title\": \"myTitle\"\n}\n"
  },
  {
    "path": "example-files/framing-27-1.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"proof\": {\"@id\": \"ex:proof\", \"@container\": \"@graph\"}\n  },\n  \"proof\": {\n    \"@id\": \"ex:foo1\",\n    \"@type\": \"ex:Foo\",\n    \"@included\": {\n      \"@id\": \"ex:foo2\",\n      \"@type\": \"ex:Foo\"\n    }\n  }\n}\n"
  },
  {
    "path": "example-files/framing-27-2.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"proof\": {\"@id\": \"ex:proof\", \"@container\": \"@graph\"}\n  },\n  \"proof\": {\n    \"@included\": [{\n      \"@id\": \"ex:foo1\",\n      \"@type\": \"ex:Foo\"\n    }, {\n      \"@id\": \"ex:foo2\",\n      \"@type\": \"ex:Foo\"\n    }]\n  }\n}"
  },
  {
    "path": "example-files/gm.ttl",
    "content": "@prefix dc: <http://purl.org/dc/terms/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix senet: <https://senet.org/ns#> .\n\n<https://senet.org/gm> a <http://vocab.org/frbr/core#Work>;\n   dc:title \"ãƒªã‚ºãƒ å¤©å›½\"@ja,\n     \"Rhythm Paradise\"@en;\n   <https://senet.org/ns#unofficialTitle> \"Rhythm Tengoku\"@en;\n   <https://senet.org/ns#urlkey> \"rhythm-tengoku\"^^xsd:string .\n"
  },
  {
    "path": "example-files/graph-container-framing-expanded.jsonld",
    "content": "[\n  {\n    \"ex:claim\": [\n      {\n        \"@graph\": [\n          {\n            \"@id\": \"ex:1\",\n            \"https://example.com#test\": [\n              {\n                \"@value\": \"foo\"\n              }\n            ]\n          }\n        ]\n      }\n    ]\n  }\n]\n"
  },
  {
    "path": "example-files/graph-container-framing-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"@vocab\": \"https://example.com#\",\n    \"ex\": \"http://example.org/\",\n    \"claim\": {\n      \"@id\": \"ex:claim\",\n      \"@container\": \"@graph\"\n    },\n    \"id\": \"@id\"\n  },\n  \"claim\": {}\n}\n"
  },
  {
    "path": "example-files/graph-container-framing-framed.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"@vocab\": \"https://example.com#\",\n    \"ex\": \"http://example.org/\",\n    \"claim\": {\n      \"@id\": \"ex:claim\",\n      \"@container\": \"@graph\"\n    },\n    \"id\": \"@id\"\n  },\n  \"@graph\": [\n    {\n      \"claim\": {\n        \"@graph\": {\n          \"id\": \"ex:1\",\n          \"test\": \"foo\"\n        }\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/graph-container-framing-in.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"@vocab\": \"https://example.com#\",\n    \"ex\": \"http://example.org/\",\n    \"claim\": {\n      \"@id\": \"ex:claim\",\n      \"@container\": \"@graph\"\n    },\n    \"id\": \"@id\"\n  },\n  \"claim\": {\n    \"id\": \"ex:1\",\n    \"test\": \"foo\"\n  }\n}\n"
  },
  {
    "path": "example-files/identityProfile.jsonld",
    "content": "{\n  \"@context\": \"...\",\n  \"id\": \"person1\",\n  \"type\": \"IdentityProfile\",\n  \"credential\": [{\n    \"@graph\": {\n      \"id\": \"cred1\",\n      \"claim\": {\n        \"id\": \"person1\",\n        \"ageOver\": 21\n      },\n      \"signature\": { ... }\n    }, {\n    \"@graph\": {    \n      \"id\": \"cred2\",\n      \"claim\": {\n        \"id\": \"person1\",\n        \"passport\": { ... },\n      },\n      \"signature\": { ... }\n    }\n  }]\n}\n"
  },
  {
    "path": "example-files/identityProfileFrame.jsonld",
    "content": "{\n  \"@context\": {\"@vocab\": \"http://example.org/\"},\n  \"id\": \"person1\",\n  \"type\": \"IdentityProfile\",\n  \"credential\": [{\n    \"@graph\": {\n      \"id\": \"cred1\",\n      \"claim\": {\n        \"id\": \"person1\",\n        \"ageOver\": 21\n      },\n      \"signature\": { ... }\n    }, {\n    \"@graph\": {    \n      \"id\": \"cred2\",\n      \"claim\": {\n        \"id\": \"person1\",\n        \"passport\": { ... },\n      },\n      \"signature\": { ... }\n    }\n  }]\n}\n"
  },
  {
    "path": "example-files/implicit-named-graph-example.jsonld",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1,\n    \"generatedAt\": {\n      \"@id\": \"http://www.w3.org/ns/prov#generatedAtTime\",\n      \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"\n    },\n    \"Person\": \"http://xmlns.com/foaf/0.1/Person\",\n    \"name\": \"http://xmlns.com/foaf/0.1/name\",\n    \"knows\": \"http://xmlns.com/foaf/0.1/knows\",\n    \"claim\": {\n     \"@id\": \"https://w3id.org/credentials#claim\",\n      \"@container\": \"@graph\"\n    }\n  },\n  \"generatedAt\": \"2012-04-09\",\n  \"claim\": [\n    {\n      \"@id\": \"http://manu.sporny.org/about#manu\",\n      \"@type\": \"Person\",\n      \"name\": \"Manu Sporny\",\n      \"knows\": \"http://greggkellogg.net/foaf#me\"\n    }, {\n      \"@id\": \"http://greggkellogg.net/foaf#me\",\n      \"@type\": \"Person\",\n      \"name\": \"Gregg Kellogg\",\n      \"knows\": \"http://manu.sporny.org/about#manu\"\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/inverted-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\": \"http://example.org/\",\n    \"within\": {\"@reverse\": \"contains\"}\n  },\n  \"@type\": \"Chapter\",\n  \"within\": {\n    \"@type\": \"Book\",\n    \"within\": {\n      \"@type\": \"Library\"\n    }\n  }\n}\n"
  },
  {
    "path": "example-files/iri-resolution.jsonld",
    "content": "[\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s001\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s002\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s003\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s004\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s005\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s006\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s007\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s008\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s009\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s010\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s011\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s012\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s013\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s014\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s015\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s016\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s017\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s018\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s019\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s020\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s021\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s022\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s023\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s024\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s025\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s026\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s027\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s028\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s029\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s030\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s031\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s032\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s033\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s034\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s035\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s036\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s037\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s038\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s039\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s040\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s041\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s042\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/d/\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s043\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s044\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s045\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s046\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s047\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s048\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s049\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s050\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s051\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s052\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s053\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s054\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s055\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s056\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s057\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s058\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s059\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s060\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s061\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s062\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s063\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s064\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s065\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/d/\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s066\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s067\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s068\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s069\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s070\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s071\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s072\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s073\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s074\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s075\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s076\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s077\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s078\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s079\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s080\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s081\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s082\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s083\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s084\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/./d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s085\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s086\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s087\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s088\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s089\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s090\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s091\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s092\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s093\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s094\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s095\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s096\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s097\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s098\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s099\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s100\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s101\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s102\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s103\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s104\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s105\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s106\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s107\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/./d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s108\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s109\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s110\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s111\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s112\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s113\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s114\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s115\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s116\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s117\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s118\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s119\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s120\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s121\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s122\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s123\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s124\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s125\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s126\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/../d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s127\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s128\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s129\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s130\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s131\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s132\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s133\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s134\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s135\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s136\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s137\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s138\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s139\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s140\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s141\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s142\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s143\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s144\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s145\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s146\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s147\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s148\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s149\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/../d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s150\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s151\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s152\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s153\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s154\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s155\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s156\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s157\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s158\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s159\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s160\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s161\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s162\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s163\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s164\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s165\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s166\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s167\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s168\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/.\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s169\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s170\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s171\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s172\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s173\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s174\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s175\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s176\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s177\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s178\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s179\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s180\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s181\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s182\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s183\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s184\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s185\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s186\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s187\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s188\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s189\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s190\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s191\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/.\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s192\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s193\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s194\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s195\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s196\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s197\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s198\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s199\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s200\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s201\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s202\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s203\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s204\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s205\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s206\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s207\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s208\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s209\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s210\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/..\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s211\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s212\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s213\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s214\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s215\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s216\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s217\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s218\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s219\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s220\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s221\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s222\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s223\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s224\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s225\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s226\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s227\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s228\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s229\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s230\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s231\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s232\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s233\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://a/bb/ccc/..\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s234\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s235\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s236\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s237\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s238\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s239\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s240\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s241\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s242\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s243\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s244\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s245\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s246\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s247\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s248\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s249\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s250\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s251\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s252\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"file:///a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s253\", \"urn:ex:p\": \"g:h\"},\n      {\"@id\": \"urn:ex:s254\", \"urn:ex:p\": \"g\"},\n      {\"@id\": \"urn:ex:s255\", \"urn:ex:p\": \"./g\"},\n      {\"@id\": \"urn:ex:s256\", \"urn:ex:p\": \"g/\"},\n      {\"@id\": \"urn:ex:s257\", \"urn:ex:p\": \"/g\"},\n      {\"@id\": \"urn:ex:s258\", \"urn:ex:p\": \"//g\"},\n      {\"@id\": \"urn:ex:s259\", \"urn:ex:p\": \"?y\"},\n      {\"@id\": \"urn:ex:s260\", \"urn:ex:p\": \"g?y\"},\n      {\"@id\": \"urn:ex:s261\", \"urn:ex:p\": \"#s\"},\n      {\"@id\": \"urn:ex:s262\", \"urn:ex:p\": \"g#s\"},\n      {\"@id\": \"urn:ex:s263\", \"urn:ex:p\": \"g?y#s\"},\n      {\"@id\": \"urn:ex:s264\", \"urn:ex:p\": \";x\"},\n      {\"@id\": \"urn:ex:s265\", \"urn:ex:p\": \"g;x\"},\n      {\"@id\": \"urn:ex:s266\", \"urn:ex:p\": \"g;x?y#s\"},\n      {\"@id\": \"urn:ex:s267\", \"urn:ex:p\": \"\"},\n      {\"@id\": \"urn:ex:s268\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s269\", \"urn:ex:p\": \"./\"},\n      {\"@id\": \"urn:ex:s270\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s271\", \"urn:ex:p\": \"../\"},\n      {\"@id\": \"urn:ex:s272\", \"urn:ex:p\": \"../g\"},\n      {\"@id\": \"urn:ex:s273\", \"urn:ex:p\": \"../..\"},\n      {\"@id\": \"urn:ex:s274\", \"urn:ex:p\": \"../../\"},\n      {\"@id\": \"urn:ex:s275\", \"urn:ex:p\": \"../../g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"file:///a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s276\", \"urn:ex:p\": \"../../../g\"},\n      {\"@id\": \"urn:ex:s277\", \"urn:ex:p\": \"../../../../g\"},\n      {\"@id\": \"urn:ex:s278\", \"urn:ex:p\": \"/./g\"},\n      {\"@id\": \"urn:ex:s279\", \"urn:ex:p\": \"/../g\"},\n      {\"@id\": \"urn:ex:s280\", \"urn:ex:p\": \"g.\"},\n      {\"@id\": \"urn:ex:s281\", \"urn:ex:p\": \".g\"},\n      {\"@id\": \"urn:ex:s282\", \"urn:ex:p\": \"g..\"},\n      {\"@id\": \"urn:ex:s283\", \"urn:ex:p\": \"..g\"},\n      {\"@id\": \"urn:ex:s284\", \"urn:ex:p\": \"./../g\"},\n      {\"@id\": \"urn:ex:s285\", \"urn:ex:p\": \"./g/.\"},\n      {\"@id\": \"urn:ex:s286\", \"urn:ex:p\": \"g/./h\"},\n      {\"@id\": \"urn:ex:s287\", \"urn:ex:p\": \"g/../h\"},\n      {\"@id\": \"urn:ex:s288\", \"urn:ex:p\": \"g;x=1/./y\"},\n      {\"@id\": \"urn:ex:s289\", \"urn:ex:p\": \"g;x=1/../y\"},\n      {\"@id\": \"urn:ex:s290\", \"urn:ex:p\": \"g?y/./x\"},\n      {\"@id\": \"urn:ex:s291\", \"urn:ex:p\": \"g?y/../x\"},\n      {\"@id\": \"urn:ex:s292\", \"urn:ex:p\": \"g#s/./x\"},\n      {\"@id\": \"urn:ex:s293\", \"urn:ex:p\": \"g#s/../x\"},\n      {\"@id\": \"urn:ex:s294\", \"urn:ex:p\": \"http:g\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://abc/def/ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s295\", \"urn:ex:p\": \".\"},\n      {\"@id\": \"urn:ex:s296\", \"urn:ex:p\": \".?a=b\"},\n      {\"@id\": \"urn:ex:s297\", \"urn:ex:p\": \".#a=b\"},\n      {\"@id\": \"urn:ex:s298\", \"urn:ex:p\": \"..\"},\n      {\"@id\": \"urn:ex:s299\", \"urn:ex:p\": \"..?a=b\"},\n      {\"@id\": \"urn:ex:s300\", \"urn:ex:p\": \"..#a=b\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://ab//de//ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s301\", \"urn:ex:p\": \"xyz\"},\n      {\"@id\": \"urn:ex:s302\", \"urn:ex:p\": \"./xyz\"},\n      {\"@id\": \"urn:ex:s303\", \"urn:ex:p\": \"../xyz\"}\n    ]\n  },\n  {\n    \"@context\": {\"@base\": \"http://abc/d:f/ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n    \"@graph\": [\n      {\"@id\": \"urn:ex:s304\", \"urn:ex:p\": \"xyz\"},\n      {\"@id\": \"urn:ex:s305\", \"urn:ex:p\": \"./xyz\"},\n      {\"@id\": \"urn:ex:s306\", \"urn:ex:p\": \"../xyz\"}\n    ]\n  }\n]\n"
  },
  {
    "path": "example-files/issue-46.html",
    "content": "<!DOCTYPE html>\r\n<html xmlns:fb=\"http://www.facebook.com/2008/fbml\" xmlns:og=\"http://opengraphprotocol.org/schema/\" lang=\"\">\r\n<head>\r\n<link rel=\"dns-prefetch\" href=\"//i.ebayimg.com\">\r\n<link rel=\"dns-prefetch\" href=\"//thumbs.ebaystatic.com\">\r\n<link rel=\"dns-prefetch\" href=\"//vi.vipr.ebaydesc.com\">\r\n<link rel=\"dns-prefetch\" href=\"//p.ebaystatic.com\">\r\n<link rel=\"dns-prefetch\" href=\"//q.ebaystatic.com\">\r\n<link rel=\"dns-prefetch\" href=\"//pics.ebaystatic.com\">\r\n<link rel=\"dns-prefetch\" href=\"//ir.ebaystatic.com\">\r\n<link rel=\"dns-prefetch\" href=\"//srx.main.ebayrtm.com\">\r\n<link rel=\"dns-prefetch\" href=\"//rover.ebay.com\">\r\n<link rel=\"dns-prefetch\" href=\"//reco.ebay.com\">\r\n\r\n<!--  fix for IE freezing.  -->\r\n<style type=\"text/css\">\r\nbody #Body .btn, body #Body c-std {\r\nfilter:none;\r\n-ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr='#0079bc',endColorstr='#00509d')\";\r\n}\r\n</style>\r\n\r\n\t<meta name=\"viewport\"/>\r\n\t<meta name=\"layout\" content=\"main\" />\r\n\t<!-- Use ?ForceSiteSpeedGauge=true for forcing -->\r\n\t<!-- Sync with the domain names for Node JS version in\r\nhttps://github.corp.ebay.com/nodejs/site-speed-ebay/blob/master/lib/index.js-->\r\n\r\n<link rel=\"dns-prefetch\" href=\"//secureir.ebaystatic.com\">\r\n\t<link rel=\"dns-prefetch\" href=\"//i.ebayimg.com\">\r\n\t<meta Property=\"og:description\" Content=\"Forged, one piece steel construction. Ergonomically designed grip reduces fatigue and allows for multiple grip positions. Images shown for illustration purposes only. Non-slip grip with shock reduction. | eBay!\" /><meta name=\"twitter:image\" content=\"https://i.ebayimg.com/images/i/262745174897-0-1/s-l1000.jpg\" /><link rel=\"preconnect\" href=\"https://ir.ebaystatic.com\" /><meta name=\"twitter:description\" content=\"Forged, one piece steel construction. Ergonomically designed grip reduces fatigue and allows for multiple grip positions. Images shown for illustration purposes only. Non-slip grip with shock reduction. | eBay!\" /><meta name=\"twitter:site\" content=\"@eBay\" /><title>OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120 9328217003401 | eBay</title><meta name=\"description\" content=\"Forged, one piece steel construction. Ergonomically designed grip reduces fatigue and allows for multiple grip positions. Images shown for illustration purposes only. Non-slip grip with shock reduction. | eBay!\" /><meta Property=\"og:site_name\" Content=\"eBay\" /><meta name=\"twitter:card\" content=\"summary\" /><meta name=\"referrer\" content=\"unsafe-url\" /><meta name=\"msvalidate.01\" content=\"34E98E6F27109BE1A9DCF19658EEEE33\" /><meta Property=\"og:url\" Content=\"https://www.ebay.co.uk/itm/OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-/262745174897\" /><link href=\"https://i.ebayimg.com\" rel=\"preconnect\" /><meta name=\"y_key\" content=\"0090e7e28a2554d4\" /><link rel=\"alternate\" href=\"android-app://com.ebay.mobile/ebay/link/?nav=item.view&amp;id=262745174897&amp;referrer=http%3A%2F%2Frover.ebay.com%2Froverns%2F1%2F711-13271-9788-0%3Fmpcl%3Dhttp%253A%252F%252Fwww.ebay.co.uk%252Fitm%252FOX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-%252F262745174897\" /><meta name=\"twitter:title\" content=\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120\" /><meta name=\"google-site-verification\" content=\"N44szmI3uamPmsOzfSbiKbBd_834GucfjqGRRyXZ7wQ\" /><link rel=\"canonical\" href=\"https://www.ebay.co.uk/itm/OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-/262745174897\" /><meta Property=\"og:image\" Content=\"https://i.ebayimg.com/images/i/262745174897-0-1/s-l1000.jpg\" /><meta Property=\"og:title\" Content=\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120 9328217003401 | eBay\" /><meta property=\"fb:app_id\" content=\"102628213125203\" /><meta Property=\"og:type\" Content=\"ebay-objects:item\" /><!-- NGMARS SIGNATURE --><!--[if IE]><link/><![endif]-->\r\n\t<!--[if lt IE 8]>\r\n\t\t<![endif]-->\r\n\r\n\r\n    <!-- adding lens js -->\r\n<link href=\"https://ir.ebaystatic.com/rs/v/ika2w32gkmydzemitcdxw3ktm21.css\" type=\"text/css\" rel=\"stylesheet\"><link href=\"https://ir.ebaystatic.com/rs/v/gpwiy4ecsq23tbwhc1hvpn121qt.css\" type=\"text/css\" rel=\"stylesheet\"><link href=\"https://ir.ebaystatic.com/rs/v/mqhahozzvqymbjphlgvv05evbmr.css\" type=\"text/css\" rel=\"stylesheet\"><style type=\"text/css\">div.addonyes{ background: url('//ir.ebaystatic.com/cr/v/c1/addonwrty.png') no-repeat 0 -54px; background-size: 16px; }\r\ndiv.addonno{ background: url('//ir.ebaystatic.com/cr/v/c1/addonwrty.png') no-repeat 0 -72px; background-size: 16px; }\r\n.adninc{width:620px}.imgtitle{background-color:#fff;height:76px;padding-top:16px}.adnimg{float:left;padding:0 16px 0 24px;height:60px;width:60px;line-height:60px}.adnlogoimg{max-width:60px;max-height:60px;vertical-align:middle}#adndesctbl{margin-bottom:10px}.adnlabel{font-size:17px;vertical-align:middle;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;font-stretch:normal;color:#5ba71b;padding-top:10px}.adntitle{font-size:13px;vertical-align:middle;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;font-stretch:normal;color:#333;padding-top:8px}.adnactions{padding-top:24px}.adnlrnmore{display:block;float:left;font-size:14px;color:#00489f;padding:16px 0 0 16px;text-decoration:none;outline:0 none!important;font-weight:400}.addonBtn{float:right}.adndesclbl{font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:20px;font-weight:400;font-style:normal;font-stretch:normal;color:#555;padding:0 0 16px 16px}.adndesc{border-top:solid 1px #ddd;padding:24px;background-color:#f6f6f6}.addondescdetails{border-collapse:collapse;border:1px solid #DDD;background-color:#fff;border-radius:5px}.wrttitle{padding:16px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;font-size:15px;font-weight:500;font-style:normal;font-stretch:normal;text-align:left;color:#333}.addontr{height:25px;vertical-align:middle}.addyesno{padding:6px 12px 6px 16px;width:16px}.addonyes{background:url(//ir.ebaystatic.com/cr/v/c1/addonwrty.png) no-repeat 0 -54px;height:16px;width:16px;background-size:16px}.addonno{background:url(//ir.ebaystatic.com/cr/v/c1/addonwrty.png) no-repeat 0 -72px;height:16px;width:16px;background-size:16px}.addondesc{font-size:13px;line-height:15px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif;width:528px;padding:6px 12px 6px 0}.addonbtn{padding:.5em 1.2em;border:1px solid transparent;border-radius:3px;vertical-align:baseline;text-align:center;text-decoration:none;white-space:nowrap;font-weight:500;font-size:16px;cursor:pointer;zoom:1;display:inline-block;*display:inline;width:129px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif}.adnclr{clear:both}.addonbtn{padding:.5em 1.2em;border:1px solid transparent;border-radius:3px;vertical-align:baseline;text-align:center;text-decoration:none;white-space:nowrap;font-weight:500;font-size:16px;cursor:pointer;zoom:1;display:inline-block;*display:inline;width:129px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif}.addonbtn:hover{background-color:#eee;background-position:0 -15px;-webkit-box-shadow:0 0 0 rgba(0,0,0,.2);-moz-box-shadow:0 0 0 rgba(0,0,0,.2);box-shadow:0 0 0 rgba(0,0,0,.2);text-decoration:none;-moz-transition:background-position .1s linear 0}.addonbtn:active{position:relative;top:1px}.addonaddplan{background:#00509d;background:-webkit-gradient(linear,left top,left bottom,from(#0079bc),to(#00509d));background:-moz-linear-gradient(top,#0079bc,#00509d);text-decoration:none;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0079bc',endColorstr='#00509d');color:#fff;margin-right:16px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif}.addonaddplan:hover,.addonaddplan:focus,.addonaddplan:active{background:#00509d;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00509d',endColorstr='#00509d')}.addonnothx{border:1px solid #ddd;background:#f8f8f8;background:-webkit-gradient(linear,left top,left bottom,from(#fefefe),to(#f8f8f8));background:-moz-linear-gradient(top,#fefefe,#f8f8f8);text-decoration:none;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fefefe',endColorstr='#f8f8f8');color:#0654ba;margin-right:16px;font-family:HelveticaNeue,Helvetica Neue,Helvetica,Arial,sans-serif}.addonnothx:hover,.addonnothx:focus,.addonnothx:active{border:1px solid #aaa;background:#fafafa}.ui-hlp-hidden{width:0;height:0;z-index:-1;overflow:hidden;line-height:0;position:absolute}.outline{outline:0 none!important}\r\n.similar-items-panel .similar-items-title {font-family: \"Helvetica neue\",Helvetica,Verdana,Sans-serif !important;}\r\n#Body .app-mtp-theme-tabs * {font-family: \"Helvetica neue\",Helvetica,Verdana,Sans-serif}\r\n#Body .theme-details * {font-family: \"Helvetica neue\",Helvetica,Verdana,Sans-serif}\r\nh1#ProductTitle {font-family: \"Helvetica neue\",Helvetica,Verdana,Sans-serif}</style><style type=\"text/css\">\r\n\t\t\t\thtml a:link{\r\n\t\t\t\t\tcolor: #0654ba;\r\n\t\t\t\t}\r\n\t\t\t\tul#bc a:link{\r\n\t\t\t\t\tcolor: #0654ba;\r\n\t\t\t\t}\r\n\t\t\t\t.mbg a:link{\r\n\t\t\t\t\tcolor: #0654ba !important;\r\n\t\t\t\t}\r\n\t\t\t\t.mbg-l a:link{\r\n\t\t\t\t\tcolor: #0654ba !important;\r\n\t\t\t\t}\r\n\t\t\t\t#Body .nav-tabs-m a:link{\r\n\t\t\t\t\tcolor: #0654ba;\r\n\t\t\t\t}\r\n\t\t\t</style>\r\n\t\t</head>\r\n\r\n<body class=\"  lhdr-ie- vi-hd-ops \">\r\n\r\n<!--  Product QnA -->\r\n\t\t<!-- Default filmstrip js used with main image -->\r\n\t\t<!-- adding filmstrip js used in main pic and with images carousel  -->\r\n\t\t<!--  Product QnA -->\r\n\t\t<style type=\"text/css\">\r\nhtml body {\r\n\tbackground:none;\r\n}\r\n</style>\r\n<div id=\"Head\">\r\n\t\t</div>\r\n\r\n\t<div id=\"Body\" class=\" sz940 sz1280 \" itemscope=\"itemscope\" itemtype=\"https://schema.org/Product\">\r\n\t\t<div id=\"maskDiv\"></div>\r\n\t\t<div id=\"TopPanelDF\"><div id=\"Top\">\r\n<div id=\"TopPanel\" class=\"\">\r\n\t\t\t\t<style>.gh-hide-if-nocss{display:none;}.gh-ar-hdn{color:#fff}</style> <!--[if lt IE 9]><link rel=\"stylesheet\" type=\"text/css\" href=\"https://ir.ebaystatic.com/rs/v/32q2wauokmyjletm4byq40w5s2i.css?proc=DU:N\"></link><![endif]--><div class=\"gh-acc-exp-div gh-hide-if-nocss\"><a id=gh-hdn-stm class=gh-acc-a href=\"#mainContent\">Skip to main content</a></div><!--[if lt IE 9]><div id=\"gh\" role=\"banner\" class=\"gh-IE8 gh-flex gh-pre-js gh-w \"><![endif]--><!--[if (gte IE 9)|!(IE)]><!--><header id=gh role=\"banner\" class=\"gh-flex gh-pre-js gh-w \"><!--<![endif]--><table class=\"gh-tbl\"><tbody><tr><td class=\"gh-td\"><!--[if lt IE 9]><a href=\"https://www.ebay.co.uk\" _sp=\"m570.l2586\" id=\"gh-la\">eBay logo<img role=\"presentation\" width=117 height=120 style='clip:rect(47px, 118px, 95px, 0px); position:absolute; top:-47px;left:0' alt=\"eBay logo\" src=\"https://ir.ebaystatic.com/rs/v/apstidvcvu5pxlbxkphrrdo5iqv.png\" id=\"gh-logo\"></a><![endif]--><!--[if (gte IE 9)|!(IE)]><!--><a href=\"https://www.ebay.co.uk\" _sp=\"m570.l2586\" id=\"gh-la\">eBay logo<img role=\"presentation\" width=250 height=200 style='clip:rect(47px, 118px, 95px, 0px); position:absolute; top:-47px;left:0' alt=\"eBay logo\" src=\"https://ir.ebaystatic.com/rs/v/fxxj3ttftm5ltcqnto1o4baovyl.png\" id=\"gh-logo\"></a><!--<![endif]--></td><td class=\"gh-td\"><div id=gh-shop class=gh-hide-if-nocss><button id=gh-shop-a aria-expanded=\"false\" class=gh-control aria-controls=gh-sbc-o>Shop by category<i id=\"gh-shop-ei\" class=\"gh-sprRetina\"></i></button><div id=gh-sbc-o><h2 class=\"gh-ar-hdn\">Shop by category</h2></div></div></td><td class=\"gh-td-s\"><form id=\"gh-f\" method=\"get\" action=\"https://www.ebay.co.uk/sch/i.html\"><input type=\"hidden\" value=\"R40\" name=\"_from\"><input type=\"hidden\" name=\"_trksid\" value=\"m570.l1313\"><table class=\"gh-tbl2\"><tbody><tr><td class=\"gh-td-s\" ><div id=gh-ac-box><div id=gh-ac-box2><label for=gh-ac class=\"gh-ar-hdn\">Enter your search keyword</label><input type=\"text\" class=\"gh-tb ui-autocomplete-input\" size=\"50\" maxlength=\"300\" placeholder=\"Search for anything\" id=\"gh-ac\" name=\"_nkw\" autocapitalize=\"off\" autocorrect=\"off\" spellcheck=\"false\" autocomplete=\"off\"></div></div></td><td class=\"gh-td\" id=gh-cat-td><div id=gh-cat-box><select aria-label=\"Select a category for search\" class=\"gh-sb gh-sprRetina\" size=1 id=gh-cat name=\"_sacat\"><option selected=selected value=\"0\">All Categories</option></select></div></td><td class=\"gh-td\" ><input type=\"submit\" class=\"btn btn-ter gh-spr\" id=\"gh-btn\" value=\"Search\"></td><td class=\"gh-td\" id=gh-as-td><a title=\"Advanced Search\" href=\"https://www.ebay.co.uk/sch/ebayadvsearch\" _sp=m570.l2614 id=gh-as-a>Advanced</a></td></tr></tbody></table></form></td></tr></tbody></table><div id=gh-top class=gh-hide-if-nocss role=\"navigation\" aria-label=\"Account\"><ul id=\"gh-topl\"><li class=\"gh-t gh-spr \" id=gh-eb-u><script>(function(){try{var d=document.cookie,a=((a=d.match(/u1f[^a-zA-Z0-9]([^^]*)[0-9a-z]{8}/))?a[1].replace(/\\+/g,\" \"):\"\").replace(/(.{12}).*/,\"$1...\");if(/[<>%&'\\/]/.test(a)){throw(1)}document.write(\"<span id=gh-ug\"+(!a||/u1p.QEBfX/.test(d)?' class=gh-ug-guest>Hello. <a href=\"https://signin.ebay.co.uk/ws/eBayISAPI.dll?SignIn&amp;_trksid=m570.l1524\" rel=\"nofollow\" _sp=\"m570.l1524\">Sign in</a> <span id=\"gh-ug-flex\">or <a href=\"https://reg.ebay.co.uk/reg/PartialReg?_trksid=m570.l2621\" rel=\"nofollow\" _sp=\"m570.l2621\">register</a></span>':' style=\"margin-right:3px\">Hello <b>-User-</b>.'.replace(/-User-/,decodeURIComponent(escape(a))))+\"</span>\")}catch(b){document.write(\"<style>#gh-topl{display:none}</style>\")}})();</script><noscript class='gh-t gh-spr'>Hi (<a href=\"https://signin.ebay.co.uk/ws/eBayISAPI.dll?SignIn&amp;_trksid=m570.l3348\">Sign in</a> to bid or buy)</noscript></li><li class=\"gh-t gh-spr \" id=gh-p-1><a href=\"https://www.ebay.co.uk/deals\" _sp=m570.l3188 class=\"gh-p\" > Daily Deals</a></li><li class=\"gh-t gh-spr \" id=gh-p-2><a href=\"https://www.ebay.co.uk/sl/sell\" _sp=m570.l1528 class=\"gh-p\" > Sell</a></li><li class=\"gh-t gh-spr \" id=gh-p-3><a href=\"https://ocsnext.ebay.co.uk/ocs/home\" _sp=m570.l1545 class=\"gh-p\" > Help & Contact</a></li><li class=\"gh-t gh-spr gh-hdn\" id=gh-ti><a href=\"https://www.ebay.co.uk/deals\" _sp=m570.l2611 id=gh-doodleS><img src=\"https://ir.ebaystatic.com/cr/v/c1/Saledoodle3.png\" id=gh-hsi height=30 width=150 alt=\"Shop Now\" title=\"Shop Now\" /></a></li></ul><ul id=\"gh-eb\"><li id=gh-eb-My class=\"gh-eb-li gh-hvr gh-dd\" data-imp=10><div class=\"gh-menu\"><a href=\"https://my.ebay.co.uk/ws/eBayISAPI.dll?MyEbay&amp;gbh=1\" _sp=m570.l2919 class=\"gh-eb-li-a\" > My eBay</a><a href=\"#gh-eb-My\" role=button aria-expanded=false aria-controls=gh-eb-My-o class=\"gh-acc-exp-a gh-acc-a2 gh-control \">Expand My eBay</a><div class=\"gh-submenu gh-eb-o\" id=\"gh-eb-My-o\"><ul role=navigation><li ><a href=\"https://www.ebay.co.uk/myb/Summary\" _sp=m570.l1533 class=\"gh-eb-oa thrd\" > Summary</a></li><li ><a href=\"https://www.ebay.co.uk/myb/container?key=recentlyviewed\" _sp=m570.l9225 class=\"gh-eb-oa thrd\" > Recently Viewed</a></li><li ><a href=\"https://www.ebay.co.uk/myb/BidsOffers\" _sp=m570.l1535 class=\"gh-eb-oa thrd\" > Bids/Offers</a></li><li ><a href=\"https://www.ebay.co.uk/myb/WatchList\" _sp=m570.l1534 class=\"gh-eb-oa thrd\" > Watch List</a></li><li ><a href=\"https://www.ebay.co.uk/myb/PurchaseHistory\" _sp=m570.l1536 class=\"gh-eb-oa thrd\" > Purchase History</a></li><li ><a href=\"https://my.ebay.co.uk/ws/eBayISAPI.dll?MyEbay&gbh=1&CurrentPage=MyeBayAllSelling&ssPageName=STRK:ME:LNLK:MESX\" _sp=m570.l1537 class=\"gh-eb-oa thrd\" > Selling</a></li><li ><a href=\"https://www.ebay.co.uk/myb/SavedSearches\" _sp=m570.l9503 class=\"gh-eb-oa thrd\" > Saved Searches</a></li><li ><a href=\"https://www.ebay.co.uk/myb/SavedSellers\" _sp=m570.l9505 class=\"gh-eb-oa thrd\" > Saved Sellers</a></li><li ><a href=\"https://mesg.ebay.co.uk/mesgweb/ViewMessages/0\" _sp=m570.l1539 class=\"gh-eb-oa thrd\" > Messages</a></li><li ><a href=\"https://reward.ebay.co.uk/rwdwebui/nectar/myebay/main\" id=\"gh-eb-nectar\" _sp=m570.l3656 >Collect & Spend <br><b class=gh-eb-nectarb> Learn more</b></a></li><li id=gh-eb-sub-li-cpn ></li></ul></div></div></li><li id=gh-eb-Alerts class=\"gh-eb-li gh-hvr gh-layer rt\" ><div class=\"gh-menu\"><button class=\"gh-control ghn-b gh-eb-li-a\" aria-expanded=false aria-controls=gh-eb-Alerts-o ><i id=gh-Alerts-i class=gh-sprRetina>Notification</i></button><div class=\"gh-sublayer\"> <div id=\"gh-eb-Alerts-o\" class=\"gh-eb-o\" style=\"display: none;\"></div></div></div></li><li id=gh-cart class=\"gh-eb-li rt\" ><a href=\"https://cart.payments.ebay.co.uk/sc/view\" _sp=m570.l2633 title=\"Your shopping basket\" class=\"gh-eb-li-a\" ><i id=gh-cart-i class='gh-sprRetina '></i></a></li></ul></div> <div id=\"makeebayfaster_config\" style=\"display:none;\">{\"modules\":[\"unloadOptimization\",\"bandwidthDetection\"],\"unloadOptimization\":{\"browsers\":{\"Firefox\":true,\"Chrome\":true}},\"bandwidthDetection\":{\"url\":\"https://ir.ebaystatic.com/cr/v/c1/thirtysevens.jpg\",\"maxViews\":4,\"imgSize\":37,\"expiry\":300000,\"timeout\":250}}</div> <link rel=\"manifest\" href=\"https://www.ebay.co.uk/manifest.json\" /><script type=\"text/javascript\" class=\"chauffeur-script\" data-server-endpoint=\"https://www.ebay.co.uk/gh/push/subscription\" data-api-key=\"AIzaSyDl-FiNnVLATQ1hFlciyLXEICTDV_nxDQM\" data-sender-id=\"333850377833\" data-sdk=\"https://ir.ebaystatic.com/cr/v/c1/firebase-sdk.js\"> window.addEventListener('load', function() { if ('serviceWorker' in navigator) { navigator.serviceWorker.getRegistration('/p').then(function(existingReg) { if (existingReg) { existingReg.update(); } else { navigator.serviceWorker.register('https://www.ebay.co.uk/sw.js', { scope: '/p' }).catch(function(ex) { /** TODO: tracking **/ }); } }); } }); </script><!--[if lt IE 9]></div><![endif]--><!--[if (gte IE 9)|!(IE)]><!--></header><!--<![endif]--><!--ts:2019.01.24.01:46--><!--rq:--><!--rvr:114rcb--> <div id='widgets-placeholder' class='widgets-placeholder'></div><table width=\"100%\" class=\"vi-bc-topM\"><tr><td>\r\n\r\n\r\n\r\n\r\n<ul id=\"bc\" style=clear:none;>\r\n\r\n<table class=\"\">\r\n\t<tr>\r\n\t<td nowrap=\"nowrap\" style=\"vertical-align:top;\" class=\"vi-VR-bkto-TD\">\r\n\t\t  <li style=\"\"  id=\"smtBackToAnchorArrow\">\r\n\t\t  \t<span class=\"gspr vi-bkto-arrnewred\" style=\"\">&nbsp;</span>\r\n\t\t  \t\t</li>\r\n\t\t</td>\r\n\t\t<td nowrap=\"nowrap\" style=\"vertical-align:top;\" class=\"vi-VR-bkto-TD\">\r\n\t\t  <li style=\"\"  id=\"vi-brumb-frstCol\"><a style=\"padding-right:1px;\" class=\"vi-VR-spl-lnk\" href=\"javascript:history.go(-1)\"  title=\"Click to Go Back to home page\"  id=\"smtBackToAnchor\">Back to home page</a></li>\r\n\t\t     <!--[if lt IE 8]>\r\n\t\t\t  \t<li  style=\"margin:0px 5px 0px -10px\"  id=\"vi-VR-brumb-pipeIcon\">|</li>\r\n\t\t\t <![endif]-->\r\n\t\t</td>\r\n\t <td  nowrap=\"nowrap\" style=\"vertical-align:top;\" id=\"vi-VR-brumb-pdplnkLst\">\r\n\t\t\t<li style=\"margin-right:5px;width:100%; \"><span aria-hidden=\"true\" style=\"margin:0px 5px 0px -10px\">|</span>Listed in category:&nbsp;</li>\r\n\t\t</td>\r\n\t\t<td style=\"vertical-align:top;\" class=\"vi-VR-brumblnkLst vi-VR-brumb-hasNoPrdlnks\"  id=\"vi-VR-brumb-lnkLst\">\r\n\t\t\t<table width=\"100%\">\r\n\t\t\t\t<tr><td style=\"\">\r\n\t\t\t\t\t\t\t<h2>\r\n\t\t\t\t\t\t\t\t<ul itemscope=\"\" itemtype=\"https://schema.org/BreadcrumbList\">\r\n\t\t\t\t\t\t\t\t\t<li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\" class=\"bc-w\"><a itemprop=\"item\" _sp=\"p2047675.l2706\" href=\"https://www.ebay.co.uk/b/Home-Furniture-DIY-/11700\" class=\"thrd\"><span itemprop=\"name\">Home, Furniture & DIY</span></a><meta itemprop=\"position\" content=\"1\"></li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li>&gt;</li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\" class=\"bc-w\"><a itemprop=\"item\" _sp=\"p2047675.l2706\" href=\"https://www.ebay.co.uk/b/DIY-Tools-Workshop-Equipment-/631\" class=\"thrd\"><span itemprop=\"name\">DIY Tools & Workshop Equipment</span></a><meta itemprop=\"position\" content=\"2\"></li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li>&gt;</li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\" class=\"bc-w\"><a itemprop=\"item\" _sp=\"p2047675.l2706\" href=\"https://www.ebay.co.uk/b/Hand-Tools-/3244\" class=\"thrd\"><span itemprop=\"name\">Hand Tools</span></a><meta itemprop=\"position\" content=\"3\"></li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li>&gt;</li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\" class=\"bc-w\"><a itemprop=\"item\" _sp=\"p2047675.l2706\" href=\"https://www.ebay.co.uk/b/Hammers-Mallets-/20763\" class=\"scnd\"><span itemprop=\"name\">Hammers & Mallets</span></a><meta itemprop=\"position\" content=\"4\"></li>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<li>&gt;</li>\r\n\t\t\t\t\t\t\t\t\t\t<li itemprop=\"itemListElement\" itemscope=\"\" itemtype=\"https://schema.org/ListItem\" class=\"bc-w\"><span itemprop=\"name\"><a title=\"See more OX Tools P080120 Durable Pro Claw Hammer 20oz\" href=\"https://www.ebay.co.uk/p/OX-Tools-P080120-Durable-Pro-Claw-Hammer-20oz/1023166420?_trksid=p2047675.l2644\">See more OX Tools P080120 Durable Pro Claw Hammer 20oz</a></span><meta itemprop=\"position\" content=\"1\"></li>\r\n\r\n\t\t\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t\t</h2>\r\n\t\t\t\t\t\t</td></tr>\r\n\t\t\t\t</table>\r\n\t\t</td>\r\n\t</tr>\r\n</table>\r\n</ul>\r\n</td>\r\n<td>\r\n\t<div class=\"vi-share-widget-rt\">\r\n\t\t\t\t\t<div class=\"social-widget  vi-share-widget-tc\">\r\n\t\t<div class=\"sw\">\r\n\t\t\t<a rel=\"nofollow\" href=\"javascript:;\" data-destination=\"email\" data-itemid=\"262745174897\" data-spid=\"2047675\" data-language=\"en_GB\"\r\n\t\t\t\t\t\t\tclass=\"scIcon sw_email\"  etafsharetitle=\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120\"\r\n\t\t\t\t\t\t\tetafshareurl=\"https://www.ebay.co.uk/itm/OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-/262745174897\" id=\"sc_email\"><span class=\"gh-ar-hdn\">Email to friends</span></a>\r\n\t\t\t\t\t<a rel=\"nofollow\" href=\"http://www.ebay.co.uk/soc/share?du=https%3A%2F%2Fwww.ebay.co.uk%2Fitm%2FOX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-%2F262745174897&rt=nc&t=OX+Tools+Pro+20oz+Claw+Hammer+1-Piece+Solid+Forged+Steel+%26amp%3B+Non+Slip+Grip+P080120&spid=2047675&itm=262745174897&media=http%3A%2F%2Fgalleryplus.ebayimg.com%2Fws%2Fweb%2F262745174897_1_0_1%2F1000x1000.jpg&swd=2&shorten=0\" data-destination=\"facebook\" data-tracking=\"\"\r\n\t\t\t\t\t\t\tclass=\"scIcon sw_facebook\"  target=\"_blank\"><span class=\"gh-ar-hdn\">Share on Facebook - opens in a new window or tab</span></a>\r\n\t\t\t\t\t<a rel=\"nofollow\" href=\"http://www.ebay.co.uk/soc/share?du=https%3A%2F%2Fwww.ebay.co.uk%2Fitm%2FOX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-%2F262745174897&rt=nc&spid=2047675&itm=262745174897&media=http%3A%2F%2Fgalleryplus.ebayimg.com%2Fws%2Fweb%2F262745174897_1_0_1%2F1000x1000.jpg&swd=3&lang=en&t=Check+out+what+I+found.+OX+Tools+Pro+20oz+Claw+Hammer+1-Piece+Solid+Forged+Steel+%26amp%3B+Non+Slip+Grip+P080120\" data-destination=\"twitter\" data-tracking=\"\"\r\n\t\t\t\t\t\t\tclass=\"scIcon sw_twitter\"  target=\"_blank\"><span class=\"gh-ar-hdn\">Share on Twitter - opens in a new window or tab</span></a>\r\n\t\t\t\t\t<a rel=\"nofollow\" href=\"http://www.ebay.co.uk/soc/share?du=https%3A%2F%2Fwww.ebay.co.uk%2Fitm%2FOX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-Non-Slip-Grip-P080120-%2F262745174897&rt=nc&spid=2047675&itm=262745174897&media=http%3A%2F%2Fgalleryplus.ebayimg.com%2Fws%2Fweb%2F262745174897_1_0_1%2F1000x1000.jpg&swd=11&t=OX+Tools+Pro+20oz+Claw+Hammer+1-Piece+Solid+Forged+Steel+%26amp%3B+Non+Slip+Grip+P080120\" data-destination=\"pinterest\" data-tracking=\"\"\r\n\t\t\t\t\t\t\tclass=\"scIcon sw_pinterest\"  target=\"_blank\"><span class=\"gh-ar-hdn\">Share on Pinterest - opens in a new window or tab</span></a>\r\n\t\t\t\t\t</div>\r\n\t</div>\r\n\t<div class=\"vi-watchLink\">\r\n\t\t\t\t\t\t\t<div class=\" watchLnk watchlink-mrg\">\r\n<span id=\"linkTopAct\" class=\"watchlinkSpan\" style=\"display: \">\r\n\t\t<span>\r\n\t\t<a href=\"https://www.ebay.co.uk/myb/WatchListAdd?_trksid=p2047675.l1359&SubmitAction.AddToListVI=x&item=262745174897&rt=nc&srt=0100030000005048f1c3513018150de0610c13b1f64fddcd8776055c072f3b6fce2cf6c8509872a199a8a66021dd9a4255e4aafaa5ecf0fa477192ff7c36ab14a0406e2ab34cf81f88d192b45f87a4be5bc594d182f5d4&etn=Watch list&tagId=-99&wt=9fcdab228c5caba3f365c5bd0278b26d&ssPageName=VIP:watchlink:top:en&sourcePage=4340\"  class=\" \" id=\"watchLink\" title=\"\" rel=\"nofollow\">Add to Watch list</a></span>\r\n\t</span>\r\n\t</div>\r\n<span class=\"vi-watch-pipe\" style=\"display: \">|</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t</td>\r\n</tr>\r\n</table>\r\n<div id=\"scandal100938\" class=\"vi-lb-placeholder\" title=\"ADVERTISEMENT\"></div>\r\n</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div><div id=\"CenterPanelDF\"><!-- CVIP Messaging Starts -->\r\n<!-- CVIP Messaging Ends -->\r\n\r\n\t\t\t<div class =\"\">\r\n\t\t\t\t<div id=\"CenterPanel\"\r\n\t\t\t\t\tclass=\"  ebaylocale_en_GB vi-eu-region     \">\r\n\t\t\t\t\t<!-- CVIP Messaging Starts -->\r\n<!-- CVIP Messaging Ends -->\r\n\r\n\t\t<h3 class=\"vi-inheritstyl\" role=\"none\">\r\n\t<div class=\"tmpnl\">\r\n\t<div id=\"msgPanel\" class=\"pnl u-dspn\">\r\n\t<div class=\"msg \">\r\n\t\t<div class=\"msgPad \"   aria-relevant=\"all\" aria-atomic=\"true\" aria-live=\"assertive\" >\r\n\t\t\t<span class=\"statusContent\">\r\n\t\t\t\t<span class=\"statusLeftContent\">\r\n\t\t\t\t\t<span id=\"w1-5-_msg\" class=\"msgTextAlign\" ></span>\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t<span class=\"statusRightContent\">\r\n\t\t\t\t\t</span>\r\n\t\t\t\t<div style=\"clear: both;\"></div>\r\n\t\t\t</span>\r\n\t\t</div>\r\n\r\n\t</div>\r\n</div><div>\r\n\t\t<!-- Removed welcome messages as no longer displayed -->\r\n\t\t<!-- CHECK if still shown on VI : Parent action Text : check how to display -->\r\n\r\n\t\t<!-- CHECK if still shown on VI :  -->\r\n\t\t<!-- IF Display Natural Search welcome message 2 is available : show that message\r\n\t\t\t ELSE check if ItemTitle is available format (Item: ItemTitle) -->\r\n\r\n\t\t<!-- Show Variation details, VariationPrice, VariationQuantity -->\r\n\t\t</div>\r\n<div id=\"listingHistory\"></div><div id=\"otherMsg\"></div></div>\r\n\r\n</h3>\r\n\r\n<!--  Placement 100005 -->\r\n<div id=\"vi_sme_prmts_bnr_cntr\">\r\n\t\t\t\t\t</div>\r\n\t\t\t\t<!-- Placement 100011 && 100012 -->\r\n<div id=\"CenterPanelInternal\" class=\"\">\r\n<div id=\"PicturePanel\" class=\"pp-c\">\r\n\t<h3 class=\"g-hdn\">Picture Information</h3>\r\n\t<div class=\"pp-ic pp-ic500\">\r\n\t\t<div class=\"  img img500\">\r\n\t\t\t<table class=\"img img500\">\r\n\t\t\t\t<tbody>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td class=\"img img500\">\r\n\t\t\t\t\t\t<div id=\"picturePanelIcon\"><div class=\"prom prom140  vi-redpoff \" id=\"freeShip\" style=\"\" title=\"Free P&amp;P\">\r\n\t\t\t<span class=\"gspr\" >Free P&amp;P</span>\r\n\t\t\t<span class=\"vi-ebnClock u-dspn\" >\r\n\t\t\t\t</span>\r\n\t\t\t<i class=\"gspr\"></i>\r\n\t\t\t<i class=\"gspr folw\"></i>\r\n</div>\r\n\r\n</div><div id=\"test\"><!-- test --></div><script type=\"text/javascript\">var sPT = new Date().getTime(),picTimer,picTimer1,picTimer2;</script>\r\n\t\t\t\t\t\t\t<a id=\"linkMainImg\" href=\"javascript:;\" style=\"display: block; cursor: default; text-decoration: none;\">\r\n\t\t\t\t\t\t\t\t\t\t\t<div id=\"mainImgHldr\" class=\"\" style=\"width:500px\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- <span id=\"mainImgHldr\" style=\"display: inline-block;\"> -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img id=\"icThrImg\" class=\"img img500 vi-hide-mImgThr\" style=\"\" src=\"https://ir.ebaystatic.com/pictures/aw/pics/globalAssets/imgLoading_30x30.gif\" imgsel=\"0\" alt=\"Image is loading\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img id=\"icImg\" class=\"img img500\" itemprop=\"image\" src=\"https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l500.jpg\" style=\"display:none;\" onload=\"picTimer=new Date().getTime();\" clk=\"\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- </span> -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t\t<span id=\"imgNATxt\" class=\"imgNa\">Image not available</span>\r\n\t\t\t\t\t\t<span id=\"varImgNATxt\" class=\"imgNa\" style=\"display:none\">Photos not available for this variation</span>\r\n\t\t\t\t\t\t<noscript><style type=\"text/css\">.vi-hide-mImgThr {display: none;}</style><img id=\"icImg\" class=\"img img500\" itemprop=\"image\" src=\"https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l500.jpg\" style=\"\" clk=\"\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" /></noscript>\r\n\t\t\t\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\t\t\tfunction picOnLoad(isSetClkId){\r\n\t\t\t\t\t\t\t\tvar elem = document.getElementById('icThrImg');\r\n\t\t\t\t\t\t\t\tvar pic = document.getElementById('icImg');\r\n\t\t\t\t\t\t\t\telem.style.display = 'none';\r\n\t\t\t\t\t\t\t\tpic.style.display = '';\r\n\t\t\t\t\t\t\t\tif(isSetClkId) {\r\n\t\t\t\t\t\t\t\t\tpic.setAttribute('clk', elem.getAttribute('imgsel'));\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t\tdocument.getElementById('imgNATxt').style.display = 'none';\r\n\t\t\t\t\t\t\t\tdocument.getElementById('mainImgHldr').style.backgroundImage = 'none';\r\n\t\t\t\t\t\t\t\treturn;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tfunction picOnError(){\r\n\t\t\t\t\t\t\t\tvar elemThr = document.getElementById('icThrImg');\r\n\t\t\t\t\t\t\t\tvar pic = document.getElementById('icImg');\r\n\t\t\t\t\t\t\t\telemThr.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';\r\n\t\t\t\t\t\t\t\telemThr.style.display = '';\r\n\t\t\t\t\t\t\t\tpic.style.display = 'none';\r\n\t\t\t\t\t\t\t\tpic.setAttribute('clk', elemThr.getAttribute('imgsel'));\r\n\t\t\t\t\t\t\t\tdocument.getElementById('imgNATxt').style.display = 'block';\r\n\t\t\t\t\t\t\t\tdocument.getElementById('mainImgHldr').style.backgroundImage = 'none';\r\n\t\t\t\t\t\t\t\treturn;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tvar image = document.createElement('img');\r\n\t\t\t\t\t\t\timage.src=  'https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l500.jpg';\r\n\t\t\t\t\t\t\tif(image.complete ||  image.readyState === 4){\r\n\t\t\t\t\t\t\t\tpicTimer2=new Date().getTime();\r\n\t\t\t\t\t\t\t\tpicOnLoad(true);\r\n\t\t\t\t\t\t\t}else{\r\n\t\t\t\t\t\t\t    image.onload = function(){\r\n\t\t\t\t\t\t\t    \tpicTimer1=new Date().getTime();\r\n\t\t\t\t\t\t\t    \tpicOnLoad(true);\r\n\t\t\t\t\t\t\t    };\r\n\t\t\t\t\t\t\t    image.onerror = function(){\r\n\t\t\t\t\t\t\t\t\tpicOnError();\r\n\t\t\t\t\t\t\t\t};\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\timage.onerror = function(){\r\n\t\t\t\t\t\t\t\tpicOnError();\r\n\t\t\t\t\t\t\t};\r\n\r\n\t\t\t\t\t\t\tvar backgroundImgTest = 'false';\r\n\t\t\t\t\t\t\tif (backgroundImgTest === 'true') {\r\n\t\t\t\t\t\t\t\tvar bigImage = document.createElement('img');\r\n\t\t\t\t\t\t\t\tbigImage.src = '';\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t</script>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</tbody>\r\n\t\t\t</table>\r\n\t\t</div>\r\n\t\t<div class=\"spr\"></div>\r\n\t\t<div class=\"pt-p\" style=\"visibility:hidden;\" id=\"zoom_enlarge_msg_cnt\">\r\n\t\t\t<span class=\"pt-i pt-tx  \" id=\"zoom_enlarge_msg\"  href=\"javascript:;\"></span>\r\n\t\t</div>\r\n\t<div id=\"vi_zoom_trigger_mask\" class=\"zoom_trigger_mask\">\r\n\t\t<div id=\"vi_zoom_trigger_mrk\">\r\n\t\t\t<div class=\"vi_zoom_trigger_msg\">\r\n\t\t\t\t<table>\r\n\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t<td><b style=\"display: block; font-family: 'Helvetica neue',Helvetica,Arial,Verdana,Sans-serif; font-size: 12px;\">Mouse over to zoom<br>-<br>Click to enlarge</b></td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</table>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<span id=\"zoom_selector\" class=\"zoom_slct\"></span>\r\n\r\n\t<div id=\"zoom_img_mask\" class=\"zoom_mask\"></div>\r\n\r\n\t<div id=\"zoom_main_cntr\" class=\"zoom_cntr\">\r\n\t\t\t<div id=\"zoom_main_img_cntr\" class=\"zoom_img_cntr\">\r\n\t\t\t\t<img id=\"zoom_main_img\" style=\"display: none;\" alt=\"\" src=\"https://ir.ebaystatic.com/pictures/aw/pics/s.gif\">\r\n\t\t\t</div>\r\n\t</div>\r\n<div class=\"vi_pl_panel\" id=\"viEnlargeImgLayer\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"vi_img_crsl_cmp\">\r\n\t<div class=\"vi_img_crsl_imgpl \">\r\n\t\t<a title=\"To Previous Image\" aria-label=\"To Previous Image\" class=\"pntrArr pntrArrPrev pntrArrImg activePrev\" href=\"javascript:;\"></a>\r\n\t\t<table class=\"vi_img_crsl_tbl\">\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td class=\"vi_img_crsl_tbl\">\r\n\t\t\t\t\t\t<div class=\"vi_img_crsl_ctr\">\r\n\t\t\t\t\t\t\t<img id=\"viEnlargeImgLayer_img_ctr\" alt=\"\" src=\"https://ir.ebaystatic.com/pictures/aw/pics/s.gif\" clk=\"\">\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t\t<a title=\"To Next Image\" aria-label=\"To Next Image\" class=\"pntrArr pntrArrNext pntrArrImg activeNext\" href=\"javascript:;\"></a>\r\n\t</div>\r\n</div>\r\n\r\n<div class=\"vi_img_crsl_fspl_trg\">\r\n\t\t\t\t\t<div class=\"vi_img_crsl_fspl vi_crsl_fspl_blk\">\r\n\t\t\t\t\t\t<div style=\"width:100%; padding-top: 15px;\">\r\n\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t<div id=\"viEnlargeImgLayer_layer_fs_slider\" class=\"vi-filmstp\" style=\"width:500px\">\r\n\t\t\t<a role=\"presentation\" href=\"javascript:;\" class=\"gspr flm-btn pre\" aria-label=\"Previous\"></a>\r\n\t\t\t\t<div id=\"viEnlargeImgLayer_layer_fs\" class=\"fs_imgc\" style=\"\">\r\n\t\t\t\t\t<ul class=\"lst icon\" >\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"viEnlargeImgLayer_layer_fs_thImg0\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"0\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"viEnlargeImgLayer_layer_fs_thImg1\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/Yo4AAOSwj85YQZ4h/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"1\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"viEnlargeImgLayer_layer_fs_thImg2\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/slsAAOSwEzxYQZ4h/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"2\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"viEnlargeImgLayer_layer_fs_thImg3\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/m0gAAOSw44BYQZ4i/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"3\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t</ul>\r\n\t\t\t\t</div>\r\n\t\t\t\t<a role=\"presentation\" href=\"javascript:;\" class=\"gspr flm-btn nxt\" aria-label=\"Next\"></a>\r\n\t\t\t<div class=\"sel  hide\"></div>\r\n\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\r\n<div class=\"\">\r\n\t\t<div id=\"vi_main_img_fs_slider\" class=\"vi-filmstp\" style=\"width:500px\">\r\n\t\t\t<a role=\"presentation\" href=\"javascript:;\" class=\"gspr flm-btn pre hide \" aria-label=\"Previous\"></a>\r\n\t\t\t\t<div id=\"vi_main_img_fs\" class=\"fs_imgc\" style=\"height:79px; width:301px\">\r\n\t\t\t\t\t<ul class=\"lst icon\" >\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"vi_main_img_fs_thImg0\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"0\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"vi_main_img_fs_thImg1\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/Yo4AAOSwj85YQZ4h/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"1\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"vi_main_img_fs_thImg2\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/slsAAOSwEzxYQZ4h/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"2\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t<li>\r\n\t\t\t\t\t\t\t\t<a id=\"vi_main_img_fs_thImg3\" href=\"javascript:;\" title=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" class=\"pic pic1\">\r\n\t\t\t\t\t\t\t\t\t<table class=\"img\">\r\n\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t<td\tclass=\"tdThumb\" style =\"height:64px; \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/m0gAAOSw44BYQZ4i/s-l64.jpg\" style=\"max-width:64px;max-height:64px\"   index=\"3\" onerror=\"try{this.src='//p.ebaystatic.com/aw/pics/cmp/icn/iconImgNA_96x96.gif';}catch(e){}\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t</ul>\r\n\t\t\t\t</div>\r\n\t\t\t\t<a role=\"presentation\" href=\"javascript:;\" class=\"gspr flm-btn nxt hide \" aria-label=\"Next\"></a>\r\n\t\t\t<div class=\"sel  hide\"></div>\r\n\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"vi-pbh pp-ic500\" style=\"margin-top:10px;\">\r\n\t\t<table class=\"vi-centerclass\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td width=\"\" style=\"text-align:centervertical-align:top;\">\r\n\t\t\t\t\t<div class=\"vi-slt-c vi-slt-instSale\">\r\n\t\t\t\t\t\t\t\t<span id=\"inst_sale_msg\">\r\n\t\t\t\t\t\t\t\t\t<i></i><b>Have one to sell?</b>\r\n\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t\t\t\t<a _sp=\"p2047675.l2567\" class=\"vi-slt-instSale-lnk \" rel=\"nofollow\" href=\"http://cgi5.ebay.co.uk/ws/eBayISAPI.dll?SellLikeItem&item=262745174897&rt=nc&_trksid=p2047675.l2567\">Sell it yourself</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t<tr id=\"vi_solt_inst_cnt\">\r\n\t\t\t\t\t<td align=\"center\">\r\n\t\t\t\t\t\t<div class=\"vi-slt-or-icon\"></div>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<div><a class=\"vi-is-solt \" href=\"https://instantsale.ebay.com/offer.html?epid=1023166420&pageID=2047675&_trksid=p2047675.l3359\" rel=\"nofollow\">Get an immediate offer</a></div>\r\n\t\t\t\t\t\t\t<div>Up to<span id=\"vi_solt_price_ph\"></span></div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t</tr>\r\n\r\n\t\t\t\t</table>\r\n\t\t</div>\r\n</div>\r\n\r\n<div id=\"RightSummaryPanel\" class=\"rsp-c\" style=margin-top:0;>\r\n\t\t\t<div style=\"clear: both;\"></div>\r\n\t\t\t\t<div class=\"vi-swc-wrapper vi-grBr\">\r\n\t    <div class=\"vi-swc-title\">\r\n\t    \t<h2>Shop with confidence</h2>\r\n\t        </div>\r\n\t    <div class=\"vi-swc-content\">\r\n\t\t\t        <div class=\"vi-swc-icon-wrapper\">\r\n\t\t\t        \t<span id=\"vi-swc-embg-pound\" role=\"img\" class=\"vi-swc-icon vi-swc-embg-pound\" title=\"\"></span>\r\n\t\t\t            </div>\r\n\t\t\t        <div class=\"vi-swc-message-wrapper\">\r\n\t\t\t        \t<div class=\"vi-swc-header\">eBay Money Back Guarantee</div>\r\n\t\t\t            <div class=\"vi-swc-message\">\r\n\t\t\t           \t\t<span>Get the item you ordered or your money back. </span>\r\n\t\t\t            \t<a href=\"https://pages.ebay.co.uk/ebaybuyerprotection/index.html?_trksid=p2047675.m5391.l9995\" target=\"_blank\">\r\n\t\t                \t\t\tLearn more<span class=clipped> - opens in new window or tab</span>\r\n\t\t                \t\t</a>\r\n\t\t\t                </div>\r\n\t\t\t        </div>\r\n\t\t\t    </div>\r\n\t\t    </div>\r\n\t<div class=\"si-cnt si-cnt-eu\" style=\"height:100%;\">\r\n\r\n\t<div >\r\n\t\t<div class=\"si-inner\">\r\n\t\t\t<div class=\"si-content \">\r\n\t\t\t\t<h2 class=\"si-ttl\">\r\n\t\t\t\t\t\t\tSeller information</h2>\r\n\t\t\t\t<div class=\"bdg-90\">\r\n\t\t\t\t\t\t\t<div class=\"mbg\">\r\n        <a href=\"https://www.ebay.co.uk/usr/twtoolsuperstore?_trksid=p2047675.l2559\" aria-label=\"Member ID:&nbsp;twtoolsuperstore\" id=\"mbgLink\"> <span class=\"mbg-nw\">twtoolsuperstore</span></a>\r\n        <span class=\"mbg-l\">\r\n\t            (<a href=\"http://feedback.ebay.co.uk/ws/eBayISAPI.dll?ViewFeedback&userid=twtoolsuperstore&iid=262745174897&ssPageName=VIP:feedback&ftab=FeedbackAsSeller&rt=nc&_trksid=p2047675.l2560\" title=\"Feedback score: 47104\">47104</a>\r\n\t                    <img\r\n\t                            alt=\"Feedback score: 47104\"\r\n\t                            title=\"Feedback score: 47104\"\r\n\t                            src=\"https://ir.ebaystatic.com/pictures/aw/pics/star-12.gif\"\">)</span>\r\n            </div>\r\n<div id=\"si-fb\" >99.8%&nbsp;Positive Feedback</div>\r\n\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"si-rlDot\"></div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"si-bdg si-pd-eu\">\r\n\t\t\t\t\t<div id=\"followSeller\" style=\"display:inline;\"><div class=\"fol-widget  heart\" id=\"w1-11\" data-entity-type=\"person\">\r\n    <a aria-describedby=\"fol-overlay-msg\" class=\"\">\r\n\t         <div class=\"heartIcon\"></div>\r\n\t\t\t\t<span>Save this seller</span>\r\n        </a>\r\n      </div>\r\n  </div></div>\r\n\t\t\t\t<div>\r\n\t\t\t\t\t\t<div class=\"si-pd-a \">\r\n\t\t\t\t\t\t\t<a href=\"https://contact.ebay.co.uk/ws/eBayISAPI.dll?ShowSellerFAQ&iid=262745174897&requested=twtoolsuperstore&redirect=0&frm=284&rt=nc&_trksid=p2047675.l1499&ssPageName=PageSellerM2MFAQ_VI\" id=\"vi-asq-top-url\">Contact seller</a>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t<div id=\"storeSeller\" style=\"display:inline;\"><div class=\"si-cleanup\">\r\n\t\t\t\t\t<a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD?_trksid=p2047675.l2563\"  title=\"Visit Shop&nbsp;TW Wholesale LTD\">Visit Shop</a>\r\n\t\t\t\t</div>\r\n\t\t\t</div><div class=\"si-pd-a\" style=\"overflow: hidden;\">\r\n\t\t\t\t\t\t<a href=\"https://www.ebay.co.uk/sch/twtoolsuperstore/m.html?item=262745174897&rt=nc&_trksid=p2047675.l2562\" id=\"vi-see-all-lnk\">See other items</a>\r\n\t\t\t\t\t\t<div class=\"vi-soi-inline-cnt\">\r\n\t\t<div id=\"vi-soi-inline-div\" style=\"display:none;padding-top:10px;\">\r\n\t\t<span style=\"float:left;color:#333;\">More...</span>\r\n\t\t<span><a href=\"#\"  style=\"font-size:12px;margin-right:4px;float:right;\" id=\"vi-soilayer-alllnk\">See all</a></span>\r\n\t\t\t<div style=\"clear:both;\"></div>\r\n\t\t<div style=\"height:auto;\">\r\n\t<div id=\"vi-soilayer-inner-cntr\" style=\"margin:5px 0px 10px 0px;height:60px;\"></div>\r\n\t<div id=\"vi-soilayer-inner-cntr-none\" style=\"display:none;\">twtoolsuperstore has no other items for sale.</div>\r\n\t</div>\r\n\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t\t\t\t<div class=\"si-rlDot\"></div>\r\n\t\t\t\t\t\t\t<div class=\"si-pd\">\r\n\t\t\t\t\t\tRegistered as a business seller</div>\r\n\t\t\t\t\t\t</div>\r\n\t</div>\r\n</div>\r\n</div>\r\n<div id=\"scandal100562\" title=\"ADVERTISEMENT\"></div>\r\n\t\t\t\t\t</div>\r\n\t<div id=\"LeftSummaryPanel\" class=\"lsp-c lsp-cRight  lsp-cL500  lsp-de\">\r\n\t\t<div class=\"vi-swc-lsp\">\r\n\t\t\t\t<div style=\"\"  class=\"\">\r\n\t\t<h1 class=\"it-ttl\" itemprop=\"name\" id=\"itemTitle\"><span class=\"g-hdn\">Details about  &nbsp;</span>OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120</h1><div id=\"vi-itt-filler\"></div>\r\n\t\t\t<!-- DO NOT change linkToTagId=\"rwid\" as the catalog response has this ID set  -->\r\n\t\t<span\r\n\t\t\t\t\tclass=\"vi-core-prdReviewCntr \">\r\n\t\t\t\t\t<div id=\"histogramid\">\r\n\t\t\t\t\t<div class=\"overlay-top\">\r\n\t\t\t\t\t\t<div class=\"ebay-content-wrapper\">\r\n\t<span class=\"ebay-review-start-rating\">\r\n\t\t4.8</span>\r\n  \t<span class=\"ebay-reviews-count\">average based on 18 product ratings</span>\r\n\t\t\t</div>\r\n\r\n<div class=\"reviews-histogram\">\r\n  <ul class=\"ebay-review-list\">\r\n  \t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"5&nbsp;Stars, 15 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">5</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:83%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>15</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"4&nbsp;Stars, 3 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">4</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:17%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>3</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"3&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">3</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"2&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">2</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"1&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">1</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t</ul>\r\n</div>\r\n\r\n<div class=\"pie-container\">\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Would recommend\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Would recommend</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Good value\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Good value</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Good quality\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Good quality</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t</div>\r\n<a _sp=\"p2047675.m3945.l7017\" class=\"btn btn-ter\" rel=\"nofollow\" href=\"https://www.ebay.co.uk/urw/product-reviews/1023166420?_itm=262745174897\">See all 13 reviews</a>\r\n<div class=\"reviews-up-arrow\">\r\n\t<div></div>\r\n</div></div>\r\n\t\t\t\t</div>\r\n\t\t\t<span id=\"\" class=\"rc\" itemprop=\"aggregateRating\"\r\n\t\t\t\titemscope=\"itemscope\" itemtype=\"https://schema.org/AggregateRating\">\r\n\t\t\t\t<a class=\"reviews-star-rating\" role=\"img\" href=\"#rwid\" aria-label=\"4.8 out of 5 stars, See all product reviews\" title=\"4.8 out of 5 stars, See all product reviews\">\r\n\t\t\t\t\t<span class=\"rs rs-fr\">\r\n\t\t\t\t\t\t<i class=\"fullStar\"></i>\r\n\t\t\t\t\t\t<i class=\"fullStar\"></i>\r\n\t\t\t\t\t\t<i class=\"fullStar\"></i>\r\n\t\t\t\t\t\t<i class=\"fullStar\"></i>\r\n\t\t\t\t\t\t<i class=\"fullStar\"></i>\r\n\t\t\t\t\t</span>\r\n\t\t\t\t</a>\r\n\r\n\t\t\t\t<a class=\"prodreview vi-VR-prodRev\" id=\"_rvwlnk\" href=\"#rwid\"> 18 product ratings</a>\r\n\t\t\t\t<span itemprop=\"ratingValue\" content=\"5.0\"></span>\r\n\t\t\t\t<span itemprop=\"reviewCount\" content=\"18\"></span>\r\n\t\t\t</span>\r\n\t\t</span>\r\n\r\n\t\t\t\t</div>\r\n\t<div class=\"it-rlBr  it-rlBr500 \" style=\"\">\r\n\t\t\t\t\t</div>\r\n\t\t\t<span id=\"vi-lkhdr-itmTitl\" class=\"u-dspn\">OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120</span>\r\n</div>\r\n\t\t<div id=\"mainContent\" role=\"main\" tabindex=\"-1\" aria-labelledby=\"itemInfoLabel\" class=\"is \" style=\"overflow:hidden;\" itemprop=\"offers\" itemscope itemtype=\"https://schema.org/Offer\">\r\n\r\n\t<h2 id=\"itemInfoLabel\" class=\"g-hdn\">Item information</h2>\r\n\t<form action=\"\" method=\"post\" name=\"viactiondetails\">\r\n \t\t<div class=\"nonActPanel \">\r\n\t\t<div>\r\n\t<div class=\"u-flL lable\">\r\n\t\tCondition:</div>\r\n\t<div class=\"u-flL condText  \"  id=\"vi-itm-cond\" itemprop=\"itemCondition\">New</div>\r\n\t\t</div>\r\n\r\n<!-- offscreen timer widget -->\r\n\t\t\t<!-- some comment -->\r\n\t\t\t<!-- volume pricing -->\r\n\t\t\t\t\t<!-- volume pricing ends -->\r\n\t\t\t\t<div class=\"u-cb spcr \"></div>\r\n<div class=\"\">\r\n\t<div class=\"u-flL lable quantity\"><label for=\"qtyTextBox\">Quantity:</label></div>\r\n\t<div>\r\n\t\t<div class=\"u-flL qtyCntVal vi-bboxrev-posabs vi-bboxrev-dsplinline \">\r\n\t\t\t<div id=\"w1-14-_errIcon\" class=\"errorIcon\"><!-- err_qty_icon -->\r\n\t\t\t\t<img src=\"https://ir.ebaystatic.com/pictures/aw/pics/s.gif\" class=\"errorimg\" alt=\"Error icon\">\r\n\t\t\t</div>\r\n\r\n\t\t\t<input class=\"qtyInput\" type=\"text\" aria-describedby=\"w1-14-_errMsg\" autocomplete=\"off\" size=\"4\" value=\"1\" name=\"quantity\" id=\"qtyTextBox\" >\r\n\r\n\t\t\t<span class=\"qtyTxt vi-bboxrev-dsplblk  feedbackON\" style=\"\" >\r\n\t\t\t\t\t\t<span id=\"qtySubTxt\">\r\n\t\t\t\t\t\t\t\t<span class=\"\">\r\n\t\t\t\t\t\t\t\tMore than 10 available</span>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t<span class=\"soldwithfeedback\">\r\n\t\t\t\t\t\t\t\t\t\t<span class=\"vi-qty-vert-algn vi-qty-slash\"> / </span>\r\n        <span class=\"vi-qtyS-hot-red  vi-qty-vert-algn vi-qty-pur-lnk\">\r\n\t\t\t<a href=\"https://offer.ebay.co.uk/ws/eBayISAPI.dll?ViewBidsLogin&amp;item=262745174897&amp;rt=nc&amp;_trksid=p2047675.l2564\">820 sold</a></span>\r\n\t\t<span class=\"slash\"> / </span><span class=\"byrfbdk_atf  v1\">\r\n\t\t<span id=\"byrfdbk_atf_lnk\" trk=\"p2047675.l8434\"><a href=\"javascript:;\" trk=\"p2047675.l8433\" id=\"byrfdbk_atf_lnk_sm\">See Feedback</a>\r\n\t\t\t</span>\r\n\t</span>\r\n</span>\r\n\t\t\t\t\t\t\t</span>\r\n\t\t\t\t</span>\r\n\r\n\t\t\t<div id=\"qtyErrMsg\" role=\"alert\"><div id=\"w1-14-_errMsg\" class=\"u-cb err\"> </div></div>\r\n\t\t\t<!-- generating Id's array -->\r\n\t\t\t<div class=\"u-dspn\">\r\n\t\t\t\t<b id=\"w1-14_qtyErr_0\">Please enter a quantity of $qty_dummy$ or less</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_1\">Please enter a quantity of 1</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_2\">Purchases are limited to $qty_dummy$ per buyer</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_3\">Please enter quantity of 1 or more</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_4\">Please enter a lower number</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_5\">Choose quantity that is less than $qty_dummy1$ or equal to $qty_dummy$</b>\r\n\t\t\t\t<b id=\"w1-14_qtyErr_6\">You can only choose quantity that is equal to $qty_dummy$</b>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\t<div class=\"u-cb spcr\"></div>\r\n\t<div class=\"u-cb spcr \"></div>\r\n\t\t<div class=\"u-cb spcr vi-bbox-spcr6 \"></div>\r\n\t</div>\r\n</div>\r\n\t\t<div class=\"actPanel \">\r\n\t\t<table width=\"100%\" class=\"vi-bboxrev-tbl\">\r\n\t\t\t<tr>\r\n\t\t\t\t<td >&nbsp;</td>\r\n\t\t\t\t<td class=\"vi-bboxrev-cntrcell\">\r\n\t<div class=\"u-cb spcr  vi-bbox-spcr15 \"></div>\r\n\r\n\t\t\t\t<div class=\"u-cb\">\r\n\t\t\t\t\t<div class=\"vi-bbox-dspn u-flL lable binLable\" id=\"prcIsum-lbl\">Price:</div>\r\n\t\t\t\t\t\t<div  id=\"vi-mskumap-none\" style=\"\"  class=\"u-flL w29 vi-price \">\r\n\r\n\t<span class=\"notranslate\" id=\"prcIsum\" itemprop=\"price\"  style=\"\" content=\"17.25\">£17.25</span>\r\n\t<span itemprop=\"availability\" content=\"https://schema.org/InStock\"></span>\r\n\t<span itemprop=\"priceCurrency\" content=\"GBP\"></span>\r\n\t<!--Added for VAT message - DE site. Show VAT included msg just below the price. Converted price message should come after this message.-->\r\n\t<!-- Vat Excluded message -->\r\n\t</div>\r\n<div id=\"isum-shipCostDiv\" class=\" sh-CostBB\" style=\"clear:both;\"></div>\r\n\t\t\t\t\t\t<span class=\"pdT8 \" id=\"vi-bboxrev-othrprices\">\r\n\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t<!-- inserting code for another button -->\r\n\t\t\t\t\t\t<!-- code ends  -->\r\n\t\t\t\t\t\t<div class=\"u-flL\">\r\n\t\t\t\t\t\t\t<a  role=\"button\" _sp='p2047675.l1356' id=\"binBtn_btn\"   style=\"\"   class=\"btn btn-prim  vi-VR-btnWdth-XL \" href=\"https://offer.ebay.co.uk/ws/eBayISAPI.dll?BinController&rev=723&fromPage=2047675&item=262745174897&gch=1&fb=1\" vib=\"vib\" rel=\"nofollow\"\">\r\n\t\t\t\t\t\t\tBuy it now<span class=\"clipped\"> - </span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t<div class=\"oly_upnl\" id=\"streamLineBinOly\"><div id='streamline-bin-layer'>\r\n            <div id = streamline-bin-layer-content>\r\n                <div id=\"sbin-image-content\">\r\n                    <img id=\"sbin-image\" src=\"\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\">\r\n                </div>\r\n                <div id=\"sbin-text-content\">\r\n                    <p class=\"sbin-title\">OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip P080120</p>\r\n                </div>\r\n            </div>\r\n\r\n            <div style=\"clear:both\"></div>\r\n\r\n            <div id='sbin-buttons'>\r\n                <button id='sbin-signin-btn' type='button'>Sign in for checkout</button>\r\n                <button id='sbin-gxo-btn' type='button'>Check out as guest</button>\r\n            </div>\r\n        </div>\r\n\r\n    </div>\r\n\t</div>\r\n\t\t\t\t\t</div>\r\n\r\n\t\t\t\t<div class=\"u-cb spcr vi-bbox-spcr10\"></div>\r\n\t\t<div class=\"u-cb  \">\r\n\t\t\t\t<div class=\"vi-bbox-dspn u-flL lable\">&nbsp</div>\r\n\t\t\t\t<div class=\"vi-bbox-dspn u-flL w29\">&nbsp</div>\r\n\t\t\t\t<span>\r\n\t\t\t\t\t\t\t<div class=\"oly_upnl\" id=\"atcRedesignId_overlay-atc-container\"><div class=\"atc-layer-wrapper\">\r\n\t\t\t\t<div class=\"atc-layer-container\" style=\"display:none;\">\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"atcThrobber\">\r\n\t\t\t\t\t<div class=\"vi-spinner\" role=\"img\" aria-label=\"Busy animation.\" style=\"\">\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<br>\r\n\t\t\t\t\t<span class=\"vi-spinnerText\">Adding to your basket</span>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"node-service-err\">\r\n\t\t\t\t\t<span class=\"viicon-priority\" aria-label=\"Priority\" role=\"img\"></span>\r\n\t\t\t\t\t<div class=\"node-service-errText\">\r\n\t\t\t\t\t\tThe item you've selected wasn't added to your basket. </div>\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t<a  role=\"button\" _sp='p2047675.l1473' id=\"atcRedesignId_btn\"   style=\"\"   class=\"vi-bbox-atcaslink\" href=\"https://cart.payments.ebay.co.uk/sc/add?item=iid:262745174897,qty:1&srt=0100030000005032964d152fb8b8d6fe69bffb09ff90bbffac89f2cd28d83238c1aa29906632d376ce127929b0866a68deef6269fe9696cdb2a597d4af08b2dfe8e3710c004c97ecf592d4a27605b0e89f13c72c3548e1&ssPageName=CART:ATC\" vib=\"vib\" rel=\"nofollow\"\">\r\n\t\t\t\t\t\t\tAdd to basket<span class=\"clipped\"> - </span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t<div class=\"u-cb spcr\"></div>\r\n\t\t\t</td>\r\n\t\t\t<td>&nbsp;</td>\r\n\t\t\t</tr>\r\n\t\t\t</table>\r\n\t\t</div>\r\n\r\n\t<div class=\"watchListCmp \">\r\n<table width=\"100%\" class=\"vi-bboxrev-tbl\">\r\n\t\t<tr>\r\n\t\t\t<td>&nbsp;</td>\r\n\t\t\t<td class=\"vi-bboxrev-cntrcell\">\r\n<div class=\" \">\r\n\t\t\t\t\t<div id=\"vi-atl-lnk\" class=\"vi-atw-btm-lnk  vi-cleanup-atwl \" style=\"\">\r\n\t\t<a i=\"-99\" n=\"Watch list\" href=\"https://www.ebay.co.uk/myb/WatchListAdd?_trksid=p2047675.l1360&SubmitAction.AddToListVI=x&item=262745174897&rt=nc&srt=0100030000005082c507b5f68dc17e7ca3f2de86d0fb37b68e51bf8f2924061289248df3aaa4b0752fe8686b4591cd6af135d5898309cd1a9873b901952278dbb18d5e1709cec2c73080a85a65ca8da7f9d546c99264f1&wt=9fcdab228c5caba3f365c5bd0278b26d&ssPageName=VIP:watchlink:top:en&sourcePage=4340\">\r\n\t\t\t<span class=\"vi-atw-icn\"></span>\r\n\t\t\t<span class=\"vi-atw-txt\">Add to Watch list</span>\r\n\t\t\t<span class=\"vi-rmw-txt\">Watching</span>\r\n\t\t</a>\r\n\t</div>\r\n\r\n\t<div id=\"vi-atw-full\" class=\"vi-atw-btm-lnk \" style=\"display:none;\">\r\n\t\t<span class=\"vi-atw-full-lnk\">\r\n\t\t\t<span class=\"vi-atw-icn\"></span><span class=\"vi-atw-txt\">Watch list is full</span>\r\n\t\t</span>\r\n\t</div>\r\n\r\n\t</div>\r\n\r\n\r\n\t\t\t\t<div class=\"vi-bbox-dspn u-cb spcr\"></div>\r\n\t\t\t\t<span class=\"vi-bbox-marLft20\"><div class=\"vi-bbox-dspn u-flL lable\">&nbsp;</div>\r\n<div class=\"vi-bbox-dspn u-flL w29\">&nbsp;</div>\r\n\t\t</span>\r\n\t\t\t\t\t\t\t\t<div class=\"u-cb spcr vi-bbox-spcr22\"></div>\r\n\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t<td>&nbsp;</td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t</table>\r\n\t\t\t\t</div><div id=\"why2buy\"><div class=\"w2b w2bsls\">\r\n    <div class=\"w2b-cnt w2b-3 w2b-red\"><span class=\"w2b-sgl\">100% buyer satisfaction</span></div>\r\n        <div class=\"w2b-cnt w2b-3 w2b-brdr\"><span class=\"w2b-sgl\">Click &amp; Collect</span></div>\r\n        <div class=\"w2b-cnt w2b-3 w2b-brdr\"><span class=\"w2b-sgl\">337 watchers</span></div>\r\n        </div>\r\n</div><div class=\"u-cb spcr\"></div><div id=\"incentiveDiv\" class=\" \">\r\n\t\t<div class=\"incContDiv   \">\r\n\t\t<div id=\"rewardsDiv\">\r\n  \t\t\t\t\t\t<div id=\"eBayNectarMsg\">\r\n\t\t\t<div class=\"bk_fl\">\r\n\t\t\t\t<img src=\"//p.ebaystatic.com/aw/pics/uk/rewards/Nectar/logo-35x30.png\" class=\"nminW_30 nminH_30 nmaxW_35 nmaxH_35\">\r\n\t\t\t</div>\r\n\t\t\t<div class=\"bk_fl nt_10_33 nmarl_7\">\r\n\t\t\t\t<div>Collect <b>17</b> Nectar points </div>\r\n\t\t\t\t\t<div><a href=\"https://reward.ebay.co.uk/rwdwebui/nectar/myebay/main?item-id=262745174897&amp;ru=https%3A%2F%2Fwww.ebay.co.uk%2Fitm%2F262745174897%3F_trkparms%3Daid%3D111001%26algo%3DREC.SEED%26ao%3D1%26asc%3D20180816085401%26meid%3Dd32116adcf2844ff94607ae840a3dda0%26pid%3D100970%26rk%3D1%26rkt%3D15%26mehot%3Dpp%26sd%3D262745174897%26itm%3D262745174897%26_trksid%3Dp2481888.c100970.m5481&amp;_trksid=p2047675.l4917\">Redeem your points</a> <span>| <a href=\"https://pages.ebay.co.uk/nectar-rewards/full-tncs.html\" target=\"_blank\">Conditions<span class=\"g-hdn\" style=\"font-size: 0;height: 0;line-height: 0;outline: medium none;overflow: hidden;position: absolute;width: 0;z-index: -1;\">for uk nectar points - opens in a new window or tab</span></a></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n  \t\t\t\t</div>\r\n\t</div>\r\n\r\n\t<!-- Hiral -->\r\n\t\t<!-- Hiral -->\r\n\t<div class=\"u-cb spcr\"></div>\r\n<div class=\"u-flL lable\">Collection:</div>\r\n\r\n<div class=\"u-flL sh-col\">Click & Collect - Select store at checkout.</div>\r\n\t<div id=\"vi-lkhdr-v4-plchdr\"></div>\r\n\t\t\t<div id=\"shippingSummary\"><div class=\"u-cb spcr\"></div>\r\n\t\t\t\t\t<div id=\"sh-gspLogoWrapper\" style=\"display:none;\">\r\n\t\t<div class=\"u-cb spcr\"></div>\r\n<div class=\"u-flL lable\">\r\n\t\t\t<div class=\"sh-gspLogo\"></div>\r\n\t\t</div>\r\n\t\t<div class=\"u-flL sh-col\">\r\n\t\t\t\t\t<div class=\"sh-gspFirstLine\" style=\"\">No additional import charges on delivery.</div>\r\n\t\t\t\t\t<div class=\"sh-gspSecondLine \" >\r\n\t\t\t\t\t\tThis item will be sent through the Global Shipping Programme and includes international tracking. <a href=\"https://pages.ebay.co.uk/help/buy/shipping-globally.html\" target=\"_blank\">Learn more<b class=\"hideforacc\">- opens in a new window or tab</b></a></div>\r\n\t\t\t\t\t<div class=\"sh-gspDashedBorder\"></div>\r\n\t\t\t\t\t</div>\r\n\t</div>\r\n\r\n\r\n<div>\r\n\t<div class=\"u-flL lable\" id=\"shippingPlaceHolderId\">Postage:</div>\r\n\t<div class=\"u-flL sh-col\">\r\n\t<span id=\"shSummary\">\r\n    <span id=\"fshippingCost\" class=\"notranslate sh-fr-cst \">\r\n                  \t\t<span>Free</span>\r\n              \t\t</span>\r\n\t\t\t\t<span id=\"fShippingSvc\">\r\n\t\t\t\tEconomy Delivery<!-- GSP -->\r\n\t\t\t\t\t\t</span>\r\n\t\t<span aria-hidden=\"true\"> | </span>\r\n\t\t<span>\r\n\t\t\t<a id=\"e2\" href=\"#shpCntId\" aria-describedby=\"shippingPlaceHolderId\" class=\"vi-ds3-ter-a si-pd sh-nwr\"> See details </a>\r\n\t\t</span>\r\n\t<script type=\"text/javascript\">\r\n\t\tfunction getElementsByClassName(e,t){var n=[];var r=new RegExp(\"(^| )\"+t+\"( |$)\");var i=e.getElementsByTagName(\"*\");for(var s=0,o=i.length;s<o;s++)if(r.test(i[s].className))n.push(i[s]);return n}\r\n\t</script>\r\n\t<script type=\"text/javascript\">\r\n\t\t\t\tvar shElemntArry = getElementsByClassName(document.body,'sh-CostBB'); for(var i = shElemntArry.length - 1; i >= 0; --i){shElemntArry[i].style.display = 'none';shElemntArry[i].innerHTML = \"Free P&amp;P\";}\r\n\t\t\t\tvar shElemntArry = getElementsByClassName(document.body,'sh-CostBB-lkdhdr'); for(var i = shElemntArry.length - 1; i >= 0; --i){shElemntArry[i].style.display = 'inline';shElemntArry[i].innerHTML = \"Free P&amp;P\";}\r\n\t\t\t</script>\r\n\t\t\t<script type=\"text/javascript\">\r\n\t\t\t\t\tvar convP = document.getElementById('convbinPrice'); if(convP){var x = convP.getElementsByTagName(\"SPAN\")[0]; if(x){x.style.display = 'none';};};\r\n\t\t\t\t</script>\r\n\t\t\t\t<div id=\"sh-not-mayBe\" style=\"display:none\"></div>\r\n</span>\r\n\t<!-- Build Estimated delivery and CBT message -->\r\n\t</div>\r\n\t<div class=\"clear\"></div>\r\n</div></div><div id=\"itemLocation\"><div class=\"lable u-flL vi-acc-hide\">&nbsp;</div>\r\n\t\t\t\t\t<div class=\"u-flL iti-w75 \">\r\n\t\t\t\t\t\t<div class=\"iti-eu-txt iti-spacing\">\r\n<div class=\"iti-eu-label vi-u-flL\" id=\"\" style=\"\">\r\n\tItem location:</div><div class=\"iti-eu-bld-gry \">\r\n\t\t\t<span itemprop='availableAtOrFrom'>Swadlincote, United Kingdom</span>\r\n\t\t</div>\r\n\t\t<div class=\"clear\"></div>\r\n</div>\r\n</div>\r\n\t\t\t\t\t<div class=\"u-cb\"></div>\r\n\t\t\t\t</div><div class=\"u-cb\"></div>\r\n\t\t<div id=\"shipsTo\"><div class=\"lable u-flL vi-acc-hide\">&nbsp;</div>\r\n\t\t\t\t\t<div class=\"u-flL iti-w75\">\r\n\t\t\t\t\t\t<div id=\"shipsToSummary\">\r\n\t<div class=\"iti-eu-txt iti-spacing\">\r\n\t\t<div id=\"vi-acc-shpsToLbl\"  class=\"iti-eu-label vi-u-flL\">Posts to: </div>\r\n\t\t<div id=\"vi-acc-shpsToLbl-cnt\" class=\"iti-eu-bld-gry vi-shp-pdg-rt\">\r\n\t\t\t<span itemprop=\"areaServed\">\r\n\t\t\t<span class=\"sh-gspShipsTo\">\r\n\t\t\t\t\t \tUnited Kingdom and many other countries\r\n\t\t\t\t\t\t| <a href=\"#shpCntId\" id=\"e5\"  title=\"See details about postage\" class=\"vi-ds3-ter-a\"> See details </a>\r\n\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t</span>\r\n\t\t</div>\r\n\t</div>\r\n\t</div>\r\n</div>\r\n\t\t\t\t</div><div id=\"hideDelSec\" style=\"\">\r\n\t\t<div id=\"deliverySummary\"><div class=\"u-cb spcr\"></div>\r\n\t\t\t\t\t<div id=\"impchSummary\" style=\"display: none;\">\r\n\t<div class=\"u-flL lable\">Import charges:</div>\r\n\t<div class=\"u-flL sh-col\">\r\n\t\t<div>\r\n\t\t\t<span id=\"impch_show\" style=\"display: none;\">\r\n\t\t\t\t<span id=\"impchCost\" class=\"sh-impchCost\"></span>\r\n\t\t\t\t (amount confirmed at checkout) </span>\r\n\t\t\t<span id=\"impch_xo\" style=\"\">To be provided at checkout </span>\r\n\t\t\t<span class=\"sh-bubble\">\r\n\t\t\t\t<a id=\"imprthlp\" class=\"sh-qmark\" href=\"javascript:;\">&nbsp;<b class=\"g-hdn\">help icon for delivery - opens a layer</b></a>\r\n\t\t\t</span>\r\n\t\t\t<div class=\"oly_upnl\" id=\"imprtoly\"><div class=\"vi-shp-shpolay\"  aria-live=\"assertive\" role=\"alert\">\r\n\t\t\t\t\t <span id=\"vi-sh-imp-nonEU\" style=\"display:none\">This amount includes applicable customs duties, taxes, brokerage and other fees. This amount is subject to change until you make payment. For additional information, see the Global Shipping Programme <a href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#programfees\" target=\"_blank\">terms and conditions<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t\t\t <span id=\"vi-sh-imp-EU\" style=\"\">This amount includes applicable customs duties, taxes, brokerage and other fees. This amount is subject to change until you make payment. If you reside in an EU member state besides UK, import VAT on this purchase is not recoverable. For additional information, see the Global Shipping Programme <a href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#programfees\" target=\"_blank\">terms and conditions<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t</div>\r\n\t\t</div>\r\n\t<div class=\"u-cb spcr\"></div>\r\n</div><div class=\"u-flL lable\">Delivery:</div>\r\n\t<div class=\"u-flL sh-col\">\r\n\t<span id=\"delSummary\">\r\n\t\t\tDispatched within 1 day<span class=\"sh-bubble\">\r\n\t\t<a id=\"1DDHelp\" class=\"sh-qmark\" href=\"javascript:;\" alt=\"help icon for estimated delivery date - opens a layer\" title=\"help icon\">&nbsp;</a>\r\n\t</span>\r\n\t<div class=\"oly_upnl\" id=\"w1-25-overlay\"><div class=\"vi-shp-shpolay\">\r\n\t\t\t Seller has stated it will dispatch the item within 1 working day upon receipt of <a href=\"https://pages.ebay.co.uk/help/buy/contextual/domestic-handling-time.html\" target=\"_blank\">cleared payment<b class=\"hideforacc\"> - opens in a new window or tab</b></a>. <a href=\"https://pages.ebay.co.uk/help/buy/contextual/estimated-delivery.html\" target=\"_blank\">Estimated delivery dates <b class=\"hideforacc\"> - opens in a new window or tab</b></a> include seller's dispatch time, and will depend on postal service selected. Delivery times may vary, especially during peak periods.</div>\r\n\t</div>\r\n\t<!-- First shipping service's cost -->\r\n\t\t<!-- PC 5555 cases -->\r\n\t\t\t\t<div role=\"alert\" class=\"sh-del-frst sh-space\">\r\nEstimated by <span class=\"vi-acc-del-range\"><b>Wed. 30 Jan. </b></span></div>\r\n<div role=\"alert\" class=\"sh-del-frst sh-space\">\r\n<!-- Placeholder for DE listing and paypal accepted -->\r\n\t\t\t\t<div class=\"sh-del-scnd\">\r\n\t\t\t\t\tWhy not use <a id=\"expedited_link\" href=\"#shId\">Express Delivery</a>? Expected arrival date 28 Jan.</div>\r\n\t\t\t</div>\r\n</span>\r\n\t</div>\r\n\t</div></div>\r\n\t\t<div class=\"u-cb spcr\"></div>\r\n\t\t\t<div class=\"u-flL lable \" id=\"paymentsPlaceHolderId\" style=\"position:relative;top:4px;\">\r\n\tPayments:</div><div class=\"u-flL rpColWid\">\r\n\t<div id=\"payDet1\" class=\"vi-non-us-cclogo\">\r\n\t\t\t<img style=\"margin-right:10px;\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t class=\"pd-img\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t src=\"https://ir.ebaystatic.com/pictures/aw/pics/logos/logoPayPal_51x14.png\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t alt=\"PayPal\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t border=\"0\"/>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span style=\"position:relative;margin-right:-6px;top:3px;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"//pics.ebaystatic.com/aw/pics/uk/uk/logos/CC_icons.png\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t alt=\"Visa/MasterCard, American Express\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t title=\"Visa/MasterCard, American Express\"\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t class=\"pd-pp-cc-container pd-pp-cc-cpad\"/>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span class=\"pd-pp-cc-logo-wm pd-pp-cc-logo-wm-non-us\">Processed by PayPal</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"vi-cc-exp-txt\">\r\n            <img src='//p.ebaystatic.com/aw/logos/logoPaypalCreditv2_157x55.png' class='pd-ppc-img-v2 pd-ppc-img-v2-highres' alt='PayPal Credit'\r\n                     title=\"PayPal Credit\"/>\r\n                <span id=\"vi-ppc-longMsgPH\" class=\"vi-cc-align-ppclogo\">Get more time to pay.&nbsp;</span>\r\n            <div class=\"oly_upnl\" id=\"insCalc\"><div class=\"inscalc-olp\">\r\n\t\t<div id=\"INS_CALC_DIV_ID\" class=\"inscalc-content\">\r\n\t\t</div>\r\n\t\t<div id=\"INS_CALC_TRBR_ID\" class=\"inscalc-trbr\">\r\n\t\t\t <div>Loading... </div>\r\n\t\t</div>\r\n\t\t<div id=\"INS_CALC_ERR_DIV_ID\"  class=\"inscalc-error\">An error occurred, please try again.</div>\r\n\t</div>\r\n</div>\r\n\t<span><a rel=\"nofollow\"></a>\r\n\t\t<span class=\"vi-cc-align-ppclogo\">\r\n\t\t\t\t</span>\r\n\t\t<a id=\"e6\" aria-describedby=\"paymentsPlaceHolderId\" href=\"#payCntId\" class=\"vi-ds3-ter-a pd-lnk \" >See payment information</a>\r\n\t\t\t</span>\r\n\r\n</div>\r\n    </div>\r\n\t\t<div class=\"pd-showGspLegal\">\r\n\t\t\t<span id=\"contentGspLegal\">International postage and import charges paid to Pitney Bowes Inc. <a class=\"vi-ds3-ter-a\" style=\"white-space:nowrap;\" href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#paymentsplit \" target=\"_blank\">Learn More<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t<div class=\"u-dspn\">\r\n\t\t\t\t<span id=\"alternateGspLegalText1\">International postage and import charges paid to Pitney Bowes Inc. <a class=\"vi-ds3-ter-a\" style=\"white-space:nowrap;\" href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#paymentsplit \" target=\"_blank\">Learn More<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t\t<span id=\"alternateGspLegalText2\">Any international postage and import charges are paid in part to Pitney Bowes Inc. <a class=\"vi-ds3-ter-a\" style=\"white-space:nowrap;\" href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#paymentsplit \" target=\"_blank\">Learn More<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t\t<span id=\"alternateGspLegalText3\">International postage paid to Pitney Bowes Inc. <a class=\"vi-ds3-ter-a\" style=\"white-space:nowrap;\" href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#paymentsplit \" target=\"_blank\">Learn More<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t\t<span id=\"alternateGspLegalText4\">Any international postage is paid in part to Pitney Bowes Inc. <a class=\"vi-ds3-ter-a\" style=\"white-space:nowrap;\" href=\"https://pages.ebay.co.uk/shipping/globalshipping/buyer-tnc.html#paymentsplit \" target=\"_blank\">Learn More<b class=\"hideforacc\">- opens in a new window or tab</b></a></span>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t<div id=\"scandal100567\" title=\"ADVERTISEMENT\"></div>\r\n\t\t</div><div class=\"u-cb spcr\"></div>\r\n\t\t\t<div id=\"ret-accept\">\r\n\t\t\t<div id=\"returnsPlacementHolderId\" class=\"u-flL lable\">Returns:</div>\r\n\t\t\t<div class=\"u-flL rpColWid\">\r\n\r\n\t\t\t\t\t<table width=\"100%\">\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td class=\"rpWrapCol\">\r\n\t\t\t\t\t\t\t\t<span id=\"vi-ret-accrd-txt\">30 days refund,&nbsp;buyer pays return postage</span>\r\n\r\n\t\t\t\t\t\t\t\t\t|&nbsp;\r\n\t\t\t\t\t\t\t\t<a rel=\"nofollow\"></a><a aria-structured=\"returnsPlacementHolderId\" href=\"#rpdCntId\" class=\"vi-ds3-ter-a si-pd u-nowrap\" id=\"e7\"> See details </a>\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t</table>\r\n\t\t\t</div>\r\n\r\n\t\t</div>\r\n<div class=\"u-cb spcr\"></div>\r\n\t\t\t<div>\r\n\t\t</div>\r\n</form>\r\n\r\n\t</div>\r\n\r\n\r\n<!-- The attribute(value) of UseScriptTag is null. --></div>\r\n</div>\r\n\r\n\t<div style=\"clear:both\"></div>\r\n</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t</div><div id=\"vi_zoomEnl_plc_hldr\"></div>\r\n\t\t<div id=\"BottomPanelDF\"><div id=\"BottomPanel\" style=\" \">\r\n\t\t\t\t\t<!-- <h2> Bottom panel for Description </h2> -->\r\n\t\t\t\t\t<!-- Placement 100005 -->\r\n<div style=\"height:20px; width:100%; clear:both; \"></div> <!-- TODO:remove this line -->\r\n\r\n<div id=\"vi-merch-abf\"></div>\r\n<link rel=\"stylesheet\" href=\"https://ir.ebaystatic.com/rs/c/templates-css-086198.css\" type=\"text/css\" />\r\n\t\t    <div style=\"clear:both;padding-top:10px\"></div>\r\n\t\t\t\t\t\t\t<div id=\"merch_html_100005\"><div id=\"nume_html_100005_701534\" class=\"mfe-lex secure lex&#10;    \" data-plmtid=\"100005\" data-pid=\"2047675\" data-meid=\"ca80e458646c43089e755676e6d1f596\" data-mid=\"1851\" data-rover-domain=\"https://rover.ebay.co.uk/roverclk/0/0/9\" data-cart-domain=\"https://cart.payments.ebay.co.uk\" data-truncate-title=\"false\" data-features=\"\" data-authorization=\"\" data-x-ebay-c-marketplace-id=\"\" data-x-ebay-c-enduserctx=\"\" data-x-ebay-c-tracking=\"\" data-x-ebay-c-version=\"\" data-x-ebay-sc-extrafields=\"\" data-tag-atc-ok=\"In your basket\" data-tag-atc-nok=\"Please try again\" data-tag-free-shipping=\"Free P&amp;P\" data-tag-calculated-shipping=\"Postage calculated using delivery address\" data-tag-get3=\"Get all 3 for\" data-tag-get2=\"Get both for\" data-tag-get1=\"Get for\" data-tag-add3=\"Add all 3 to cart\" data-tag-add2=\"Add both to cart\" data-tag-add1=\"Add to cart\" data-money=\"{&quot;decimalSymbol&quot;:&quot;.&quot;,&quot;numDecimalPoints&quot;:2,&quot;groupingSymbol&quot;:&quot;,&quot;,&quot;numGroupingDigits&quot;:3,&quot;formatPattern&quot;:&quot;£#&quot;}\" data-coupons=\"\" data-author=\"bvallon\" data-widget=\"/rendersrv$0.10.5/src/components/plmt/widget\"><div class=\"mfe-card-group &#10;            &#10;            &#10;            \" data-number-of-cards=\"1\" data-visible-recos-per-card=\"6\" id=\"nume_html_100005_701534-w0\" data-widget=\"/rendersrv$0.10.5/src/components/card-group/index\" data-w-body=\"0\"><div class=\"mfe-cards clear\" id=\"nume_html_100005_701534-w0-0\"><div class=\"mfe-card-container&#10;       first&#10;       last&#10;      \" id=\"nume_html_100005_701534-w0-w0\" data-widget=\"/rendersrv$0.10.5/src/components/card/index\" data-w-body=\"0\"><div class=\"mfe-card&#10;       first&#10;       last&#10;      &#10;      &#10;      &#10;      \"><div id=\"nume_html_100005_701534-w0-w0-0\"><div class=\"mfe-header clear\"><h2 class=\"mfe-pull-left\">Similar sponsored items<span class=\"mfe-pagination\"></span></h2><a class=\"mfe-feedback-link\" onclick=\"onSurvey(this);return false;\" href=\"http://qu.ebay.co.uk/survey?srvName=merchandising+%28merch1-uk%29&amp;extparam=pageid%3d2047675%26plmtid%3d100005\">Feedback on our suggestions<span class=\"mfe-clipped-text\"> - Similar sponsored items</span></a></div><div class=\"mfe-recos-container\" data-carousel-on=\"true\" data-default-number-recos-displayed=\"6\" data-total-recos-length=\"12\" data-seed-links=\"\" data-seed-ids=\"\"><button class=\"mfe-page mfe-page-left icon-chevron icon-chevron-left disabled\" aria-disabled=\"true\" role=\"button\" type=\"button\" aria-label=\"Go to the previous slide\"></button><div class=\"mfe-recos-slider-container\" role=\"status\"><ul class=\"mfe-recos mfe-recos-slider clear \"><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"323271192635\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£6.99\" data-price=\"699\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22323271192635ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzueaci6i0Ny0kjnBAjxJJyeVwxUM6hsQ9zWfr0W%2BQ82QMVzyFLn4uIUNlLbKcJwMyeGl4f0z%2FA0XtLEr27C0MPmxTqsUsjfdzm%2BafqwtF9Rn5YTLJHHL%2BUR8ed5rZ7OajaqdIbRjV0Llwu8c0ZN2YrTBSQh9r2n1t2%2FcVrlcTehpmo%2BI0zJC77Q7M6lKEk8yt%2Bp%2FCd8zGErnb%2Fr3VeibfLIwi0b9WLrWTdJPjI4bTbPf%2F5BQWOZytClLUjMWR2oWVNrQ4y%2BhZ13lzj6X%2BU1ftT7aEhis6x2nhpQ6QUYvPC8vlInKfkCHW3Fo%2F%2FYe%2FZwsiFM%2FPRqXZ36V7JN7Qe90KyMBJU6RPaLlv2lNtWP%2B6HtVTYPiddg17V044Pc302QIBFrErpRGOFLLFrIIYFqUD%2FMoU2%2FrUkeq%2FOFgfSo1ezejYDzqCMgA%2FYGW38zwag%2F0Kx6fLTOI9oOo%2BYeK5EZqh%2Fcp%2B%2FgrvIcg52Hz0Avk5FbKGVAOVcFxUSCsfquCFBr8RlPvl8p7oQNRTqPl2YGBpc3byQqzovPM2qNAKABzoLVeY4AG0rqumFC4Pu44u94SeHkI6mTm0KT26hBLLZMy7f3tbWjfg8tDJbGW769VWVcrhPjNyvQA9TEdUa1lNHA%2BIXq5Ypbs6fZKWbX45OT5GDbeknESvWnIhAzCdp0tfeRUpSyeHHlwkbpGwGnfgnbZgmfMndFUryGDr0cLgQHFsHIBXkJ9X%2BCRHfWkiwy8ojCCfWiXNrLzyH2MLT%2BX3%2Blp8t4PZIdcXwIImbYYQGLn6%2FowDmHpxby%2FJ4inCGynzetjHwBuRgN3X1Y%2BtSHy3WbRuWiN10SP5qTNO9vTNBNgpTb1NXJ7F%2BaWL7CuQJkkXhqzj2RJ%2FPm1OZiv3GJOAAr98ayWyixx8HjpOgLAYDuwCYmlDWMWfA4ud8tLaeKH1d05rv6E9JdAVqdajcVbx91F9XVqxGIp07IwfechTuwWji7BFMe9WsHqCnU1uPg2Nhe4g%3D%3D%22%7D\" aria-label=\"item 1 of 12 BlueSpot 16oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/YlYAAOSwFq1bBtuZ/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/YlYAAOSwFq1bBtuZ/s-l200.jpg\" alt=\"BlueSpot 16oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"BlueSpot 16oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\" data-orig-truncated-text=\"BlueSpot 16oz Claw Hammer Fibreglass ...\" aria-label=\"BlueSpot 16oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\"><span>BlueSpot 16oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£6.99</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Last one</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"263982073242\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£10.99\" data-price=\"1099\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22263982073242ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC8CyfX2LaVug085QT2kERMztpZh%2FxGFXq2sB1tWZP1JlZxqlgnUEhEI0%2B%2F7rK7URsN2xtjiM3BxEGqE0qbU8dqmOm7R43ccoj0fkeMqukt83W3bVl2JVGcQcgZOG9%2B1AUCS9apFWmbkiAhjCLmOkqwQwpHAaKnZpfC%2Bb4To8dXBa1%2FsLBAUKQMaRg7PmL4poueITUhZBX3E0tWcPDRX2J3S207ppwpJiA%2BZf6ODXKlDeZiIFpogVaaYNYi7H67iKa64ExtRaEpIipBcjnVeZw3VBODKuKti6SuLHbibKr284UYnwfr34Xc6%2FlsT6%2FvdTJ1yTfpIrHFViyHiYad2wyf8UZ7eIfYQ8tnhoZgE5LVDycGQrw1evddyxdcbF0Bniq9FqpWaWfZOdWl9Roc9gf0BLd3QlxG1UQQ6Mx%2BI0%2BuefuQt7KBwmwPbhcDxMzhh2ufiET0es5OuUlGD7qud9Ubca5AsvHCydc2n2qMVW8dol78phKna8jk%2Bsghyov5czEvqYaMLi0u4%2B9%2BNnQ5vwwAAh9uxj80ZG6y%2BNFbwR9sKqpp1D8JKaBwrhv%2BHX6wQsR%2BV8vyO%2FWXbJuh18dvbz%2FLp3qZnOSWjimgSL8nqjUBVs%2Bz679tTftSMlsQC70MB6cGCeDeuLJ3ushgJRNU79KqIh9ngEtAKV0Ms07PcSLd8k8M%2BzM324vbHmuuGoEQvv9UE91UuxbzYF4Or3mdwGMgIYiHlN7%2F0sxbSetevDZa97PbBM8QsJEWevFeLHuCEtUKZsSC%2F4A8wnocSBgiK5oxR1cAq2nQ85jIGFF%2F41F86aYWy9tPsBcOawXhL51cLUe7yGjR3JASa3tnKVsaeliF%2FGOaFoJBWbwU23rlrAkklb1GzhUQE16l1be79R3I7SzGSRm%2F7zLKTHDAsKJt0ghS8vZY680f%2F%2FKWE2s697Y%2F9xxigeO6zdFdibyTivAjRXVqjxhQ3YNp%2BWj8dHFIeVVdPj%2BwryK6kHEwHAqRpvrlv3K%22%7D\" aria-label=\"item 2 of 12 Stanley 20oz 570g Fibreglass Shaft Curved Claw Hammer – XMS18FGHAM20 - STA051310\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/x4oAAOSwJjNbvLLy/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/x4oAAOSwJjNbvLLy/s-l200.jpg\" alt=\"Stanley 20oz 570g Fibreglass Shaft Curved Claw Hammer – XMS18FGHAM20 - STA051310\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Stanley 20oz 570g Fibreglass Shaft Curved Claw Hammer – XMS18FGHAM20 - STA051310\" data-orig-truncated-text=\"Stanley 20oz 570g Fibreglass Shaft Cu...\" aria-label=\"Stanley 20oz 570g Fibreglass Shaft Curved Claw Hammer – XMS18FGHAM20 - STA051310\"><span>Stanley 20oz 570g Fibreglass Shaft Curved Claw Hammer – XMS18FGHAM20 - STA051310</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£10.99</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"253281613631\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£4.88\" data-price=\"488\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22253281613631ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC8CyfX2LaVug085QT2kERMzslAe8cgSvLc%2BM%2BlTCXGH9MIFvCOC3YNZLXnVghz3efYkBe7qujprtbYUpNNlfYPRBy1u%2BZcV6AtR96jCZ%2FAetjKbSMJe8SSwAZQii5tIiZ7986n%2FffEUy85Z1kuwd4CvAohVzV318qtZPGDnm9Gg6372Qwld2ghXEzBbCXPOp5PgT%2B0I0p98rKMJwCIzLpUFh0lktxxADsPpvIKTHaTJI6owbQUDTCXBPpAzIOsCIHJJyYjK34goe19UmFkVew6DXzYPpd6xQQIV9yJhuIRYr2pIp5oNYugaAiNFFgPErSrLbMlLyysLpqD%2B9mJkMS0IXYDTvJzbkn1BxuFIXEKSXWM2%2F5vGGTOUQ7MYepY9WOc9CLzVVeDK1TL62n9bOzUQb8NRe0Baudc3LbXOC%2FalgyEQL6JE6%2FFb5dKLqgX19zopTNVOyvbqEwX3b6ehShwx%2FFKgOUHiZIwJ373rBAN%2BOmWFomHI224l31AjR1h%2BWU3D5fV0xwr5JesJMQrmiTONejncaS2R2pqCf0d9rwDCMFalZa2UIK6yRt9mgZb3ekN%2F4m4nyeIkYZeLgFZYqH4gOy3zzeTnYODwHUg9JmGJ4l9ZathBLzKTfhEUATCb%2FOt3cJuG4TJ1VTVPjuKUSMTev%2B4uSYchGZxkP4fG6XxwTwTMJ0NcRxiu6wx81c9JhmxEeUDrXDkJ2IxtXReIVk2JuA9tRzLNFkmyQHYVLEAFnLOv2IQd59lg9zYD5UacjBS6xNB8DZ0OMlbADbGjV%2Br9QIgvvzYIGmDJZYURfUwZ2dm%2BNAwoZmcCHWK54UcyZmEBXZl%2FCnp1GRM1rDKhqYtUkIdhWIdPPmblzZdDOdKICSc0z7eBjRciM3TJLHSuI4nmL2m4HUPZbW%2FM2YlwIzsW8bD5gpyx%2FRN9vRyLo9e13PuIUtAFDODtahJ4pvbB%2BIKpAgXD5sca4yygqwkZ%2Bw76RPFyfQQkNEU6bxRvTowsz%2F%22%7D\" aria-label=\"item 3 of 12 rubber Double Face Work Glazing Window Beads Hammer Nylon Head Mallet Tool TH\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/rHgAAOSw44BYWSCX/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/rHgAAOSw44BYWSCX/s-l200.jpg\" alt=\"rubber Double Face Work Glazing Window Beads Hammer Nylon Head Mallet Tool TH\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"rubber Double Face Work Glazing Window Beads Hammer Nylon Head Mallet Tool TH\" data-orig-truncated-text=\"rubber Double Face Work Glazing Windo...\" aria-label=\"rubber Double Face Work Glazing Window Beads Hammer Nylon Head Mallet Tool TH\"><span>rubber Double Face Work Glazing Window Beads Hammer Nylon Head Mallet Tool TH</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£4.88</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"264061299610\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£7.50\" data-price=\"750\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22264061299610ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC8CyfX2LaVug085QT2kERMztRNgt%2F3pofdAjfgOAnDTSwlsg3GYrx5pBhRKYtBEJvNYs9JEaHsk6r%2BozCGVduGd%2Bc%2BB5EwkU17KlKKPAuxQbeGVOKYSosegJtflkkihBRdaF5Q6jSyTP3FsSKf9ik7tWc8SchD%2BuDKulVmxnwtIl%2BIse6z6GsbtZlTZDduh8kJj9ieZq65Pw%2F7JLvevwLuEQshcghUMSV5q6qXNKs512alr83N4DHt96vaNlaaSDh6kxJ2sBakxJSxFimsv%2Bf2ftE2ZZ%2FHCG9uWJ5VTfcqvU4BhxFFW1yF%2B8%2FWtdB1iO2jpS8QBLxWE8KK3T7zpZwKgnnhtP6DMSYwPMp1KMY5R%2FyLAFpwKuOxs7MiUsEoZDQzahQZzBY4yI2Tw0afCEfwaLut1iqJpXZZAFd4l%2BqE4TyaoKikF22CJMmyiDsmvXiqmOhteJ15qCQD%2FD9B5BjwWInjmudNCpQE4z5e1wq3qG916BaaoQ%2B8ikdFax2JFQC7Mxsba6RPqtBCuFjWLwb6j8MHDUW8U9b5HduYmFAYMnsYpPTMJhEoOY%2Fwsu0wyC1xxSw9Byv3vx8F0GNuAUeZZj%2BPoxOeKbljNCS0xfgyPw%2FW0g0Om59eJo3v0m%2B4%2FGaAf3W8PZyyTqe%2BzXczFrH6EFJ7YoC%2BaijJyDVtAvtP0q88HwgEE3X6APABwFVhQhgDP%2BnxQ%2BRka8AIh2gWPx8k8vG5XF0neBj7PxR58jizYIvk7yoqqJT8zcO5C9RRfeynanHdPGXKakr7LYeCKX6jzqZBAZytfNggnG42pz6Ny8io%2Fm9lKxRQYFO1byhCgyY6HZNOC%2F17TAKlx%2Fw33pMvK1YJ%2B2IsfHdQbIwt3r3XNnHFftCGSOsvENC4M8g4gxgvHB5Ioe1pAh%2BmERVLODmU7kEIP1Ic%2FpgP7535B0zva7wbFwHDk4MC1Jh0lyEmGPgXfxw5jGlS%2F0q%2F80Z3LdN3KhdvEYwEVEBllGaPEBYLADc%22%7D\" aria-label=\"item 4 of 12 Hammers Pro Tool Range Claw Lump Rubber Mallet Hammer 1-Piece Solid Forged Steel\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/ioIAAOSwVMJb~G8g/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/ioIAAOSwVMJb~G8g/s-l200.jpg\" alt=\"Hammers Pro Tool Range Claw Lump Rubber Mallet Hammer 1-Piece Solid Forged Steel\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Hammers Pro Tool Range Claw Lump Rubber Mallet Hammer 1-Piece Solid Forged Steel\" data-orig-truncated-text=\"Hammers Pro Tool Range Claw Lump Rubb...\" aria-label=\"Hammers Pro Tool Range Claw Lump Rubber Mallet Hammer 1-Piece Solid Forged Steel\"><span>Hammers Pro Tool Range Claw Lump Rubber Mallet Hammer 1-Piece Solid Forged Steel</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£7.50</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"112492296343\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£7.93\" data-price=\"793\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22112492296343ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzvrDawQtf3vTDL3gm%2F5rSSCXE2LF54gYffTagv9hL6JEYJErH912HL1FA0R14M62p5qsMCZW5geiO89WY1q00X5GMPUsttAr%2B5gaKFEg%2FWMtkhxIRG2VkaEEdyirWM94mgpL3uDzbEwilKq%2B289GvlG7F08X44LAr83YBZfAEyLhSpUTfDI%2BL36wPiP7G%2Fxzunj9lnx0VBq3aZNQZtl0xIIfwOdGhtA8UKBqlbIgupVAd7HUvqvu4nm%2BP%2BUw2of8BhwbNf4ShWPLoRgEUosyMeJOHhp0FWjoOfne6P8caBKme%2Bef4AZlY%2FwcDOt9wgd5a8TcTTe%2F0bakxsiGGhxbujvbdHCpiY%2F6z5yRhNgSOLtMuCgVkNthNKUMP1XUazxStJa%2BH4wTHQIrDQsIt8KNIdNY3or%2FIYFNXlMeS%2BP20U7gvUuMPL4z9ULP0Uq1kKWht68UcFnrzHfu4T2xd1qk%2FlybuFSp2eGmAN6n38knExzogdUIZLkc54zdfEsaUVL4PAWU%2F9lukeQuvvOMtWApbBVVGT39sHrcKFrNtkSUwgp6nPAbiGWgFXKzyHwonzf%2BxvpLYzsOgv1HIjJdIaqQ0d8r3ClfEMXajLfYfsM5%2Bd1Lh6eKJzxwoJdGe59NCD2GJmQJW88Jm8Z%2Ba6EOdq%2FPy1uEqXs2rDPTk9YQ%2BPhaYdlNQT8si8wej%2B4U%2FiI7NoYi%2FAHru2qV6eNyRgw3wxOk%2FJHs9f91gDu0gVmTvCIFqlUH5ppFu4U0O5qJebBrMF48XcoOm%2FlWncJOmsGbtBuYbCzZ%2FClTSczGVP2euAIIB82fw03NiGJvdAXomtSLQ%2FXCtmR6wLVaK6VKM%2FibEi3fxn3Yhpd1raxVC6WyfrqYYA2c8m68T7JSxJ72Sz9uTMDRRF8%2Bbgmf3WLqeZX4P%2BmJncUtepRb3EKIZp877QkSYlaW4CLBFiDSEdmqJMXSOEiwmRYg66VmmYd8eYTP3%2B8kbeR%2BuF%2BD1OPQOtVnLaWAuOXDA%3D%3D%22%7D\" aria-label=\"item 5 of 12 1Kg FIBREGLASS CLUB LUMP HAMMER STEEL HEAD FIBRE GLASS SHAFT RUBBER GRIP HANDLE\"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/lFkAAOSwi1ZZdEeh/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/lFkAAOSwi1ZZdEeh/s-l200.jpg\" alt=\"1Kg FIBREGLASS CLUB LUMP HAMMER STEEL HEAD FIBRE GLASS SHAFT RUBBER GRIP HANDLE\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"1Kg FIBREGLASS CLUB LUMP HAMMER STEEL HEAD FIBRE GLASS SHAFT RUBBER GRIP HANDLE\" data-orig-truncated-text=\"1Kg FIBREGLASS CLUB LUMP HAMMER STEEL...\" aria-label=\"1Kg FIBREGLASS CLUB LUMP HAMMER STEEL HEAD FIBRE GLASS SHAFT RUBBER GRIP HANDLE\"><span>1Kg FIBREGLASS CLUB LUMP HAMMER STEEL HEAD FIBRE GLASS SHAFT RUBBER GRIP HANDLE</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£7.93</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Almost gone</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"232780636863\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£8.99\" data-price=\"899\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22232780636863ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzsr%2BkqoC4ZFHymqNQcor3iNlx07hhVrqAJeMC0v%2FHNlCSAJBu01OG9cF8oDYm2v66XOAejOzGwDhtPIrn7YikXsiNz1TZqSni05rKhwW%2FrnqL1s5EvvMz76Yr%2BzPiZwT3NMWr3P0Z0bmMVhJSrbc8wpGWkFCfBoqRIFbx%2BXTdSQ%2FebvfM0XWw4iW220MY%2FTp6VRHXu4MWHJJyNdX%2BTJumx60mOnkDBxLxfd8%2B1CXwPtbj7p3Ni7gbGcAcIiHwc9UXhhZ9LDRzpLbbFJqgY%2BcVon1TV09iviSr7RjrBomKR%2BtQ1%2BeHOpnsQqAWUiUC2vtbVuoTVFGAUMNkzi0lDyVvvv0%2FYeJPqyfchO5tfJqa6KBkHupt4l28foD607dqTQ6ZZyaI9EOedGcle5nkB6W35DobmiGYQE2JociCvhn%2BHkAv44iYFN8UA6IN2rVUmIpFrlUYQfiQ2ggvn0uevai5r0eyHFUN%2B4I1PuYMg5G61d3uGJlEZE%2BtKL4E6oBnwTXRVVOMlmdvP1MeBUrpa6mbA1YDErXtHQjfxc71lqg9%2BIFX49XR4lBYJIAGwJvsSKBCtJX5rEGsrxdA4rXFaA0JWifrqIq8Bq6cH3EnmHQjkfDZDJrEOdW7y972dUGZbfAOfti6YClJbrJbmRa%2BwP01RsNKRKHe8aOhrA0PVi9U117Lf3zlYt%2BL%2FMzvs8lWujYpUaBf3IKxoTkLpEPZ%2BykPqyLs%2BolD%2FR7Kqw0jZzFx7%2FXZsVH%2BKvr3y8fq1dl1Gw46ugAS3uyAXUfcPjBm58hKSmhuOtmEUrfPGUyRjsW44WImHq7QCqhEC3O4tpeAFV6CJuFLLY0vP1msGG%2FSMpyro1QGdwcy2TOqOmuzZjRz%2BxTO1cF6o4b5R%2B1YLeyipEUCQ4wYZp6Ccy0vpNxBz0SSH7TgMiHQxX3ErEExCo1V1jIUFbDTYs5J49w%2BP8Jq%2FM3BHl4etdTXTuuKpnMS7Ft%2FxH7DaR3T2Ogpfizmtz%2F3lzwQ%3D%3D%22%7D\" aria-label=\"item 6 of 12 BlueSpot 3lb Sledge Lump Hammer Short Absorbing Fibreglass Shafted Handle 26202\"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/AZ8AAOSwtNFbBtub/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/AZ8AAOSwtNFbBtub/s-l200.jpg\" alt=\"BlueSpot 3lb Sledge Lump Hammer Short Absorbing Fibreglass Shafted Handle 26202\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"BlueSpot 3lb Sledge Lump Hammer Short Absorbing Fibreglass Shafted Handle 26202\" data-orig-truncated-text=\"BlueSpot 3lb Sledge Lump Hammer Short...\" aria-label=\"BlueSpot 3lb Sledge Lump Hammer Short Absorbing Fibreglass Shafted Handle 26202\"><span>BlueSpot 3lb Sledge Lump Hammer Short Absorbing Fibreglass Shafted Handle 26202</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£8.99</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Almost gone</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"121870040770\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£6.69\" data-price=\"669\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22121870040770ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC8CyfX2LaVug085QT2kERMztGk0XAkeVDUB1Aet7aWJxfDLSJcXlNf39PzipsKtVP8MNJbyASsXLC2OG8UmbjV3kU0S1Yla4Y3cKGviHK%2FoSetfrapqXaftx5PXbe4hW7cyK6HIx77hUXl7HnpyiiTQQo7G6%2Ftu1bAijlrM29s4t1OHu8TD3X2%2FwFZGJvdI1VqmFmpt2w8%2FoGaGKHRQaaFuVqJlB3k0lrrMYl%2BH%2BYERoyNKLWhw3VKkdVokT5E5vulTXT7tbGPtPcxgbQFQg2u0f6jqSGpbK7ubnVCF7wGn%2Bmvfxy4uF22GD81V%2Fva1fnr7ROjyaQ3dMp8jrYPBiNceIFy1IxsD3keK%2BgEi92GduUniMZOAU9eyO5GhPE7jpzNsniZAmO9vSGylnH%2Bzn6fUPlr94Ka8qP6ZAMcYMDwUysYE7eIbR47Brf14b3VLqT5gm4FRTVPEP1iYCRd6HP5oaMXr1HrW6DcjPp%2FvTe%2F1uzUshdJdhRKipcuFx3oOxZBKhnJomODD3AZmdMO1YW%2F2ObM6nkm3KrpiR%2FsEri95%2F9PFAu8r%2B6DncV8tz4lMXwSRYE4nF%2BZzpBVvOSbbDko2B24Fy6xfJgEcoZNvIICuyR%2Fo5MxhRoWb3SX7x1y3g6NfWBn1mbja0VgefGQuQgsciAHQhtk6ebEJiTOO1hnEj3DGGAcJWPR1HEmdcSG9klTmGM%2B6i2IfwMHA1lyQZWbcrxSde%2BNBKyDe8ZDxXs7KEo%2BlGTiAnz1w40nMaMNOlp2lKPlhghKHEv%2F7jz4HmvQbge1s58p7wuJTvQrjBoBxKbZftSSwX64JjRl8GNRc5iah1uCouKuYLh4UKIl6UopFoTyGgtw7xg9zOcmx8z9x%2FBrFLEIwfDX2lxINPiXpIjOBvVkH%2BBUV1AjvkqH629EepjYYcO8vorN0k7qCrLKnKyOT%2BtF2o2FXhdlT9oqX5ni5JHx%2FJgunK5L88liP79yDdqCGsoGi26tWggy8EhTToT%22%7D\" aria-label=\"item 7 of 12 32 OZ Rubber Hammer Mallet Fibreglass Shaft Handle With Grip \"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/mdwAAOSwX~dWne0T/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"32 OZ Rubber Hammer Mallet Fibreglass Shaft Handle With Grip \" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"32 OZ Rubber Hammer Mallet Fibreglass Shaft Handle With Grip \" data-orig-truncated-text=\"32 OZ Rubber Hammer Mallet Fibreglass...\" aria-label=\"32 OZ Rubber Hammer Mallet Fibreglass Shaft Handle With Grip \"><span>32 OZ Rubber Hammer Mallet Fibreglass Shaft Handle With Grip </span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£6.69</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Almost gone</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"360518221394\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£28.99\" data-price=\"2899\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22360518221394ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzvXQmuWQKDsooEeUnSSUU3h%2FodqvGSJT2OqOBvblqUg6wFRFaNhnPUYW6OvBx0vLROyswbzWdcTLGFmtwofN5790VhW%2BO01VVESK7rHkBzK2MKKpxZg%2B13dRYWTtFkjEwdM4KoiGQ5ro4RgizjTviUH%2B0cSvgyYJjrKurrBzl1eAf73u1oMSKG7V90oJHYv9LGO5C%2Berf2s8tsWHqqMP%2FXtd8l56GWemym0EvJXeQVyD78Gvtn9dPGJcl3teHq5JA1TL9gYTwvuk83lAtGDH%2FMiTQdyjJii0XHfO%2FDqNI5%2BE4tqUkpU4W%2BFt%2BKIHw8LSoTimYjd9CAaCjlGBarOsqu%2FyEIz4tBz06wWhkeciyp5VDKVD2UB%2Bn2g3hZzu0QnFFHT7arfopdP1gUrzjj%2B4LnvjOQLZnnt1U2ZAfz3Mf2yfTNRiif%2Fp5PQ4StrmxVWHACh3tG2HJuhvnaTr28ZLNeOX5aTBvglre293Fj0gfuFVvCkEbwhNgtqGF8tynzm7XYBZb5iOhZ51TWV4AnkhNwf%2BUKXDj7TmJw5tTQh9GQmLjgRM3lJB8vYLJqEYFMMqCUr4gRLFT5DLclA0yy7TTtKf%2FzrVW4aYNGOcqqZDm32tyBA0oKXZPfrjQZRjeWolwKZpYBGr6BfvjEoqxty0yQgv%2BDWkC4dA9RHeIi1vc2NelsyAhb8xH7i9vJT2svUNowc3V47mZZrgqq%2FeaTRAxQ97QZ%2BOrfmL6br6CtUTRBXBYN6lQKQgULMv7ivU8eZY9XutCTZ5FhfjNH%2BykxNUfGDlj8rcgSxtjQZ5SJSMWVeIvWxktv%2B4YyeuvNdph6xvhiDxzcbOowvLOsHv481bYC9m3pqv9Vktg%2B455oHVBf77z0K%2BQRHswHhKkea67zpTgRY38EoGUP2pppqdNpZocZZsw6rc%2FNwEpRejmG7QoP7OgICyXoDP9IzxCQliZ%2FT8I6teAHy9QK86X%2Fo%2FNOdCTLU09Vp1fyOgDd%2FLebwsHZnXQ%3D%3D%22%7D\" aria-label=\"item 8 of 12 Estwing Surestrike Curve Claw All Steel Hammer 16oz 450g ESTEMR16C EMR16C\"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/W7IAAOSwxLFcPwxA/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"Estwing Surestrike Curve Claw All Steel Hammer 16oz 450g ESTEMR16C EMR16C\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Estwing Surestrike Curve Claw All Steel Hammer 16oz 450g ESTEMR16C EMR16C\" data-orig-truncated-text=\"Estwing Surestrike Curve Claw All Ste...\" aria-label=\"Estwing Surestrike Curve Claw All Steel Hammer 16oz 450g ESTEMR16C EMR16C\"><span>Estwing Surestrike Curve Claw All Steel Hammer 16oz 450g ESTEMR16C EMR16C</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£28.99</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Almost gone</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"273581055687\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£15.95\" data-price=\"1595\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22273581055687ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC8CyfX2LaVug085QT2kERMzumgWEskweOvZDl5FCEtjSgl2rXnzSmFaPBzGqAYSw5RIPa5uNIg0rLoDqq%2BhLskQG7%2BkH4Ebbr%2FC5stxSTvVGvl32l2YUTTdBa7iIHq%2BBr260uyZLgX19%2BcLE2KLz9WBRYVs0m2lNCHnat2U2dWjwJmNx%2FgcTzUPXF2x9DHf7vcm%2Fhx9O%2BvGDT8eMf%2Bx3nAOWI4Nj7%2BY%2Bk5Dcs0%2B%2BiX7DVhniwMv7hbvv2ncDtPTr92v%2BTIMZA0iIsh4SkKUBpZQZBYN5Q%2BseS50ha3OK0ap0c1Q1sXr%2F7vpVtVtMOixo4ZzqVhWFSmmd%2BWIIM3zL5g65dYwCysu0yWhZ9gpavOFF8jbXi4KIMk8EwDSk33iVfzu8ViM3%2BbY0rWtNoU4acRtXT2rGA3u94HhRg93uJ2qKNZKchfrcGxSSme8%2BnZLnzTdlv3qC1lYSwG3Lp1JywhWlrXN0kb0hLZJROcpsV0iLDjXWHpUjEvpROURzEQQqGHYwd%2Bob4RttSm0kYORiJRsz%2FzbMK5iEzDgcLBxN0gIPK84LcpVysVP8XgHy6LmNWUdazOFOPduA4iRc7OgnGIRJ9o3WjPEaCSNjA0jn2v%2FRKX6liouaTdcShmvHcrxUYgbqJO3Jd8rLjWOXLSOsSm3wbYLj1PWwtUcQLzsn4kzjimhz7LSCJB4W%2F7YFLqQoFUI8jUz19i21B2UrFjsLrwYWtNra7I7GbhYiMwRpol%2Be%2FkV8gfDTWKodcgrXyv0Ksni4ZTopSDte%2B2aMSBNGpETueqGD1kaLH2AlcBidvKfpvo8vIxVgEl2EogAeR4KOyYGouxS0v7PSE%2F9Dtl0IVQSVR09SwWCxo0ZkBLWCKrhER2ZAdkr6YgOSJse9fz5euKvdH4ofdx09e0yVT3B3fDd7omqaZzrY2QEQv8ei3hctY7cCjA6MSPZKuz9xwPiTWTrI%2BbyE7AvmHL9tFvqcmLucCIckt0I1n%2BLfa0NbyQj9K%22%7D\" aria-label=\"item 9 of 12 Tools Pro 16oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip THT7143166\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/H3UAAOSwHglb~Fhg/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"Tools Pro 16oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip THT7143166\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Tools Pro 16oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip THT7143166\" data-orig-truncated-text=\"Tools Pro 16oz Claw Hammer 1-Piece So...\" aria-label=\"Tools Pro 16oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip THT7143166\"><span>Tools Pro 16oz Claw Hammer 1-Piece Solid Forged Steel &amp; Non Slip Grip THT7143166</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£15.95</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"232780636857\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£7.69\" data-price=\"769\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22232780636857ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzv4oQH4yBfNCdGgVmd4VsZSFBZfVTd2%2FDiNM6XS2w%2Fc%2FKkCmdyWY%2BlWLaHfMYRa7e%2B9b33STbVyCl%2FtLbOeFl2DZeP34B9%2FRp5kHUcmLZv8f0%2BObWhJ%2FDZWCCEdsjRdOZMRHXKxirO0nvxZxShiIfF3j2SkggmU2xJrhR5p9DZYWU5EbhDpQ754iIyPtLNLtzDoA%2B7wzNaV56UQncoK8gp2x5CGbdtMpEBF7bJl2cYgK6BUlJ%2FodEpyW8en85NgRTHgv8C1%2FtP5%2Fo9nr%2FhfudChjwdbkpCPgUKHo3QHyDW%2Fmlu4rVlylgeGBrJiVsdM7ID9%2BTbK7m8wyM3njpz3f%2F6chtfu1z6o5WZqw34eZ3qq4%2Fs2nMaWRBypQFw5uxs3w48VfWIFgbc0ToHmY22a7wa3R5QdvlR1pWkyihzOs7l5nTu%2BjWws%2FPQkiTSUFNJFlFEFXo%2B1ZWTK3OCEzB04XO%2Fg%2BBD7jH%2Fg8uWijAY4qp8F6HthZgS9pAxC7jSVD%2FArkO9tF6Wv801vWIgVyLrt9%2F4s8UiMca6ciEwQ50BRvgJwcWeh%2Ftw%2BknAKf1m9qBmqHhAYTIbL2i0zLUtM%2BgI4%2BcOQz6ySpyIO8xAYAJtVUgUQHoEvVkHvtfgA0EJIYtZ8G210pcfUL1GGhS9r8vy6YJJ7lAiR7J7kyG35hxf5aMQGbpU1%2BUE1HtS9oArS2tUvFdn5%2B3vhz3HRkQNcdrQBQC46mx94lHAe7VhSEx28PKzI1UEHb8nNNd0qvIMGFSdUXlECj%2B4n6zryXwrE8pM%2FD1diTwxJOm%2F8pdAfGDwVVCdegbAgS64GiOZgvVmx1CUgE7Y41W6y6miSFme9zuHSyMdREXtyPh9l8XmGE9G%2FL2mueqqtanNpo%2FQgxbRK4dv119iBsuk2DwYBomKgcUFw2eh8vNcHEHSdndjYJU7WC1GCJQHsd%2F9oQU4WY%2FXvKhBkcCO8sO6xqIYesfv9YF4Ou%2F6G9rcE6hoQOcbk7FC1yVhMJw%3D%3D%22%7D\" aria-label=\"item 10 of 12 BlueSpot 20oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\"><div class=\"mfe-img-ct\"><span class=\"mfe-icon mfe-icon-hotness-badge mfe-hotness-badge\"></span><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/0~4AAOSw~Q9bBtuZ/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"BlueSpot 20oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"BlueSpot 20oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\" data-orig-truncated-text=\"BlueSpot 20oz Claw Hammer Fibreglass ...\" aria-label=\"BlueSpot 20oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head\"><span>BlueSpot 20oz Claw Hammer Fibreglass Rubber Grip Handel Hardened Steel Head</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£7.69</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Almost gone</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"262979548841\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£13.89\" data-price=\"1389\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22262979548841ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAADACyfX2LaVug085QT2kERMzviOGFNsr9pbr%2FmDKre9yehx8X5w7Rpriyv66xub1UT2QGw7vLxjOliBs669XE6ez%2BUaPIO3q2uEOKsEkMP9geWkGUuQV3s4PUvb%2BWzkEUVrspsCYZjB3HQM0pXYZWNuNouUfm1Q8l8raQd2uvVRnldqm%2FBszLV5BQsHBz2gcfduzKVo%2F3WNOS8JEQ10FB39aritqaHaUCsGkomtBLaE7AB4hfZtL4ij4zPZOacToopXJkcbvNbj9G0FLEbvOjK14rTV8sBK30L3liOdFz7HzUG6%2FmgJlbjVCJJmi09uryynm6DDQrc4iE6Q2M2TIrZPwfDj1b80ZCWP09iyaDfFJaXM1b7MxJFwBBf27KJN4WfqQ%2FU0MX3%2Bw5c%2BNE0iR6Y4YpndCKTvjr7dKHbwPF%2BNWB8f7wnTUNAKThboh4VQQmou1n0IA1ThxID4MpcSZvuYx1%2FALOib4CvUqre2YT3oCXtlf3IiCCUciyPAnnmMy%2Fdji%2FMxIonzHPf8rbGUg57FMVxVtN%2BViNtQjdtXzpr1bWQabOZH0v2EulVO7wk9Nu0HnknckjqXFZLspRfmTiuIJFRiWRQMkNS5IRjGOMgMaSm7XEobYcDCR%2FwpJqOcJ29OeAY5O9S0dblzNGmV72JqMRiuqaNvbsFwPk9T5vbBY43PmdEYz8VX49qiKDgMEUJLJNWNQpGjg55reJNSjn3oiJc35m74zkU48rWCgMaWxEscS6WLw3W1t8WGP4xnZHJPTCfCNt%2FXmdDs%2FDVLvAWjmhX8KPrpn3aqAoTL6C2AHVwCZbEOcj8R2U1LrEztAmU17RZz227apOAFKpwqaMWoxwW1J5BhFiBlLGljOi14QMeoWUNNKFnxYT7w0U0gJpkJZDCrFxCOm9BtrBOXyqA9VedX4TmzgPTLM9TNWiTC04fEV6WHOYwkWRX%2FPkoiOSfabsk9VNeCRaQi9XkJflRyj80XRVGtjCJ82rdngzKxm26B5%2BGF4age5C%2BZ026bSLRlA%3D%3D%22%7D\" aria-label=\"item 11 of 12 Rolson Heavy Duty 3lb Mini Short Rubber Shaft Solid Forged Club Hammer Mallet\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/NSkAAOSwh1paAxDV/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"Rolson Heavy Duty 3lb Mini Short Rubber Shaft Solid Forged Club Hammer Mallet\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Rolson Heavy Duty 3lb Mini Short Rubber Shaft Solid Forged Club Hammer Mallet\" data-orig-truncated-text=\"Rolson Heavy Duty 3lb Mini Short Rubb...\" aria-label=\"Rolson Heavy Duty 3lb Mini Short Rubber Shaft Solid Forged Club Hammer Mallet\"><span>Rolson Heavy Duty 3lb Mini Short Rubber Shaft Solid Forged Club Hammer Mallet</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£13.89</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-reco-detail mfe-reco-detail-hot\"><span data-detail=\"hotness\">Popular</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"264030096264\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£19.90\" data-price=\"1990\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%22264030096264ca80e458646c43089e755676e6d1f596%22%2C%22enc%22%3A%22AQADAAAC4CyfX2LaVug085QT2kERMzsjmab%2Bj89DPlf78pgXjNPCOKajaJLCLF66lXc2Y5jqYHez4X%2BLRj0x0KiXXrjroKowuwPR%2Fq9B1VVZjFTpwYbkU7xp%2BVqxQc3DfZHeOLDbVWSkG3%2FqBOzmU%2BtjgMOmPi26MfQA9RYqkbloSzbowo%2FNE7cBRiJMr2ee1Tas%2FqOw%2FP9EyIOpCkpLDObr5pg36%2Befev8vMZriJRabyZGhgvwTjEmKJZ%2BFTw6vfk33GwwBEsQdkNQ2dwuLwg9dC3DXfdz9hYN9TJDwZaK9HEm%2BU29U%2Fa4x3QinsVtGj1SJ1lIxKwOAhsN8aFEocUA8dNwXnIHqXMeSycXtC6aDg6UvJaU77tS5DUkFoUKWWSuwb6%2FU2w0wJsShKrylgaBEa13cqi%2BP7zrYO9wbgBf8U66%2BCzIGYiX4jlnxVa2jfUy60hUMibtCSXNcROM5cxrbLFUzhYX%2FjqXxqES6PJ5wJeEgJO2iy9XO%2Fy7rXyQdDWAy75gdlxVGnnLinD8KM5b0mqmWs5MradGbZnq9w3FmRwbUOl%2BTv5HeXNkYpvxEpm1qYyW4rkrlr3aAgxGkb%2BzRHeG5BlchYYFc1HofhIN%2BKNuYlc7NM38%2F3Ek3KTwvow9bVy1MAWmCfC4HqUj5i%2Fn8xJQCCLClH6uzIfJw1zXZELWUgUAyfSda0JaFrS%2BgjOKzfNb21TFtoucjeJ8cbNWIJK4vGL0hIE8Hbd1ppGJgyEVbYxwSZxauRaJTm4C0nT0%2B1ZehW59oa7aunyr9kDBCHKi9exwXp16k%2FuwuE%2Fb%2FFgW3LzDTVtuh177O4KYbLHycXs1zeKCoTMMCaPO5i0kOdtaGuxcG6i9z57aEFjqIrsS8SfTo0mVBLWZA7owjaDLAGg17fTeBQm6otl39SPCpDkHApoMJc0GW8yD5PW9cuSnNprYZ3pwjy4CSHCwjyM628MlV8QqF1Rx%2BLbMKzZJv%2BcY6wBY%3D%22%7D\" aria-label=\"item 12 of 12 ROUGHNECK VRS LOW VIBE CLAW HAMMER 397G (14OZ) - 60750\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/fMAAAOSwVIBb5Fdq/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"ROUGHNECK VRS LOW VIBE CLAW HAMMER 397G (14OZ) - 60750\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"ROUGHNECK VRS LOW VIBE CLAW HAMMER 397G (14OZ) - 60750\" data-orig-truncated-text=\"ROUGHNECK VRS LOW VIBE CLAW HAMMER 39...\" aria-label=\"ROUGHNECK VRS LOW VIBE CLAW HAMMER 397G (14OZ) - 60750\"><span>ROUGHNECK VRS LOW VIBE CLAW HAMMER 397G (14OZ) - 60750</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£19.90</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li></ul></div><button class=\"mfe-page mfe-page-right icon-chevron icon-chevron-right disabled\" aria-disabled=\"true\" role=\"button\" type=\"button\" aria-label=\"Go to the next slide\"></button></div></div></div></div></div></div></div><noscript mfe-widget-id data-widget-id=nume_html_100005_701534-w0-w0,nume_html_100005_701534-w0,nume_html_100005_701534></noscript></div>\r\n\t<div style=\"clear:both;padding-top:10px\"></div>\r\n\t\t\t\t\t\t<div id=\"merch_html_100008\"><div id=\"nume_html_100008_51741\" class=\"mfe-lex secure lex&#10;    \" data-plmtid=\"100008\" data-pid=\"2047675\" data-meid=\"1c8dc76c030a4820a85f8d50a908d3d9\" data-mid=\"2219\" data-rover-domain=\"https://rover.ebay.co.uk/roverclk/0/0/9\" data-cart-domain=\"https://cart.payments.ebay.co.uk\" data-truncate-title=\"false\" data-features=\"\" data-authorization=\"\" data-x-ebay-c-marketplace-id=\"\" data-x-ebay-c-enduserctx=\"\" data-x-ebay-c-tracking=\"\" data-x-ebay-c-version=\"\" data-x-ebay-sc-extrafields=\"\" data-tag-atc-ok=\"In your basket\" data-tag-atc-nok=\"Please try again\" data-tag-free-shipping=\"Free P&amp;P\" data-tag-calculated-shipping=\"Postage calculated using delivery address\" data-tag-get3=\"Get all 3 for\" data-tag-get2=\"Get both for\" data-tag-get1=\"Get for\" data-tag-add3=\"Add all 3 to cart\" data-tag-add2=\"Add both to cart\" data-tag-add1=\"Add to cart\" data-money=\"{&quot;decimalSymbol&quot;:&quot;.&quot;,&quot;numDecimalPoints&quot;:2,&quot;groupingSymbol&quot;:&quot;,&quot;,&quot;numGroupingDigits&quot;:3,&quot;formatPattern&quot;:&quot;£#&quot;}\" data-coupons=\"\" data-author=\"bvallon\" data-widget=\"/rendersrv$0.10.5/src/components/plmt/widget\"><div class=\"mfe-card-group &#10;            &#10;            &#10;            \" data-number-of-cards=\"1\" data-visible-recos-per-card=\"6\" id=\"nume_html_100008_51741-w0\" data-widget=\"/rendersrv$0.10.5/src/components/card-group/index\" data-w-body=\"0\"><div class=\"mfe-cards clear\" id=\"nume_html_100008_51741-w0-0\"><div class=\"mfe-card-container&#10;       first&#10;       last&#10;      \" id=\"nume_html_100008_51741-w0-w0\" data-widget=\"/rendersrv$0.10.5/src/components/card/index\" data-w-body=\"0\"><div class=\"mfe-card&#10;       first&#10;       last&#10;      &#10;      &#10;      &#10;      \"><div id=\"nume_html_100008_51741-w0-w0-0\"><div class=\"mfe-header clear\"><h2 class=\"mfe-pull-left\">Frequently bought together<span class=\"mfe-pagination\"></span></h2><a class=\"mfe-feedback-link\" onclick=\"onSurvey(this);return false;\" href=\"http://qu.ebay.co.uk/survey?srvName=merchandising+%28merch1-uk%29&amp;extparam=pageid%3d2047675%26plmtid%3d100008\">Feedback on our suggestions<span class=\"mfe-clipped-text\"> - Frequently bought together</span></a></div><div class=\"mfe-recos-container\" data-carousel-on=\"true\" data-default-number-recos-displayed=\"6\" data-total-recos-length=\"12\" data-seed-links=\"\" data-seed-ids=\"\"><button class=\"mfe-page mfe-page-left icon-chevron icon-chevron-left disabled\" aria-disabled=\"true\" role=\"button\" type=\"button\" aria-label=\"Go to the previous slide\"></button><div class=\"mfe-recos-slider-container\" role=\"status\"><ul class=\"mfe-recos mfe-recos-slider clear \"><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"191277407607\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£21.95\" data-price=\"2195\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%221912774076071c8dc76c030a4820a85f8d50a908d3d9%22%2C%22enc%22%3A%22AQADAAAC8GTjefiyZNksJEqetTUnCBp7113NGcYsal0g0SkDSD0X%2B6xxtkuKn3dzw%2F0yKy5RJe0cls8cMW7vpqqU9%2Fv11FJ16v0NbcD%2BksWSJHZwAThLgJRQZprUf2COtbXFxpZ0JnfWBlxAteni%2FE3fm%2F46jfxwENq4%2F2YgMute0eXH2x%2F6cCiY%2BJRKYni3vUZdVzQCxWi0gVGO5L82hwVGLTr2P5U0Bg5Y%2FhOtTrdkyP%2FFTStYLTKxfywFH8A5B0yrzr69lIsJQoiWMj7lYrY%2FV0Zm%2FsZq5AdfmnS8g%2F2hLlkCBhiGSDSUuTBgvXlMglHMTHENiWxBVnE%2F6IwY4evzPzdVr%2FQSotFgIaZ0vrHHlsybdYsxH22gI2908012OpqObkTCodW8suFZBhJljbf8x9%2Fx6PG4GAB7uEiTirp9smyZH26glcEb2Sg0sIuLWE7S4Nw8ieMSsSf2Y98sYHnx16TgoyK7crqzTlG88AchY%2BDeNrZkr9Z1KbrYwzim%2Fw6vwIL%2BywWS7WWAbW8qdQR3JRt2hoXJrMkGP3lBHcVx4dIv1rQsw1iTMf9h9eROd%2FdEk0sXnLK9kDHL8B4te4eRQ6BQ2JJsO7Fz%2BV5VGdzCpXt7veBghuoxXzwfh6MM3iBtwLmEsxRarEEVbVBm%2BW8cs4xYP8ZrmMQHDSTaRub7Dc0kyWdWn%2FUQrQT77YEMUdFKHzpCBfJuDnnh%2F4fJ%2BZrnO8gwNmGeNU9PYaV%2FV%2FV00f0gSleoGBftymCHE0bymGIHPkD5UYOu2FSK%2FsLr2VR%2FWTOu6s5zHANPL24paw%2FoHHq6vjvh7wxUC8NrcA4r4br9ZbKR%2B1%2BDsb8YneiGSpmkbX4ZkahX9rUffh1u1X6Es0as76cPDUE3RcXzorUp5RSBmxojD86QzeWVwNuwMVH1R29weZwGwBZWATuUM%2BHdv7Q9TfS5A1uwJrZdeZSCh0DNLIGTaoN5aISSM690lA28tWevfK9Nyk0Xjm%2FXJXUFN%2FSEQUaD%22%7D\" aria-label=\"item 1 of 12 IRWIN Marples 444S5 M444 Bevel Edge Wood Chisel Set Blue Chip 5: 6, 10, 12, 18 &amp;\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/UpQAAOSwf31aneXb/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/UpQAAOSwf31aneXb/s-l200.jpg\" alt=\"IRWIN Marples 444S5 M444 Bevel Edge Wood Chisel Set Blue Chip 5: 6, 10, 12, 18 &amp;\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-promoted-label\" data-detail=\"promoted\">SPONSORED</div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"IRWIN Marples 444S5 M444 Bevel Edge Wood Chisel Set Blue Chip 5: 6, 10, 12, 18 &amp;\" data-orig-truncated-text=\"IRWIN Marples 444S5 M444 Bevel Edge W...\" aria-label=\"IRWIN Marples 444S5 M444 Bevel Edge Wood Chisel Set Blue Chip 5: 6, 10, 12, 18 &amp;\"><span>IRWIN Marples 444S5 M444 Bevel Edge Wood Chisel Set Blue Chip 5: 6, 10, 12, 18 &amp;</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£21.95</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left mfe-strikethrough\" aria-label=\"previous price £42.59\" data-detail=\"strikethroughPrice\">£42.59</span></p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:0px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"312042872049\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£29.70\" data-price=\"2970\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://pulsar.ebay.co.uk/plsr/clk/0/SADS/9?pld=%7B%22mecs%22%3A%223120428720491c8dc76c030a4820a85f8d50a908d3d9%22%2C%22enc%22%3A%22AQADAAAC8GTjefiyZNksJEqetTUnCBrfeMcb8Nu8rW44x7o0vdl%2FeQ8ravg2sxOfoMpnUp%2B4LNz3UIHvOEczIOAjCBqGqFW917ACJhmo12FqR8dW8mlm6aZLwKVJM1uriMO%2BfR2064Mmov9EWZ1GHFZ5u4clAur2bzAoqpHPkJIpg3%2F40QMIt3%2BWzJe9vDc%2F3NHf6M7PRIOORYno61XwzZiJj4E65wXpGTE2DkO3cfm%2BbKl95rbfNsI3WBjpGK5NUgAPtxv7SzBbL%2B9x5OFHeyN8ascX8TlxYZ4STd%2BC3YPcRjvD9tuFF0ucnIKN6Tox14YkzUe42MDc8PgdpawOMsJRiH8nk3ov20VWvBWrY67tlZ8Lnv%2F7mClbPMZ9UwML5ilymCV6FaFNl2eqSEThdME3ZvjqZKhaENRxTzNs34q%2BZgki2a5uUOFvbV%2FhG7VhKwLqxGXrBWFgTFAvPyhuSd3MjnTvNsUoagMVNi49PECYsCz8ajZCz6stm%2Fw9w0cdt63BEhQpDCkKf9W7lG3xklJN5HG9io5nzFYhsA8zf80YCJR0aw0dYjqOxC1kOerDk94XUrmGpUPLJZ8GWxtMZjcagrMT38fheN6uA5%2FWOGSaqgATYlhvmefY%2FXMiGZ04IPMN1aWP3wQcp8ID7HHd3uW4rV0nHNhONJ%2FdH0zr%2FDpIE9cnEwFmuhKqhELD%2FwekWzGJDZTFzlTkuqbdK7XutdoMek2O8Yap9qDESYGwepk6zwEtbSn310xex5DcKItY7wTwJvubU0IOJNp8gln1c47fP3tQTtSZ2cUMkVT%2FeP3tfJ7Kwe3%2Bl45T4CtELXJD1AhIOb4TP9Fy4u7Y554Okdp59ngkxKaYHAadX301pxrDk%2BfPsGDEXWcVz9kNbHXeYuNhb7izZbDazW27gKLt5Igjv7efnI7gUKdQkJAOwn%2Ft3wjd2F9rmqB%2F1Pg%2BFYJU8yDO3OCj6toL1T%2F5CD67IVYdpDcgvpcTr%2FW91NGL0bKbMaPsLTpr%22%7D\" aria-label=\"item 2 of 12 IRWIN Marples M444 Wood Chisel Set : 6, 10, 12, 18 &amp; 25mm+ Leather Storage Roll\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/iG0AAOSwcFFanahP/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/iG0AAOSwcFFanahP/s-l200.jpg\" alt=\"IRWIN Marples M444 Wood Chisel Set : 6, 10, 12, 18 &amp; 25mm+ Leather Storage Roll\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-promoted-label\" data-detail=\"promoted\">SPONSORED</div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"IRWIN Marples M444 Wood Chisel Set : 6, 10, 12, 18 &amp; 25mm+ Leather Storage Roll\" data-orig-truncated-text=\"IRWIN Marples M444 Wood Chisel Set : ...\" aria-label=\"IRWIN Marples M444 Wood Chisel Set : 6, 10, 12, 18 &amp; 25mm+ Leather Storage Roll\"><span>IRWIN Marples M444 Wood Chisel Set : 6, 10, 12, 18 &amp; 25mm+ Leather Storage Roll</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£29.70</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:18px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"141303810990\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£10.35\" data-price=\"1035\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/OX-TRADE-HEAVY-DUTY-FIBREGLASS-HANDLE-CLUB-MASH-HAMMER-2-5LB-T081302/141303810990?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D3%26rkt%3D12%26sd%3D262745174897%26itm%3D141303810990&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 3 of 12 OX TRADE HEAVY DUTY FIBREGLASS HANDLE CLUB MASH HAMMER - 2.5LB T081302\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/5IQAAOSwjI5ay2-O/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/5IQAAOSwjI5ay2-O/s-l200.jpg\" alt=\"OX TRADE HEAVY DUTY FIBREGLASS HANDLE CLUB MASH HAMMER - 2.5LB T081302\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"OX TRADE HEAVY DUTY FIBREGLASS HANDLE CLUB MASH HAMMER - 2.5LB T081302\" data-orig-truncated-text=\"OX TRADE HEAVY DUTY FIBREGLASS HANDLE...\" aria-label=\"OX TRADE HEAVY DUTY FIBREGLASS HANDLE CLUB MASH HAMMER - 2.5LB T081302\"><span>OX TRADE HEAVY DUTY FIBREGLASS HANDLE CLUB MASH HAMMER - 2.5LB T081302</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£10.35</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"201304754089\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£12.75\" data-price=\"1275\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/6-Piece-Soft-Grip-Mini-Plier-Set-Side-Long-Cutting-Bent-Flat-Nose-with-Hard-Case/201304754089?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D4%26rkt%3D12%26sd%3D262745174897%26itm%3D201304754089&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 4 of 12 6 Piece Soft Grip Mini Plier Set Side Long Cutting Bent Flat Nose with Hard Case\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/gjAAAOSw5UZY~LXV/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/gjAAAOSw5UZY~LXV/s-l200.jpg\" alt=\"6 Piece Soft Grip Mini Plier Set Side Long Cutting Bent Flat Nose with Hard Case\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"6 Piece Soft Grip Mini Plier Set Side Long Cutting Bent Flat Nose with Hard Case\" data-orig-truncated-text=\"6 Piece Soft Grip Mini Plier Set Side...\" aria-label=\"6 Piece Soft Grip Mini Plier Set Side Long Cutting Bent Flat Nose with Hard Case\"><span>6 Piece Soft Grip Mini Plier Set Side Long Cutting Bent Flat Nose with Hard Case</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£12.75</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"332849691211\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£27.20\" data-price=\"2720\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/Roughneck-Post-Hole-Rammer-130mm-5in/332849691211?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D5%26rkt%3D12%26sd%3D262745174897%26itm%3D332849691211&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 5 of 12 Roughneck Post Hole Rammer 130mm 5in\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/wPsAAOSwts9bzcL~/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/wPsAAOSwts9bzcL~/s-l200.jpg\" alt=\"Roughneck Post Hole Rammer 130mm 5in\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Roughneck Post Hole Rammer 130mm 5in\" data-orig-truncated-text=\"Roughneck Post Hole Rammer 130mm 5in\" aria-label=\"Roughneck Post Hole Rammer 130mm 5in\"><span>Roughneck Post Hole Rammer 130mm 5in</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£27.20</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"401556239424\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£18.71\" data-price=\"1871\" data-is-free-shipping=\"true\" aria-hidden=\"false\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/Trend-Fast-Track-Portable-Sharpener-Range/401556239424?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D6%26rkt%3D12%26sd%3D262745174897%26itm%3D401556239424&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 6 of 12 Trend Fast Track Portable Sharpener Range\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/pWMAAOSwE9Bb5a7b/s-l200.jpg\" src=\"https://i.ebayimg.com/thumbs/images/g/pWMAAOSwE9Bb5a7b/s-l200.jpg\" alt=\"Trend Fast Track Portable Sharpener Range\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Trend Fast Track Portable Sharpener Range\" data-orig-truncated-text=\"Trend Fast Track Portable Sharpener R...\" aria-label=\"Trend Fast Track Portable Sharpener Range\"><span>Trend Fast Track Portable Sharpener Range</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£18.71</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"131282535472\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£25.44\" data-price=\"2544\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/Knipex-87-01-300-Cobra-Hightech-Water-Pump-Pliers-300mm/131282535472?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D7%26rkt%3D12%26sd%3D262745174897%26itm%3D131282535472&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 7 of 12 Knipex 87 01 300 Cobra® Hightech Water Pump Pliers 300mm\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/EcoAAOSw87lb7jk6/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"Knipex 87 01 300 Cobra® Hightech Water Pump Pliers 300mm\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"Knipex 87 01 300 Cobra® Hightech Water Pump Pliers 300mm\" data-orig-truncated-text=\"Knipex 87 01 300 Cobra® Hightech Wate...\" aria-label=\"Knipex 87 01 300 Cobra® Hightech Water Pump Pliers 300mm\"><span>Knipex 87 01 300 Cobra® Hightech Water Pump Pliers 300mm</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£25.44</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"282413074906\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£18.80\" data-price=\"1880\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/FatMax-Angled-Diagonal-Cutting-Pliers/282413074906?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D8%26rkt%3D12%26sd%3D262745174897%26itm%3D282413074906&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 8 of 12 FatMax Angled Diagonal Cutting Pliers\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/TewAAOSwddhZ17aH/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"FatMax Angled Diagonal Cutting Pliers\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"FatMax Angled Diagonal Cutting Pliers\" data-orig-truncated-text=\"FatMax Angled Diagonal Cutting Pliers\" aria-label=\"FatMax Angled Diagonal Cutting Pliers\"><span>FatMax Angled Diagonal Cutting Pliers</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£18.80</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"232082338944\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£19.95\" data-price=\"1995\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/CK-Tools-Redline-VDE-Electricians-Pliers-Cutters-Multi-Options/232082338944?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D9%26rkt%3D12%26sd%3D262745174897%26itm%3D232082338944&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 9 of 12 CK Tools Redline VDE Electricians Pliers &amp; Cutters Multi Options \"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/EVcAAOSwgmJX0p-n/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"CK Tools Redline VDE Electricians Pliers &amp; Cutters Multi Options \" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"CK Tools Redline VDE Electricians Pliers &amp; Cutters Multi Options \" data-orig-truncated-text=\"CK Tools Redline VDE Electricians Pli...\" aria-label=\"CK Tools Redline VDE Electricians Pliers &amp; Cutters Multi Options \"><span>CK Tools Redline VDE Electricians Pliers &amp; Cutters Multi Options </span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£19.95</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"161356938375\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£33.85\" data-price=\"3385\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/FACOM-391-16VE-ELECTRICAL-INSULATED-1000V-VDE-CUTTERS-SNIPS/161356938375?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D10%26rkt%3D12%26sd%3D262745174897%26itm%3D161356938375&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 10 of 12 FACOM 391.16VE ELECTRICAL INSULATED 1000V VDE CUTTERS SNIPS\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/H0AAAOSwOsFcCOHb/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"FACOM 391.16VE ELECTRICAL INSULATED 1000V VDE CUTTERS SNIPS\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"FACOM 391.16VE ELECTRICAL INSULATED 1000V VDE CUTTERS SNIPS\" data-orig-truncated-text=\"FACOM 391.16VE ELECTRICAL INSULATED 1...\" aria-label=\"FACOM 391.16VE ELECTRICAL INSULATED 1000V VDE CUTTERS SNIPS\"><span>FACOM 391.16VE ELECTRICAL INSULATED 1000V VDE CUTTERS SNIPS</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£33.85</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"123418907625\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£12.49\" data-price=\"1249\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/OX-TOOLS-OX-P133250-PRO-HAND-SAW-500mm-20-SOFT-GRIP-HANDLE/123418907625?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D11%26rkt%3D12%26sd%3D262745174897%26itm%3D123418907625&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 11 of 12 OX TOOLS OX-P133250 PRO HAND SAW 500mm / 20&quot; SOFT GRIP HANDLE\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/7hMAAOSwR~tbvxSz/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"OX TOOLS OX-P133250 PRO HAND SAW 500mm / 20&quot; SOFT GRIP HANDLE\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"OX TOOLS OX-P133250 PRO HAND SAW 500mm / 20&quot; SOFT GRIP HANDLE\" data-orig-truncated-text=\"OX TOOLS OX-P133250 PRO HAND SAW 500m...\" aria-label=\"OX TOOLS OX-P133250 PRO HAND SAW 500mm / 20&quot; SOFT GRIP HANDLE\"><span>OX TOOLS OX-P133250 PRO HAND SAW 500mm / 20\" SOFT GRIP HANDLE</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£12.49</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:37px\">&nbsp;</p></div></li><li class=\"mfe-reco-ct &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    &#10;    \" data-id=\"123246537246\" data-condition=\"New\" data-condition-id=\"3\" data-price-formatted=\"£33.24\" data-price=\"3324\" data-is-free-shipping=\"true\" aria-hidden=\"true\"><div class=\"mfe-reco \"><a class=\"mfe-reco-link\" tabindex=\"0\" href=\"https://www.ebay.co.uk/itm/3X-OX-Tools-Pro-Hand-Saw-500mm-20-Increased-Grip-Performance-Saw-P133250/123246537246?_trkparms=aid%3D333200%26algo%3DCOMP.MBE%26ao%3D1%26asc%3D20180409081753%26meid%3D1c8dc76c030a4820a85f8d50a908d3d9%26pid%3D100008%26rk%3D12%26rkt%3D12%26sd%3D262745174897%26itm%3D123246537246&amp;_trksid=p2047675.c100008.m2219\" aria-label=\"item 12 of 12 3X OX Tools Pro Hand Saw 500mm / 20&quot; Increased Grip Performance Saw - P133250\"><div class=\"mfe-img-ct\"><div class=\"mfe-img-ct-inner \"><span class=\"mfe-img-helper\"></span><img class=\"mfe-img-image\" data-src=\"https://i.ebayimg.com/thumbs/images/g/sr0AAOSwAspbR1Zj/s-l200.jpg\" src=\"data:image/gif;base64,R0lGODlhAQACAJEAAP///wAAAMDAwAAAACH5BAEAAAIALAAAAAABAAIAAAIClAoAOw==\" alt=\"3X OX Tools Pro Hand Saw 500mm / 20&quot; Increased Grip Performance Saw - P133250\" aria-hidden=\"true\"></div><div class=\"mfe-img-ct-inner mfe-loader bg-transparent\"><span class=\"mfe-img-helper\"></span><span aria-label=\"Loader\" class=\"mfe-icon mfe-icon-spinner mfe-spinner\" role=\"img\"></span></div><div class=\"mfe-img-ct-inner actions-buttons\"><div></div></div></div><div class=\"mfe-content-wrapper\"><div class=\"mfe-content\"><span class=\"mfe-added-label \" data-detail=\"cart\"></span></div><div class=\"mfe-content\"></div><div class=\"mfe-title \" data-orig-text=\"3X OX Tools Pro Hand Saw 500mm / 20&quot; Increased Grip Performance Saw - P133250\" data-orig-truncated-text=\"3X OX Tools Pro Hand Saw 500mm / 20&quot; ...\" aria-label=\"3X OX Tools Pro Hand Saw 500mm / 20&quot; Increased Grip Performance Saw - P133250\"><span>3X OX Tools Pro Hand Saw 500mm / 20\" Increased Grip Performance Saw - P133250</span></div></div></a><p class=\"mfe-price\" data-detail=\"price\">£33.24</p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left mfe-strikethrough\" aria-label=\"previous price £34.99\" data-detail=\"strikethroughPrice\">£34.99</span></p><p class=\"mfe-reco-detail clear\"><span class=\"mfe-pull-left \" data-detail=\"shipping\">Free P&amp;P</span></p><p class=\"mfe-remove-spaces\" style=\"height:19px\">&nbsp;</p></div></li></ul></div><button class=\"mfe-page mfe-page-right icon-chevron icon-chevron-right disabled\" aria-disabled=\"true\" role=\"button\" type=\"button\" aria-label=\"Go to the next slide\"></button></div></div></div></div></div></div></div><noscript mfe-widget-id data-widget-id=nume_html_100008_51741-w0-w0,nume_html_100008_51741-w0,nume_html_100008_51741></noscript></div>\r\n\t<div class=\"pglv-pr-rep \">\r\n\t<a href=\"http://cgi1.ebay.co.uk/ws/eBayISAPI.dll?ReportThisItemRedirect&active=1&rt=nc&_trksid=p2047675.l2566&itemid=262745174897&seller=twtoolsuperstore\" class=\"\"  target=\"_blank\">Report item<b class=\"g-hdn\"> - opens in a new window or tab</b></a>\r\n\t</div><div class=\"tab_wp\" id=\"viTabs\">\r\n\t\t\t\t<div class=\"tab g\">\r\n\t\t\t\t\t<a id=\"viTabs_0\" class=\"item  sel\" href=\"javascript:;\" title=\"Description\"><h2 class=\"\">Description</h2></a>\r\n\t\t\t\t\t\t<a id=\"viTabs_1\" class=\"item \" href=\"javascript:;\" title=\"Postage and payments\"><h2 class=\"\">Postage and payments</h2></a>\r\n\t\t\t\t\t\t<div class=\"tab_clr\"></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t<div id=\"viTabs_0_cnt\" class=\"content sel\">\r\n\t\t\t\t\t\t<div id=\"vi-desc-maincntr\" class=\"\">\r\n\t\t\t<!-- call this inside Tab for Item description -->\r\n\t\t\t\t<div class=\"iti-eu-txt iti-eu-pd u-flR\">\r\n\r\n\t\t<div class=\"iti-lbl u-flL iti-num vi-iti-lbl-acc-cls\" id=\"\" style=\"\">\r\n\teBay item number:</div><div id=\"descItemNumber\" class=\"u-flL iti-act-num\">262745174897</div>\r\n</div>\r\n<div id=\"readMoreDesc\" class=\"ds-lgl-txt u-cb  readMore\">\r\n\tSeller assumes all responsibility for this listing.</div><div class=\"vi-desc-revHistory\">\r\n\t<div>\r\n\t\t<span class=\"vi-desc-revHistory-lbl\">Last updated on</span>\r\n\t\t&nbsp;22 Jan, 2019 08:37:46 GMT&nbsp;\r\n\t\t<span><a href=\"https://cgi.ebay.co.uk/ws/eBayISAPI.dll?ViewItemRevisionDetails&item=262745174897&rt=nc&_trksid=p2047675.l2569\">View all revisions</a>\r\n\t\t</span>\r\n\t</div>\r\n</div><!-- does this ever get executed -->\r\n\t\t\t<div><div class=\"bscd\" id=\"e9\">\r\n\t<div class=\"bsi-c1 bsic1-hide\">\r\n\t<div>nottaW nabE</div>\r\n\t<div>etatsE lairtsudnI lliH yeldaC 11 tinU</div>\r\n\t<div>esolC redyR</div>\r\n\t<div>erihsybreD ,etocnildawS UE9 11ED</div>\r\n\t\t<div>KU</div>\r\n\t</div><div class=\"bsi-c2 bsic2-lft\">\r\n\t\t<div><span class=\"bsi-lbl\">:liamE</span><span>ku.oc.elaselohwwt@ofni</span></div>\r\n\t\t</div>\r\n\t<div class=\"u-cb\"></div>\r\n</div>\r\n\r\n</div>\r\n\t\t\t<!-- TODO: remove hardcoded ID -->\r\n\t\t<div class=\"itemAttr\" id=\"viTabs_0_is\">\r\n\t\t\t<div class=\"section\">\r\n\t\t\t\t\t<h2 class=\"secHd\">Item specifics</h2>\r\n\t\t\t\t\t<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">\r\n\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tCondition:</td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<!-- ITEM CONDITION  -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- If Attribute is having hidden text / link\t -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div aria-live=\"polite\">\r\n\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tNew: <span id=\"vi-cond-addl-info\">A brand-new, unused, unopened and undamaged item in original retail packaging (where packaging is </span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"hiddenContent\" class=\"u-dspn\" aria-expanded=\"false\" >\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tapplicable). If the item comes direct from a manufacturer, it may be delivered in non-retail packaging, such as a plain or unprinted box or plastic bag. See the seller&#039;s listing for full details.<a href=\"https://pages.ebay.co.uk/help/sell/contextual/condition_1.html\" target=\"_blank\" class=\"infoLink u-nowrap\" >\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tSee all condition definitions<b class=\"g-hdn\">- opens in a new window or tab</b></a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- TODO: remove hardcoded ID -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span id=\"readFull\" class=\"infoLink u-nowrap\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t... <a href=\"javascript:;\">Read more<b class=\"g-hdn\">about the condition</b></a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- </td> -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tStock Number: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>OX-P080120</span></td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tBrand: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>OX Tools</span></td>\r\n\t\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tManufacturer warranty: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>Other: see item description</span></td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tType: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>Claw Hammer</span></td>\r\n\t\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tMPN: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>OX-P080120</span></td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tHead/Face Material: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>Steel</span></td>\r\n\t\t\t\t\t\t\t\t\t\t<td class=\"attrLabels\">\r\n\t\t\t\t\t\t\t\t\t \t\t\tEAN: </td>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<td width=\"50.0%\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>9328217003401</span></td>\r\n\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t<!-- Added for see review link -->\r\n\t\t\t\t\t\t\t</table>\r\n\r\n\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t<div id=\"desc_wrapper_ctr\">\r\n\t\t<div class=\"sh-cnt u-cb\">\r\n\t\t\t\t<div class=\"sh-hdr\" style='background-color: #063d71;'>\r\n\t\t\t\t\t\t<div class=\"u-flL\" style='color: #fedf00;'><h3 class=\"sh-ttl\">TW Wholesale LTD</h3></div>\r\n\t\t\t\t\t\t<div class=\"sh-vs u-flR\" style='color: #fedf00;'>\r\n\t\t\t\t\t\t\tVisit my eBay shop &nbsp;\r\n\t\t\t\t\t\t\t<a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD?_trksid=p2047675.l2568\"  alt=\"TW Wholesale LTD\"  title=\"TW Wholesale LTD\"><img class=\"sh-vs-img\" src=\"https://ir.ebaystatic.com/pictures/aw/pics/s.gif\" border=\"0\"></a></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"sh-inner\" style='background-color: #ffffff;'>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t<div class=\"sh-info  u-flL\">\r\n\t\t\t\t\t\t\t\t<div class=\"sh-info-lnk\">\r\n\t\t\t\t\t\t\t\t\t<a href=\"http://my.ebay.co.uk/ws/eBayISAPI.dll?AcceptSavedSeller&linkname=includenewsletter&sellerid=twtoolsuperstore&_trksid=\">Sign up for newsletter</a>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t<table width=\"100%\">\r\n\t\t<tr>\r\n\t\t\t<td class=\"ds-cl\" id=\"storeHeader\">\r\n\t\t\t\t<div class=\"cl-cnt u-flL\">\r\n\t\t\t\t<div class=\"cl-hdr\" style='background-color: #063d71;'>\r\n\t\t\t\t\t\t<h3 class=\"cl-ttl\" style='color: #fedf00;'>Shop categories</h3>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"cl-lcat\" style='background-color: #ffffff;'>\r\n\t\t\t\t\t\t<div class=\"cl-lcat-ttl\">\r\n\t\t\t\t\t\t\t<a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD?_trksid=p2047675.l2563\">Shop home</a>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<ul>\r\n\t\t\t\t\t\t\t<li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Power-Tools-/_i.html?_storecat=59165863013\">Power Tools</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Allen-Hex-Keys-/_i.html?_storecat=59165929013\">Allen & Hex Keys</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Automotive-Equipment-/_i.html?_storecat=59165930013\">Automotive Equipment</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Buckets-/_i.html?_storecat=59165814013\">Buckets</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Chisels-/_i.html?_storecat=59236735013\">Chisels</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Clamps-and-Vices-/_i.html?_storecat=59165283013\">Clamps and Vices</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Clothing-/_i.html?_storecat=59165816013\">Clothing</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Cable-Cutters-Grips-Pliers-/_i.html?_storecat=59165817013\">Cable Cutters, Grips & Pliers</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Drill-Bits-/_i.html?_storecat=59165818013\">Drill Bits</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Files-Rasps-/_i.html?_storecat=59173942013\">Files & Rasps</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Hammers-/_i.html?_storecat=59165820013\">Hammers</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Nuts-Nails-Rivets-Screws-/_i.html?_storecat=59439558013\">Nuts, Nails, Rivets & Screws</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Platforms-and-Ladders-/_i.html?_storecat=59165824013\">Platforms and Ladders</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Protective-Equipment-/_i.html?_storecat=59165825013\">Protective Equipment</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Sanders-/_i.html?_storecat=59446351013\">Sanders</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Saws-/_i.html?_storecat=59165826013\">Saws</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Screwdrivers-/_i.html?_storecat=59165829013\">Screwdrivers</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Sharpening-Implements-/_i.html?_storecat=59236736013\">Sharpening Implements</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Silicone-and-Sealants-/_i.html?_storecat=59165830013\">Silicone and Sealants</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Sockets-and-Ratchets-/_i.html?_storecat=59165831013\">Sockets and Ratchets</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Spades-and-Shovels-/_i.html?_storecat=59850223013\">Spades and Shovels</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Spanners-and-Wrenches-/_i.html?_storecat=59165832013\">Spanners and Wrenches</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Spirit-Levels-/_i.html?_storecat=59165833013\">Spirit Levels</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Squares-Slides-Rules-/_i.html?_storecat=59439565013\">Squares, Slides & Rules</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Tape-Measures-/_i.html?_storecat=59165834013\">Tape Measures</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Tool-Bags-and-Storage-/_i.html?_storecat=59165835013\">Tool Bags and Storage</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Torches-and-Lanterns-/_i.html?_storecat=59165837013\">Torches and Lanterns</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Bricklaying-Building-Tools-/_i.html?_storecat=59165862013\">Bricklaying & Building Tools</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Plastering-Specific-Tools-/_i.html?_storecat=59165860013\">Plastering Specific Tools</a><li><a href=\"https://www.ebay.co.uk/str/TW-Wholesale-LTD/Plumbing-Specific-Tools-/_i.html?_storecat=59165859013\">Plumbing Specific Tools</a></ul>\r\n\t\t\t\t\t\t<div class=\"cl-spc1\"></div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t</td>\r\n\t\t\t<td class=\"ds-dtd\">\r\n<div id=\"desc_div\" class=\"\">\r\n\t\t\t\t<script>if ((typeof (oGaugeInfo) != \"undefined\")){var descGaugeStartInfo = {descST:(new Date()).getTime()};}</script>\r\n\t\t\t\t\t\t\t<iframe id=\"desc_ifr\" sandbox=\"allow-scripts allow-popups allow-popups-to-escape-sandbox allow-same-origin\" class=\"\" height=\"500\" width=\"99%\" marginheight=\"0\" marginwidth=\"0\" frameborder=\"0\" src=\"https://vi.vipr.ebaydesc.com/ws/eBayISAPI.dll?ViewItemDescV4&item=262745174897&t=1512231095000&tid=310&category=20763&seller=twtoolsuperstore&excSoj=1&excTrk=1&lsite=3&ittenable=false&domain=ebay.co.uk&descgauge=1&cspheader=1&oneClk=1&secureDesc=1\" title=\"Seller's description of item\"></iframe>\r\n\t\t\t\t\t\t\t</div>\r\n</td>\r\n\t\t</tr>\r\n\t</table>\r\n</div>\r\n\t<div id=\"bsi-c\" class=\" bsi-c-uk-bislr  bsi-noexp-toc \">\r\n\t<div class=\"bsi-cnt\">\r\n\t\t<div class=\"bsi-ttl section-ttl\"><h2>Business seller information</h2><div class=\"rd-sep\"></div></div>\r\n\t\t\t<div class=\"bsi-bn\">TW Wholesale LTD</div>\r\n\t\t\t<div class=\"bsi-cic\">\r\n\t\t\t\t<div class=\"bsi-c1 no-float\">\r\n\t<div>Eban Watton</div>\r\n\t<div>Unit 11 Cadley Hill Industrial Estate</div>\r\n\t<div>Ryder Close</div>\r\n\t<div>DE11 9EU Swadlincote, Derbyshire</div>\r\n\t\t<div>UK</div>\r\n\t</div><div id=\"bsi-ec\" class=\"u-flL \">\r\n\t\t\t\t\t<span class=\"bsi-arw bsi-arw-cic\"><a href=\"javascript:;\"></a></span>\r\n\t\t\t\t\t<span class=\"bsi-cdt\"><a href=\"javascript:;\">Complete information</a></span>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div id=\"e10\" class=\"u-flL bsi-ci \">\r\n\t\t\t\t\t</div>\r\n\t\t\t\t<div class=\"u-cb\"></div>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"bsi-trd\">\r\n\t\t\t<div class=\"vat-number-label\"><b>VAT number:</b></div>\r\n\t\t\t\t<div class=\"vat-number\">\r\n\t\t\t\t\t<div>GB 111164035</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t<div class=\"u-cb\"></div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n</div>\r\n\r\n<div id=\"rpdCntId\" class=\"vi-plc-hldr\"></div>\r\n\t\t\t        \t<div style=\"margin-top:10px\" id=\"ret-acpt-tab\">\r\n\t\t\t\t        \t\t<div class=\"rpMainCont\">\r\n\t<div>\r\n\t\t<div id=\"rpdId\" class=\"rpSubCont\">\r\n\t\t<div class=\"section-sttl\">\r\n\t\t\t<h3 class=\"rpHead\">\r\n\t\t\t\tReturns policy</h3>\r\n\t\t\t</div>\r\n\t\t<table  width=\"99%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\" class=\"rpTbl\" >\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<th width=\"50%\">\r\n\t\t\t\t\t\t\t\t\t\t<div>After receiving the item, cancel the purchase within</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t\t\t<th width=\"50%\">\r\n\t\t\t\t\t\t\t\t\t<div>Return postage</div>\r\n\t\t\t\t\t\t\t\t\t\t</th>\r\n\t\t\t\t\t\t\t</tr>\r\n\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td  width=\"50%\"><div>30 days</div></td>\r\n\t\t\t\t\t\t\t<td width=\"50%\">\r\n\t\t\t\t\t\t\t\t\t<div>Buyer pays return postage</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- eBayPlus -->\r\n\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t</table>\r\n\t\t\t\t\t<div class=\"rpReferCont\">\r\n\tTake a look at our <span><a href=\"http://pages.ebay.co.uk/help/buy/return-item.html\">Returning an item help page</a></span> for more details. You're covered by the <b><a href=\"http://pages.ebay.co.uk/help/policies/money-back-guarantee.html\">eBay Money Back Guarantee</a></b> if you receive an item that is not as described in the listing.</div>\r\n\r\n<div class=\"rpAUXSmallCont\">\r\n\t\t\t<div>The buyer is responsible for return postage costs.</div>\r\n\t\t\t\t</div>\r\n\t<table  width=\"99%\" cellspacing=\"0\" cellpadding=\"5\" border=\"0\" class=\"rpTbl\" >\r\n\t\t\t<tr>\r\n\t\t\t\t<th>\r\n\t\t\t\t\t<div>Return policy details</div>\r\n\t\t\t\t</th>\r\n\t\t\t</tr>\r\n\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t<div>Returns accepted</div>\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t<td class=\"rpd-nTopPad\">\r\n\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t<span class=\"vi-rpd-textStyle\">Most purchases from business sellers are protected by the Consumer Contract Regulations 2013 which give you the right to cancel the purchase within 14 days after the day you receive the item. Find out more about your <a href=\"http://pages.ebay.co.uk/consumer-rights/consumer-rights.html#change\">rights as a buyer <b class=\"g-hdn\"> - opens in a new window or tab</b></a> and <a href=\"http://pages.ebay.co.uk/consumer-rights/consumer-rights.html#change\">exceptions <b class=\"g-hdn\"> - opens in a new window or tab</b></a>.</span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t</table>\r\n\r\n\t\t</div>\r\n\t</div>\r\n\t</div>\r\n</div>\r\n\t\t\t        \t\t<div>\r\n\t<br/><br/><br/><br/>\r\n\t<span class=\" vi-counter-cntr vi-centerclass\">\r\n\t\t</span>\r\n\t</div>\r\n</div>\r\n</div>\r\n\t\t\t\t<div id=\"viTabs_1_cnt\" class=\"content\">\r\n\t\t\t\t\t\t<div id=\"readMoreShp\" class=\"ds-lgl-txt u-cb vi-readMore-ship readMore\">\r\n\tSeller assumes all responsibility for this listing.</div><div id=\"shpCntId\" class=\"vi-plc-hldr\" tabindex=\"-1\"></div>\r\n\t        \t\t<div id=\"vi-ship-maincntr\" class=\"\"><!-- Surround by container -->\r\n\t\t<!-- Build Shipping and handling content -->\r\n\t\t\t\t<div class=\"sh-tab-bdr\">\r\n\t\t\t\t\t<div id=\"vi-spw-btf\">\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t<div id=\"shipNHadling\" class=\"shippingSection_BottomVI vi-shp\">\r\n\t\t\t\t\t\t\t\t<div id=\"shId\" class=\"sh-shid section-sttl\">\r\n\t\t\t\t\t\t\t\t\t<h3 class=\"sh-title\">\r\n\t\t\t\t\t\t\t\t\t\t\t\tPost to me</h3>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<div id=\"shCost-err\" aria-live=\"assertive\" role=\"alert\" style=\"color:#000;\" class=\"sh-err-costNotCalculable sh-err-hide\">\r\n\t\t\t\t\t\t\t\t\t<span class=\"clF\" title=\"icon\"></span>\r\n\t\t\t\t\t\t\t\t\tThis item will post to <b> United Kingdom</b>, but the seller hasn't specified postage options. <a href=\"https://contact.ebay.co.uk/ws/eBayISAPI.dll?ShowCoreAskSellerQuestion&amp;redirect=0&amp;requested=twtoolsuperstore&amp;iid=262745174897\" target=\"_blank\">Contact the seller<b class=\"hideforacc\">- opens in a new window or tab</b></a> and request a postage method to your location.</div>\r\n\t\t\t\t\t\t\t\t<div id=\"shCost-err2\" class=\"sh-err-costNotCalculable sh-err-hide\" aria-live=\"assertive\" role=\"alert\">\r\n\t\t\t\t\t\t\t\t\t<span title=\"icon\"></span>\r\n\t\t\t\t\t\t\t\t\tPostage cost can't be calculated. Please enter a valid postcode.</div>\r\n\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t<div id=\"discounts\" class=\"vi-dm\" style=\"padding-left:15px\">\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<!-- Local pickup --> <!-- ebn only -->\r\n\t\t\t\t\t\t\t\t\t<div class=\"sh-loc\">\r\n\t\t\t\t\t\t\t\t\t\t\t<span>Item location:</span> Swadlincote, United Kingdom</div>\r\n\t\t\t\t\t\t\t\t\t\t<!-- ShipsTo -->\r\n\t\t\t\t\t\t\t\t\t\t<span id=\"shipsToTab\">\r\n<div class=\"sh-sLoc\">\r\n\t\t\tPostage to: United Kingdom, Austria, Belgium, Bulgaria, Croatia, Republic of, Cyprus, Czech Republic, Denmark, Estonia, Finland, France, Germany, Greece, Hungary, Ireland, Italy, Latvia, Lithuania, Luxembourg, Malta, Netherlands, Poland, Portugal, Romania, Slovakia, Slovenia, Spain, Sweden, Australia, United States, Canada, Brazil, Japan, New Zealand, China, Israel, Hong Kong, Norway, Indonesia, Malaysia, Mexico, Singapore, Korea, South, Switzerland, Taiwan, Thailand, Saudi Arabia, South Africa, United Arab Emirates, Ukraine, Chile</div>\r\n\r\n\t<div style=\"padding:5px 0px 0px 0px\" ></div>\r\n\t\t</span>\r\n<!-- Calculate Row -->\r\n\t\t\t\t\t\t\t\t\t<div class=\"sh_calcShipPad\" id=\"medium\">\r\n\t<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" border=\"0\">\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td width=\"53%\" nowrap=\"nowrap\">\r\n\t\t\t\t\t\t<div id=\"shQuantityDiv\" class=\"sh-InlCnt\">\r\n\t\t\t\t\t\t\t<div id=\"shQuantity-errIcn\" class=\"sh-err-icon sh-err-hide\"></div>\r\n\t\t\t\t\t\t\t<label class=\"sh-ShipDtl\" for=\"shQuantity\">Quantity:</label>\r\n\t\t\t\t\t\t\t<input type=\"text\" class=\"sh-TxtCnt\"  value=\"1\" size=\"5\"\tname=\"quantity\" id=\"shQuantity\" >\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div id=\"shCountryDiv\" class=\"sh-InlCnt sh-dropDownPadLeft\">\r\n\t\t\t\t\t\t\t<div id=\"shCountry-errIcn\" class=\"sh-err-icon sh-err-hide\"></div>\r\n\t\t\t\t\t\t\t<label class=\"sh-ShipDtl\" for=\"shCountry\">Change country:</label>\r\n\t\t\t\t\t\t\t<select name=\"country\" id=\"shCountry\" class=\"sh-TxtCnt sh-InlCnt\" >\r\n\t\t\t\t\t\t\t\t<option value=\"-99\" selected>-Select-</option>\r\n\t\t\t\t\t\t\t\t<option\tvalue=\"15\" >Australia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"16\" >Austria</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"23\" >Belgium</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"31\" >Brazil</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"34\" >Bulgaria</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"2\" >Canada</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"44\" >Chile</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"45\" >China</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"53\" >Croatia, Republic of</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"55\" >Cyprus</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"56\" >Czech Republic</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"57\" >Denmark</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"66\" >Estonia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"70\" >Finland</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"71\" >France</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"77\" >Germany</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"80\" >Greece</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"92\" >Hong Kong</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"93\" >Hungary</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"96\" >Indonesia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"99\" >Ireland</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"100\" >Israel</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"101\" >Italy</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"104\" >Japan</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"111\" >Korea, South</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"115\" >Latvia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"121\" >Lithuania</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"122\" >Luxembourg</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"127\" >Malaysia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"130\" >Malta</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"136\" >Mexico</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"146\" >Netherlands</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"149\" >New Zealand</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"154\" >Norway</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"163\" >Poland</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"164\" >Portugal</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"167\" >Romania</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"176\" >Saudi Arabia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"180\" >Singapore</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"181\" >Slovakia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"182\" >Slovenia</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"185\" >South Africa</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"186\" >Spain</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"192\" >Sweden</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"193\" >Switzerland</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"196\" >Taiwan</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"199\" >Thailand</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"209\" >Ukraine</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"210\" >United Arab Emirates</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"3\" selected>United Kingdom</option>\r\n\t\t\t\t\t\t\t\t\t<option\tvalue=\"1\" >United States</option>\r\n\t\t\t\t\t\t\t\t\t</select>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div aria-live=\"assertive\"  role=\"alert\" id=\"shQuantity-errTxt\" class=\"sh-err-text sh-err-hide\">There are 36 items available. Please enter a number less than or equal to 36.</div>\r\n\t\t\t\t\t\t<div aria-live=\"assertive\"  role=\"alert\" id=\"shCountry-errTxt\" class=\"sh-err-text sh-err-hide\">Select a valid country.</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td width=\"47%\">\r\n\t\t\t\t\t\t<div aria-live=\"assertive\"  role=\"alert\" class=\"sh-InlCnt sh-float-l \" id=\"shZipCodeDiv\">\r\n\t\t\t\t\t\t\t<div id=\"shZipCode-errIcn\" class=\"sh-err-icon sh-err-hide\"></div>\r\n\t\t\t\t\t\t\t<label class=\"sh-ShipDtl\" for=\"shZipCode\" id=\"shZipCodeTextDiv\">Postcode:</label>\r\n\t\t\t\t\t\t\t<div class=\"sh-ZipAln sh-InlCnt\">\r\n\t\t\t\t\t\t\t\t<input type=\"text\" class=\"sh-TxtCnt\" name=\"zipCode\"\tsize=\"12\" id=\"shZipCode\" value=\"\"  />\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t<div id=\"shZipCode-errTxt\" class=\"sh-err-text sh-err-hide\">Please enter a valid postcode.</div>\r\n\t\t\t\t\t\t\t<div id=\"shZipCode-errTxt2\" class=\"sh-err-text sh-err-hide\">Please enter up to 7 characters for the postcode</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div aria-live=\"assertive\"  role=\"alert\" id=\"shGetRatesDiv\" class=\"sh-InlCnt \">\r\n\t\t\t\t\t\t\t<input type=\"button\" class=\"sh-BtnTxt btn btn-s btn-ter\" name=\"getRates\"\tid=\"shGetRates\" value=\"Get rates\" />\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t</div>\r\n\t<!-- Shipping Table -->\r\n\t\t\t\t\t\t\t\t\t\t\t<div id=\"shippingSection\" aria-live=\"assertive\" role=\"alert\" style=\"padding:10px;\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<table class=\"sh-tbl\">\r\n\t\t<thead>\r\n\t\t<tr>\r\n\t\t\t<th><div>Postage and packaging</div></th>\r\n\t\t\t\t\t\t\t<th><div>Each additional item</div></th>\r\n\t\t\t\t\t\t\t<th><div>To</div></th>\r\n\t\t\t\t\t\t\t<th><div>Service</div></th>\r\n\t\t\t\t\t\t\t<th><div>Delivery<a href=\"#instrTextTable\">*</a></div></th>\r\n\t\t\t\t\t\t\t\t</tr>\r\n\t\t</thead>\r\n\t\t<tbody>\r\n\t\t\t<!-- skip displaying eBayPlus service for non-members -->\r\n\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t<!-- Column 1 -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div style=\"font-weight:bold;\">Free P&amp;P</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 2 -->\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t<div>Free</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 3 -->\r\n\t\t\t\t\t\t\t\t\t\t<!-- TODO replace this with shipsTo from Shipping service because of each service -->\r\n\t\t\t\t\t\t\t\t\t\t\t<div>United Kingdom</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 4 -->\r\n\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tEconomy Delivery (Other Courier 3 days)\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 5 -->\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div role=\"alert\" class=\"sh-del-frst \">\r\nEstimated by <span class=\"vi-acc-del-range\"><b>Wed. 30 Jan. </b></span></div>\r\n</td>\r\n\t\t\t\t\t\t\t\t\t\t\t<!-- Column 6 -->\r\n\t\t\t\t\t\t\t\t\t\t </tr>\r\n\t\t\t\t\t\t\t\t\t<!-- skip displaying eBayPlus service for non-members -->\r\n\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t<!-- Column 1 -->\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t£6.99</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 2 -->\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t<div>Free</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 3 -->\r\n\t\t\t\t\t\t\t\t\t\t<!-- TODO replace this with shipsTo from Shipping service because of each service -->\r\n\t\t\t\t\t\t\t\t\t\t\t<div>United Kingdom</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 4 -->\r\n\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tExpress Delivery (Other 24 Hour Courier)\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div></div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t<!-- Column 5 -->\r\n\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<div role=\"alert\" class=\"sh-del-frst \">\r\nEstimated by <span class=\"vi-acc-del-range\"><b>Mon. 28 Jan. </b></span></div>\r\n</td>\r\n\t\t\t\t\t\t\t\t\t\t\t<!-- Column 6 -->\r\n\t\t\t\t\t\t\t\t\t\t </tr>\r\n\t\t\t\t\t\t\t\t\t<!-- TODO see if colspan if loops are necessary -->\r\n\t\t\t\t\t\t\t\t</tbody>\r\n\t</table>\r\n<!-- Shipping Delivery Transit time Text -->\r\n<div id=\"instrTextTable\" tabindex=-1 style=\"border-top:1px solid #c4c4c4; padding:5px 10px 15px 18px;\">\r\n\t\t\t\t\t<div style=\"font-family:Verdana; font-size:x-small; font-weight:normal; color:#767676; margin-left:10px; margin-right:10px\">\r\n\t\t\t \t\t\t\t* You’ll see an <a href=\"https://pages.ebay.co.uk/help/buy/contextual/estimated-delivery.html\" target=\"_blank\">estimated delivery date</a> based on the seller’s dispatch time and delivery service. Delivery times may vary, especially during peak periods and will depend on when your <a href=\"https://pages.ebay.co.uk/help/buy/contextual/domestic-handling-time.html\" target=\"_blank\">payment clears <b class=\"hideforacc\">- opens in a new window or tab</b></a>.</div>\r\n\t\t\t\t\t</div>\r\n\t \t\t<div style=\"padding:0px 10px 15px 18px;font-family:Verdana; font-size:x-small; font-weight:normal; color:#767676; margin-left:10px; margin-right:10px\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tFor delivery to collection station, delivery options may vary.</div>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<!-- HandlingTax -->\r\n\t\t\t\t\t\t\t\t<div class=\"sh-handTablePos\">\r\n\t\t<table class=\"sh-tbl\">\r\n\t\t\t<thead>\r\n\t\t\t<tr>\r\n\t\t\t\t<th>\r\n\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\tDomestic dispatch time</div>\r\n\t\t\t\t\t</th>\r\n\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t<tr>\r\n\t\t\t\t<td>\r\n\t\t\t\t\t\t<div>Will usually dispatch within 1 working day of <a href=\"https://pages.ebay.co.uk/help/buy/contextual/domestic-handling-time.html\" target=\"_blank\">receiving cleared payment<b class=\"hideforacc\"> - opens in a new window or tab</b></a>.</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table><br>\r\n\r\n\t\t<table class=\"sh-tbl\">\r\n\t\t\t<thead>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t</tr>\r\n\t\t\t</thead>\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\r\n\t\t</div>\r\n<!-- Escrow Avaialble -->\r\n\t\t\t\t\t\t\t\t<!-- GetItFast -->\r\n\t\t\t\t\t\t\t\t<!-- Vat Shipping Proce -->\r\n\t\t\t\t\t\t\t\t<div class=\"sh-vat-pad\">\r\n\t\t<div class=\"sh-vat\">VAT price: 20.0% (included in the listed price).</div>\r\n\t\t<div class=\"sh-vatInfo\"> If you have questions about this VAT, please contact the seller. The actual VAT requirements and rates may vary depending on the final sale. </div>\r\n\t</div>\r\n</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t        \t<div id=\"payCntId\" class=\"vi-plc-hldr\"></div>\r\n\t\t\t\t<div class=\"\"  id=\"vi-pay-maincntr\">\r\n\t\t\t\t  <div class=\"pd-cnt\">\r\n\t\t\t<div>\r\n\t\t\t\t<div id=\"payId\" class=\"pd-inner\">\r\n\t\t\t\t\t<div class=\"section-sttl\"><h3 class=\"pd-ttl\">Payment details</h3></div>\r\n\t\t\t\t\t<div class=\"pd-data\">\r\n\t\t\t\t\t\t\t\t\t\t<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"99%\" class=\"pd-data-tbl\">\r\n\t\t\t\t\t\t\t\t\t\t\t<thead>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"pd-data-hdr\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<th class=\"pd-data-th\">Payment method</th>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<th class=\"pd-data-th\">Preferred/Accepted</th>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<th role=\"presentation\" class=\"pd-data-th\">&nbsp;</th>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t\t\t</thead>\r\n\t\t\t\t\t\t\t\t\t\t\t<tbody>\r\n\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"pd-data-col pd-data-aLft\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"payDetShp1\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"https://ir.ebaystatic.com/pictures/aw/pics/uk/paypal/imgLockup.gif\" alt=\"Credit or debit card through PayPal\" title=\"Credit or debit card through PayPal\" border=\"0\"/>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"pd-data-col pd-data-aLft\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"payPref1\" class=\"prefpay\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tAccepted</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"pd-data-col pd-data-aLft\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t&nbsp;</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<tr class=\"hideGspPymt\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"pd-data-col pd-data-aLft ppcLogo\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"payDetShpPpc1\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<img src=\"//p.ebaystatic.com/aw/logos/logoPaypalCreditv2_157x55.png\" border=\"0\" alt=\"PayPal Credit\" title=\"PayPal Credit\" />\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"pd-data-col pd-data-aLft\" colspan=\"2\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div id=\"ppcUkMsg\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div>Accepted, Eligibility for PayPal Credit is determined at checkout.</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td class=\"ppcUkEx\">Representative example</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ppcLabel\">Purchase rate p.a. (variable)</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>17.9%</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ppcLabel\">Representative APR (variable)</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>17.9% APR</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ppcLabel\">Assumed Credit Limit</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<span>£1,200</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div  class=\"ppcUk-line\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\teBay Marketplaces GmbH is an appointed representative of eBay International AG (both of Helvetiastraße 15-17, 3005 Bern, Switzerland) and is authorised by the FCA to conduct credit broking for a restricted range of finance providers. We may receive commission if your application for credit is successful.</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"ppcUk-line\">\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tFinance is provided by PayPal Credit (a trading name of PayPal (Europe) S.à.r.l. et Cie, S.C.A., 22-24 Boulevard Royal L-2449, Luxembourg). Terms and conditions apply. Subject to credit approval.</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<a href=\"https://www.paypal.com/uk/webapps/mpp/ebay-paypalcredit\" target=\"_blank\">Learn More</a>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</td>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tr>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t</tbody>\r\n\t\t\t\t\t\t\t\t\t\t</table>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t<!-- added for eBayPlus -->\r\n\t\t\t\t\t\t\t\t\t<div>\r\n\t\t\t\t\t\t\t\t\t\t<h4 class=\"pd-ttl pd-hd\">Immediate payment required for this item.</h4>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"pd-dt pd-ip-pd\">\r\n\t\t\t\t\t\t\t\t\t\t\tImmediate payment of £17.25 is required.</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t<div style=\"clear:both;padding-top:20px\"></div>\r\n<div id=\"promotionsCntr\" class=\"spf-link\"></div>\r\n<div id=\"merch_html_100752\"></div>\r\n<div class=\"oly_upnl\" id=\"byrfdbk_modal\"><div class=\"byrfdbk_modal_hd\">\r\n\t\t\t\t<h2 class=\"byrfdbk_modal_h2\">Feedback on <a class=\"byrfbdk_seller_link\" href=\"https://www.ebay.co.uk/usr/twtoolsuperstore?_trksid=p2047675.l8431\">twtoolsuperstore</a> from others who bought this item</h2>\r\n\t\t\t</div>\r\n\t\t\t<div class=\"byrfdbk_modal_cont POSITIVE\" trk=\"p2047675.l8435\">\r\n\t\t\t\t<div class=\"byrfdbk_modal_top\">\r\n\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos positive\" data-p=\"POSITIVE\"\r\n\t\t\t\t\t\t\t\t\tdata-v=\"151\" role=\"tab\" tabindex=\"0\">\r\n\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_wpr\">\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_num\">151</div>\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_txt\">Positive</div>\r\n\t\t\t\t\t\t</div><div class=\"byfdbk_modal_sel\"></div>\r\n\t\t\t\t\t</div><div class=\"byrfdbk_modal_tot_pos neutral\" data-p=\"NEUTRAL\"\r\n\t\t\t\t\t\t\t   data-v=\"0\" role=\"tab\" tabindex=\"0\">\r\n\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_wpr\">\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_num\">0</div>\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_txt\">Neutral</div>\r\n\t\t\t\t\t\t</div><div class=\"byfdbk_modal_sel\"></div>\r\n\t\t\t\t\t</div><div class=\"byrfdbk_modal_tot_pos negative\" data-p=\"NEGATIVE\"\r\n\t\t\t\t\t\t\t   data-v=\"0\" role=\"tab\" tabindex=\"0\">\r\n\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_wpr\">\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_num\">0</div>\r\n\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_tot_pos_txt\">Negative</div>\r\n\t\t\t\t\t\t</div><div class=\"byfdbk_modal_sel\"></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"byrfdbk_modal_btm\">\r\n\t\t\t\t\t<div class=\"byrfdbk_modal_btm_wpr\">\r\n\t\t\t\t\t\t<ul id=\"byrfdbk_modal_btm_ul\">\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by 8***8</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Perfect seller a* quick delivery thanks  </div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by t***e</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Thanks</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by z***8</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Very good service arrived before the date stated for delivery highly recommend</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by 9***0</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">very Fast delivery thanks </div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by l***k</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">All good </div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by .***y</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Good product great price excellent service many thanks...A+++++</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by u***s</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Excellent, thank you.</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by u***s</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">QExcellent, thank you.</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by ****k</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Fast delivery thank you!!</div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t<li class=\"byrfdbk_modal_btm_li POSITIVE\">\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_lft\">\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_POSITIVE_icon\"></div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_by\">by a***r</div>\r\n\t\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_dt\">\r\n\t\t\t\t\t\t\t\t\t\t\tDuring past month</div>\r\n\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_rgt\">Great product and service thank you </div>\r\n\t\t\t\t\t\t\t\t</li>\r\n\t\t\t\t\t\t\t</ul>\r\n\t\t\t\t\t\t<div class=\"byrfdbk_modal_btm_olay\"></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<div class=\"clr\"></div>\r\n\t\t\t</div>\r\n\r\n\t\t\t<div class=\"byrfdbk_modal_seeall\">\r\n\t\t\t\t<a rel=\"nofollow\" class=\"btn byrfdbk_modal_lg_btn\" href=\"http://feedback.ebay.co.uk/ws/eBayISAPI.dll?ViewFeedback2&userid=twtoolsuperstore&keyword=262745174897&ssPageName=VIP:feedback&ftab=FeedbackForItem&rt=nc&_trksid=p2047675.l8422\">See all</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t<div id=\"rwid\" class=\"rvws_container c-std\">\r\n\t\t\t\t\t<div class=\"reviews-left\">\r\n\t\t\t\t\t\t<div class=\"reviews-header\">\r\n\t\t\t\t\t\t\t<h2 style=\"display: inline-block;\" class=\"mg f17 left\">Ratings and reviews</h2>\r\n\t\t\t\t\t\t\t<a _sp=\"p2047675.m3945.l7019\" class=\"btn btn-ter right\" href=\"https://www.ebay.co.uk/urw/write-review/1023166420?_itm=262745174897\">Write a review</a>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"ebay-content-wrapper\">\r\n  <span class=\"ebay-review-start-rating\">\r\n    4.8</span>\r\n  <div class=\"ebay-star-rating\">\r\n    <div role=\"img\" class=\"ebay-star-rating\" aria-label=\"4.8 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div></div>\r\n\r\n  <span class=\"ebay-reviews-count\">18 product ratings</span>\r\n</div>\r\n\r\n<div class=\"reviews-histogram\">\r\n  <ul class=\"ebay-review-list\">\r\n  \t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"5&nbsp;Stars, 15 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">5</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:83%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>15</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"4&nbsp;Stars, 3 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">4</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:17%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>3</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"3&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">3</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"2&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">2</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t<li role=\"img\" class=\"ebay-review-item\" aria-label=\"1&nbsp;Stars, 0 product ratings\">\r\n\t\t       <div class=\"ebay-reviews-item-href\">\r\n\t\t          <i class=\"emptyStar\"></i>\r\n\t\t          <div class=\"ebay-review-item-l\">\r\n\t\t            <p class=\"ebay-review-item-stars\">1</p>\r\n\t\t          </div>\r\n\t\t          <div class=\"ebay-review-item-r\">\r\n\t\t            <i class=\"r-list-bg\">\r\n\t\t              <u class=\"r-list-fc\" style=\"width:0%;\"></u>\r\n\t\t            </i>\r\n\t\t            <span>0</span>\r\n\t\t          </div>\r\n\t\t       </div>\r\n\t      \t</li>\r\n  \t\t</ul>\r\n</div><div class=\"pie-container\">\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Would recommend\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Would recommend</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Good value\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Good value</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t<div role=\"img\" class=\"en pie-wrpr\" aria-label=\"100% Good quality\">\r\n\t\t\t\t<div class=\"pie\" data-percent=\"100%\">\r\n\t\t\t\t\t<div class=\"left\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div class=\"right\">\r\n\t\t\t\t\t\t<span></span>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t</div>\r\n\t\t\t\t<p class=\"pie-txt\" data-text=\"agree\">\r\n\t\t\t\t\t<span>Good quality</span>\r\n\t\t\t\t</p>\r\n\t\t\t</div>\r\n\t\t</div>\r\n</div>\r\n\t\t\t\t\t<div class=\"reviews-right\">\r\n\t\t\t\t\t\t<div class=\"reviews-header\">\r\n\t\t\t\t\t\t\t<h2 class=\"mg f17 left\">Most relevant reviews</h2>\r\n\t\t\t\t\t\t\t<a _sp=\"p2047675.m3946.l7020\" rel=\"nofollow\" class=\"sar-btn right\" href=\"https://www.ebay.co.uk/urw/product-reviews/1023166420?_itm=262745174897\">See all 13 reviews</a>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t<div class=\"reviews\">\r\n\t\t\t\t\t\t\t<div class=\" ebay-review-section\" id=\"review_10000000238775816\" itemprop=\"review\" itemscope=\"\" itemtype=\"https://schema.org/Review\">\r\n\t<div class=\"ebay-review-section-l\">\r\n\t\t<div role=\"img\" class=\"ebay-star-rating\" aria-label=\"5.0 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div><span class=\"author-by\">by</span>\r\n\t\t<a _sp=\"p2047675.m3946.l7022\" href=\"https://www.ebay.co.uk/usr/vr6lynn2\" class=\"review-item-author\" itemprop=\"author\" title=\"vr6lynn2\">vr6lynn2</a>\r\n\t\t<span itemprop=\"datePublished\" content=\"28 Sep, 2017\" class=\"review-item-date\">28 Sep, 2017</span>\r\n\t\t</div>\r\n\t<div class=\"ebay-review-section-r\">\r\n\t\t<p itemprop=\"name\" class=\"review-item-title wrap-spaces\">Lovely balance and very strong</p>\r\n\t\t\t\t<p itemprop=\"reviewBody\" class=\"review-item-content wrap-spaces\">Solid hammer - really positive impact, and very solid build! very glad i bought this one!</p>\r\n\t\t\t\t<div class=\"vi_pl_panel\" id=\"rvwEnlargeImgLayer_10000000238775816\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"rvwImageEnlarge reviews-images-overlay\">\r\n\t\t<div class=\"filmstrip-1 filmstrip-centered\" >\r\n\t\t\t<button class=\"reviews-overlay-left-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Previous image</span>\r\n\t\t\t</button>\r\n\t\t\t<div>\r\n\t\t\t<ul>\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"reviews-overlay-right-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Next image</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"reviews-carsoul-thumbnails\">\r\n\t\t<ul>\r\n\t\t\t</ul>\r\n\t</div>\r\n\t</div>\r\n\r\n<div class=\"reviews-images\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t<p class=\"review-attr\">\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr\">Verified purchase:</span>\r\n\t\t\t\t\t\t\t<span class=\"rvw-val\">Yes</span>\r\n\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Condition:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val capitalize\">new</span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Sold by:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val\">twtoolsuperstore</span>\r\n\t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t<div class=\"review-btns\">\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-up-link\" data-value=\"up\" aria-label=\"0 people found this review helpful. Vote as helpful\" title=\"Select if this review was helpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img helpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"positive-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-down-link\" data-value=\"down\" aria-label=\"0 out of 5 stars\" title=\"Select if this review was unhelpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img unhelpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"negative-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div class=\" report-sec\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal report-spam-link\" data-value=\"report\" aria-label=\"Why is this review inappropriate?\" title=\"Report if this review was inappropriate\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img inapp-img\"></span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div><div class=\" ebay-review-section\" id=\"review_10000000240831695\" itemprop=\"review\" itemscope=\"\" itemtype=\"https://schema.org/Review\">\r\n\t<div class=\"ebay-review-section-l\">\r\n\t\t<div role=\"img\" class=\"ebay-star-rating\" aria-label=\"5.0 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div><span class=\"author-by\">by</span>\r\n\t\t<a _sp=\"p2047675.m3946.l7022\" href=\"https://www.ebay.co.uk/usr/stepheweightma0\" class=\"review-item-author\" itemprop=\"author\" title=\"stepheweightma0\">stepheweightma0</a>\r\n\t\t<span itemprop=\"datePublished\" content=\"01 Nov, 2017\" class=\"review-item-date\">01 Nov, 2017</span>\r\n\t\t</div>\r\n\t<div class=\"ebay-review-section-r\">\r\n\t\t<p itemprop=\"name\" class=\"review-item-title wrap-spaces\">Very good value</p>\r\n\t\t\t\t<p itemprop=\"reviewBody\" class=\"review-item-content wrap-spaces\">Very good quality and value\r\n\r\nVery good quality and value for money\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nVery good quality and value for money\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nVery good quality and value for money\r\n\r\nI</p>\r\n\t\t\t\t<div class=\"vi_pl_panel\" id=\"rvwEnlargeImgLayer_10000000240831695\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"rvwImageEnlarge reviews-images-overlay\">\r\n\t\t<div class=\"filmstrip-1 filmstrip-centered\" >\r\n\t\t\t<button class=\"reviews-overlay-left-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Previous image</span>\r\n\t\t\t</button>\r\n\t\t\t<div>\r\n\t\t\t<ul>\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"reviews-overlay-right-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Next image</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"reviews-carsoul-thumbnails\">\r\n\t\t<ul>\r\n\t\t\t</ul>\r\n\t</div>\r\n\t</div>\r\n\r\n<div class=\"reviews-images\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t<p class=\"review-attr\">\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr\">Verified purchase:</span>\r\n\t\t\t\t\t\t\t<span class=\"rvw-val\">Yes</span>\r\n\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Condition:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val capitalize\">new</span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Sold by:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val\">twtoolsuperstore</span>\r\n\t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t<div class=\"review-btns\">\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-up-link\" data-value=\"up\" aria-label=\"0 people found this review helpful. Vote as helpful\" title=\"Select if this review was helpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img helpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"positive-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-down-link\" data-value=\"down\" aria-label=\"0 out of 5 stars\" title=\"Select if this review was unhelpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img unhelpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"negative-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div class=\" report-sec\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal report-spam-link\" data-value=\"report\" aria-label=\"Why is this review inappropriate?\" title=\"Report if this review was inappropriate\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img inapp-img\"></span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div><div class=\" ebay-review-section\" id=\"review_10000000263764455\" itemprop=\"review\" itemscope=\"\" itemtype=\"https://schema.org/Review\">\r\n\t<div class=\"ebay-review-section-l\">\r\n\t\t<div role=\"img\" class=\"ebay-star-rating\" aria-label=\"5.0 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div><span class=\"author-by\">by</span>\r\n\t\t<a _sp=\"p2047675.m3946.l7022\" href=\"https://www.ebay.co.uk/usr/bri7kin\" class=\"review-item-author\" itemprop=\"author\" title=\"bri7kin\">bri7kin</a>\r\n\t\t<span itemprop=\"datePublished\" content=\"12 Dec, 2018\" class=\"review-item-date\">12 Dec, 2018</span>\r\n\t\t</div>\r\n\t<div class=\"ebay-review-section-r\">\r\n\t\t<p itemprop=\"name\" class=\"review-item-title wrap-spaces\">Good quality hammer</p>\r\n\t\t\t\t<p itemprop=\"reviewBody\" class=\"review-item-content wrap-spaces\">Well balanced and good comfy grip, firm hold in cold weather</p>\r\n\t\t\t\t<div class=\"vi_pl_panel\" id=\"rvwEnlargeImgLayer_10000000263764455\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"rvwImageEnlarge reviews-images-overlay\">\r\n\t\t<div class=\"filmstrip-1 filmstrip-centered\" >\r\n\t\t\t<button class=\"reviews-overlay-left-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Previous image</span>\r\n\t\t\t</button>\r\n\t\t\t<div>\r\n\t\t\t<ul>\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"reviews-overlay-right-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Next image</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"reviews-carsoul-thumbnails\">\r\n\t\t<ul>\r\n\t\t\t</ul>\r\n\t</div>\r\n\t</div>\r\n\r\n<div class=\"reviews-images\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t<p class=\"review-attr\">\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr\">Verified purchase:</span>\r\n\t\t\t\t\t\t\t<span class=\"rvw-val\">Yes</span>\r\n\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Condition:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val capitalize\">new</span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Sold by:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val\">twtoolsuperstore</span>\r\n\t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t<div class=\"review-btns\">\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-up-link\" data-value=\"up\" aria-label=\"0 people found this review helpful. Vote as helpful\" title=\"Select if this review was helpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img helpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"positive-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-down-link\" data-value=\"down\" aria-label=\"0 out of 5 stars\" title=\"Select if this review was unhelpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img unhelpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"negative-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div class=\" report-sec\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal report-spam-link\" data-value=\"report\" aria-label=\"Why is this review inappropriate?\" title=\"Report if this review was inappropriate\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img inapp-img\"></span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div><div class=\" ebay-review-section\" id=\"review_10000000263566373\" itemprop=\"review\" itemscope=\"\" itemtype=\"https://schema.org/Review\">\r\n\t<div class=\"ebay-review-section-l\">\r\n\t\t<div role=\"img\" class=\"ebay-star-rating\" aria-label=\"5.0 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div><span class=\"author-by\">by</span>\r\n\t\t<a _sp=\"p2047675.m3946.l7022\" href=\"https://www.ebay.co.uk/usr/gudd1963\" class=\"review-item-author\" itemprop=\"author\" title=\"gudd1963\">gudd1963</a>\r\n\t\t<span itemprop=\"datePublished\" content=\"08 Dec, 2018\" class=\"review-item-date\">08 Dec, 2018</span>\r\n\t\t</div>\r\n\t<div class=\"ebay-review-section-r\">\r\n\t\t<p itemprop=\"name\" class=\"review-item-title wrap-spaces\">Ox hammer</p>\r\n\t\t\t\t<p itemprop=\"reviewBody\" class=\"review-item-content wrap-spaces\">Great quality , great price\r\nDelivered on time</p>\r\n\t\t\t\t<div class=\"vi_pl_panel\" id=\"rvwEnlargeImgLayer_10000000263566373\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"rvwImageEnlarge reviews-images-overlay\">\r\n\t\t<div class=\"filmstrip-1 filmstrip-centered\" >\r\n\t\t\t<button class=\"reviews-overlay-left-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Previous image</span>\r\n\t\t\t</button>\r\n\t\t\t<div>\r\n\t\t\t<ul>\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"reviews-overlay-right-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Next image</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"reviews-carsoul-thumbnails\">\r\n\t\t<ul>\r\n\t\t\t</ul>\r\n\t</div>\r\n\t</div>\r\n\r\n<div class=\"reviews-images\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t<p class=\"review-attr\">\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr\">Verified purchase:</span>\r\n\t\t\t\t\t\t\t<span class=\"rvw-val\">Yes</span>\r\n\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Condition:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val capitalize\">new</span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Sold by:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val\">tradesupplieson...</span>\r\n\t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t<div class=\"review-btns\">\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-up-link\" data-value=\"up\" aria-label=\"0 people found this review helpful. Vote as helpful\" title=\"Select if this review was helpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img helpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"positive-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-down-link\" data-value=\"down\" aria-label=\"0 out of 5 stars\" title=\"Select if this review was unhelpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img unhelpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"negative-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div class=\" report-sec\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal report-spam-link\" data-value=\"report\" aria-label=\"Why is this review inappropriate?\" title=\"Report if this review was inappropriate\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img inapp-img\"></span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div><div class=\" ebay-review-section\" id=\"review_10000000236465674\" itemprop=\"review\" itemscope=\"\" itemtype=\"https://schema.org/Review\">\r\n\t<div class=\"ebay-review-section-l\">\r\n\t\t<div role=\"img\" class=\"ebay-star-rating\" aria-label=\"5.0 out of 5 stars\">\r\n\t<span class=\"star-rating\">\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t\t<i class=\"fullStar\"></i>\r\n\t</span>\r\n</div><span class=\"author-by\">by</span>\r\n\t\t<a _sp=\"p2047675.m3946.l7022\" href=\"https://www.ebay.co.uk/usr/tylerray3\" class=\"review-item-author\" itemprop=\"author\" title=\"tylerray3\">tylerray3</a>\r\n\t\t<span itemprop=\"datePublished\" content=\"24 Aug, 2017\" class=\"review-item-date\">24 Aug, 2017</span>\r\n\t\t</div>\r\n\t<div class=\"ebay-review-section-r\">\r\n\t\t<p itemprop=\"name\" class=\"review-item-title wrap-spaces\">VALUE FOR MONEY HAMMER</p>\r\n\t\t\t\t<p itemprop=\"reviewBody\" class=\"review-item-content wrap-spaces\">THIS IS THE SECOND ONE OF THESE I HAVE,THEY ARE WELL MADE AND VFM.</p>\r\n\t\t\t\t<div class=\"vi_pl_panel\" id=\"rvwEnlargeImgLayer_10000000236465674\">\r\n\t<button class=\"vi_pl_cls_btn\">X</button>\r\n\t<div class=\"rvwImageEnlarge reviews-images-overlay\">\r\n\t\t<div class=\"filmstrip-1 filmstrip-centered\" >\r\n\t\t\t<button class=\"reviews-overlay-left-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Previous image</span>\r\n\t\t\t</button>\r\n\t\t\t<div>\r\n\t\t\t<ul>\r\n\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t\t<button class=\"reviews-overlay-right-arrow\">\r\n\t\t\t\t<span class=\"clipped\">Next image</span>\r\n\t\t\t</button>\r\n\t\t</div>\r\n\t</div>\r\n\r\n\t<div class=\"reviews-carsoul-thumbnails\">\r\n\t\t<ul>\r\n\t\t\t</ul>\r\n\t</div>\r\n\t</div>\r\n\r\n<div class=\"reviews-images\">\r\n\t\t\t\t<ul>\r\n\t\t\t\t\t</ul>\r\n\t\t\t</div>\r\n\t\t<p class=\"review-attr\">\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr\">Verified purchase:</span>\r\n\t\t\t\t\t\t\t<span class=\"rvw-val\">Yes</span>\r\n\r\n\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Condition:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val capitalize\">new</span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr-pipe\"> | </span>\r\n\t\t\t\t\t\t\t\t<span class=\"rvw-attr\">Sold by:</span>\r\n\t\t\t\t\t\t\t\t\t<span class=\"rvw-val\">twtoolsuperstore</span>\r\n\t\t\t\t\t\t\t\t</p>\r\n\t\t\t\t\t<div class=\"review-btns\">\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-up-link\" data-value=\"up\" aria-label=\"0 people found this review helpful. Vote as helpful\" title=\"Select if this review was helpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img helpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"positive-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div name=\"vote\" class=\"\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal vote-down-link\" data-value=\"down\" aria-label=\"0 out of 5 stars\" title=\"Select if this review was unhelpful\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img unhelpful-img\"></span>\r\n\t\t\t\t\t<span class=\"review-section-rr-txt\">(<span class=\"negative-h-c\">0</span>)</span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t\t<div class=\" report-sec\">\r\n\t\t\t\t<a href=\"javascript:;\" class=\"review-signal report-spam-link\" data-value=\"report\" aria-label=\"Why is this review inappropriate?\" title=\"Report if this review was inappropriate\">\r\n\t\t\t\t\t<span class=\"review-section-rr-img inapp-img\"></span>\r\n\t\t\t\t</a>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n</div><script type=\"text/javascript\">\r\n\r\n/*\r\n * Copyright 2011 Google Inc.\r\n *\r\n * Licensed under the Apache License, Version 2.0 (the \"License\");\r\n * you may not use this file except in compliance with the License.\r\n * You may obtain a copy of the License at\r\n *\r\n *      http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n * Unless required by applicable law or agreed to in writing, software\r\n * distributed under the License is distributed on an \"AS IS\" BASIS,\r\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r\n * See the License for the specific language governing permissions and\r\n * limitations under the License.\r\n */\r\n(function(){var d=window,e=document,f=\"documentElement\",g=\"scrollTop\",k=\"prototype\",l=\"body\",m=\"getAttribute\",n=\"\",p=\"1\",q=\"data\",r=\"img\",s=\"load\",t=\"number\",u=\"on\",v=\"onload\",w=\"pagespeed_lazy_position\",x=\"pagespeed_lazy_replaced_functions\",y=\"imgurl\",z=\"position\",A=\"relative\",B=\"resize\",C=\"scroll\",D=\"src\",Y = \"image_load\";d.pagespeed=d.pagespeed||{};var E=d.pagespeed,F=function(a){this.d=[];this.a=500;this.b=!1;this.o=a;this.e=null;this.i=0;this.j=200;this.c=!1};\r\nF[k].s=function(){var a=0;typeof d.pageYOffset==t?a=d.pageYOffset:e[l]&&e[l][g]?a=e[l][g]:e[f]&&e[f][g]&&(a=e[f][g]);var b=d.innerHeight||e[f].clientHeight||e[l].clientHeight;return{top:a,bottom:a+b,height:b}};F[k].n=function(a){var b=a[m](w);if(b)return parseInt(b,0);var b=a.offsetTop,c=a.offsetParent;c&&(b+=this.n(c));b=Math.max(b,0);a.setAttribute(w,b);return b};F[k].r=function(a){var b=this.n(a);return{top:b,bottom:b+a.offsetHeight}};\r\nF[k].q=function(a,b){if(a.currentStyle)return a.currentStyle[b];if(e.defaultView&&e.defaultView.getComputedStyle){var c=e.defaultView.getComputedStyle(a,null);if(c)return c.getPropertyValue(b)}return a.style&&a.style[b]?a.style[b]:n};F[k].p=function(a){if(!this.c&&(0==a.offsetHeight||0==a.offsetWidth))return!1;if(this.q(a,z)==A)return!0;var b=this.s(),c=a.getBoundingClientRect();c?(a=c.top-b.height,b=c.bottom):(c=this.r(a),a=c.top-b.bottom,b=c.bottom-b.top);return a<=this.a&&0<=b+this.a};\r\nF[k].m=function(a){this.l(a);var b=this;d.setTimeout(function(){var c=a[m](y);if(null!=c)if((b.b||b.p(a))&&-1!=a.src.indexOf(b.o)){var h=a.parentNode,G=a.nextSibling,fun = a.getAttribute(Y);h&&h.removeChild(a);a.getAttribute=a.k;fun ? a.setAttribute(v,fun) : a.removeAttribute(v);a.removeAttribute(Y);a.removeAttribute(y);a.removeAttribute(x);h&&h.insertBefore(a,G);a.src=c}else b.d.push(a)},0)};F[k].loadIfVisible=F[k].m;F[k].u=function(){this.b=!0;this.f()};F[k].loadAllImages=F[k].u;F[k].f=function(){var a=this.d,b=a.length;this.d=[];for(var c=0;c<b;++c)this.m(a[c])};\r\nF[k].h=function(a,b){return a.a?null!=a.a(b):null!=a[m](b)};F[k].v=function(){for(var a=e.getElementsByTagName(r),b=0;b<a.length;++b){var c=a[b];this.h(c,y)&&this.l(c)}};F[k].overrideAttributeFunctions=F[k].v;F[k].l=function(a){var b=this;this.h(a,x)||(a.k=a[m],a.getAttribute=function(a){a.toLowerCase()==D&&b.h(this,y)&&(a=y);return this.k(a)},a.setAttribute(x,p))};\r\nE.g=function(a,b,c){if(a.addEventListener)a.addEventListener(b,c,!1);else if(a.attachEvent)a.attachEvent(u+b,c);else{var h=a[u+b];a[u+b]=function(){c.call(this);h&&h.call(this)}}};E.t=function(a,b){var c=new F(b);E.lazyLoadImages=c;E.g(d,s,function(){c.c=!0;c.b=a;c.a=500;c.f()});0!=b.indexOf(q)&&((new Image).src=b);var h=function(){if(!(c.c&&a||c.e)){var b=c.j;(new Date).getTime()-c.i>c.j&&(b=0);c.e=d.setTimeout(function(){c.i=(new Date).getTime();c.f();c.e=null},b)}};E.g(d,C,h);E.g(d,B,h)};\r\nE.lazyLoadInit=E.t;d[Y] = function(elm){d[Y].deferred.push(elm)};d[Y].deferred = [];})();pagespeed.lazyLoadInit(false, \"https://p.ebaystatic.com/aw/pics/s.gif\");\r\n</script></div>\r\n\t\t\t\t\t</div>\r\n\t\t\t\t\t<div>\r\n\t<div class=\"inapp-spam-overlay overlay-right\">\r\n\t\t<div class=\"inapp-spam\">\r\n\t\t\t<form>\r\n\t\t\t\t<p class=\"inapp-title\">Why is this review inappropriate?</p>\r\n\t\t\t\t<ul class=\"inapp-reasons-list\">\r\n\t\t\t\t\t<li aria-label=\"It's spam or has links\"><input\r\n\t\t\t\t\t\t\tid=\"spamCode0\" value=\"101\"\r\n\t\t\t\t\t\t\tname=\"inappr-reason-code\" type=\"radio\" /> <label\r\n\t\t\t\t\t\t\tfor=\"spamCode0\">It's spam or has links</label></li>\r\n\t\t\t\t\t<li aria-label=\"There are copyright or trademark issues\"><input\r\n\t\t\t\t\t\t\tid=\"spamCode1\" value=\"102\"\r\n\t\t\t\t\t\t\tname=\"inappr-reason-code\" type=\"radio\" /> <label\r\n\t\t\t\t\t\t\tfor=\"spamCode1\">There are copyright or trademark issues</label></li>\r\n\t\t\t\t\t<li aria-label=\"It's offensive or has swear words\"><input\r\n\t\t\t\t\t\t\tid=\"spamCode2\" value=\"103\"\r\n\t\t\t\t\t\t\tname=\"inappr-reason-code\" type=\"radio\" /> <label\r\n\t\t\t\t\t\t\tfor=\"spamCode2\">It's offensive or has swear words</label></li>\r\n\t\t\t\t\t<li aria-label=\"It includes Feedback about the seller\"><input\r\n\t\t\t\t\t\t\tid=\"spamCode3\" value=\"104\"\r\n\t\t\t\t\t\t\tname=\"inappr-reason-code\" type=\"radio\" /> <label\r\n\t\t\t\t\t\t\tfor=\"spamCode3\">It includes Feedback about the seller</label></li>\r\n\t\t\t\t\t<li aria-label=\"Something else\"><input\r\n\t\t\t\t\t\t\tid=\"spamCode4\" value=\"105\"\r\n\t\t\t\t\t\t\tname=\"inappr-reason-code\" type=\"radio\" /> <label\r\n\t\t\t\t\t\t\tfor=\"spamCode4\">Something else</label></li>\r\n\t\t\t\t\t</ul>\r\n\t\t\t\t<div class=\"inapp-action\">\r\n\t\t\t\t\t<a onclick=\"\" href=\"javascript:;\">Cancel</a>\r\n\t\t\t\t\t<input onclick=\"\" type=\"button\" class=\"btn btn-prim small disabled\"\r\n\t\t\t\t\t\tvalue=\"Send\" />\r\n\t\t\t\t</div>\r\n\t\t\t</form>\r\n\t\t</div>\r\n\t\t<a class=\"overlay-close\"></a>\r\n\t</div>\r\n\r\n\t<div class=\"inapp-success-overlay overlay-right\">\r\n\t\t<a href=\"javascript:;\" class=\"overlay-close\"\r\n\t\t\taria-label=\"Close\"\r\n\t\t\ttitle=\"Close\"></a>\r\n\t\t<div class=\"inapp-success\">\r\n\t\t\t<span></span>\r\n\t\t\t<p class=\"inapp-title\">We received your report</p>\r\n\t\t\t<p class=\"inapp-success-msg\">We’ll take a look and remove the review if it doesn’t follow our guidelines.</p>\r\n\t\t</div>\r\n\t</div>\r\n</div></div>\r\n\t\t\t\t<!-- Product QnA Module -->\r\n<script type=\"text/javascript\">\r\n\tif (\"ActiveXObject\" in window) {\r\n\t    window.addEventListener('beforeunload', function() {\r\n\t        var iframeElements = Array.prototype.slice.call(document.getElementsByTagName('iframe'));\r\n\t        for (var i = 0, l = iframeElements.length; i < l; i++) {\r\n\t            iframeElements[i].parentNode.removeChild(iframeElements[i]);\r\n\t        }\r\n\t    });\r\n\t}\r\n\t</script>\r\n</div>\r\n\t\t\t\t\t<!--[if IE]><style type=\"text/css\">#BottomPanelDF {display: inline-block !important; width: 100%;}</style>\r\n\t\t\t\t\t<![endif]-->\r\n\t\t\t\t<div id=\"FootPanel\">\r\n\t\t\t\t<div class=\"FootPanelInnr\">\r\n\t\t\t\t\t<!-- Bottom Tool bar -->\r\n<div id=\"merch_html_100009\"></div>\r\n<div id=\"merch_html_100010\"></div>\r\n<div id=\"sme_module_placement_2\" class=\"spf-link\"></div>\r\n<div id=\"scandal100727\" title=\"ADVERTISEMENT\"></div>\r\n\t\t<div id=\"merch_html_100047\"></div>\r\n<div>\r\n\t<div class=\"ft-btyle\">\r\n\t\t<span class=\"ft-rtmStyle\">\r\n\t\t<div id=\"scandal100565\" title=\"ADVERTISEMENT\"></div>\r\n\t\t </span>\r\n\t\t<span class=\"ft-rtmStyle\">\r\n\t\t</span>\r\n\t\t<span class=\"ft-rtmStyle\">\r\n\t\t\t</span>\r\n\t\t<div class=\"u-cb\"></div>\r\n\t</div>\r\n</div>\r\n\r\n<div class=\"vi-legal-text\">eBay Marketplaces GmbH is an appointed representative of eBay International AG (both of Helvetiastraße 15-17, 3005 Bern, Switzerland) and is authorised by the FCA to conduct credit broking for a restricted range of finance providers. We may receive commission if your application for credit is successful.</div>\r\n<div class=\"vi-btb-blinks \">\r\n\t\t<span>\r\n\t\t\t<span class=\"\" style=\"white-space:nowrap;\">\r\n\t\t\t\t\t<a href=\"javascript:history.go(-1)\" title=\"Click to Go Back to home page\" id=\"smtBackToAnchorBTF\">\r\n\t\t\t\t\t\t<span>Back to home page</span>\r\n\t\t\t\t\t</a>\r\n\t\t\t\t\t</span>\r\n\t\t<span class=\"pipe\">|</span>\r\n\t\t\t\t\t<span class=\"txt\">See more details about</span>\r\n\t\t\t\t<a href=\"https://www.ebay.co.uk/p/OX-Tools-P080120-Durable-Pro-Claw-Hammer-20oz/1023166420?_trksid=p2047675.l2644\">\"OX Tools P080120 Durable Pro Claw Hammer 20oz\"</a>\r\n\t\t\t</span>\r\n\t\t\t<a href=\"#\" id=\"_rtop\" class=\"vi-btb-Rt\">Return to top</a>\r\n\t</div>\r\n<!-- <iframe id=\"lhdr-frm\" class=\"lhdr-outcntr\"></iframe> -->\r\n\t<div id=\"lkd_hdr\" class=\"lhdr-outcntr  lhdr-ie-\">\r\n\t\t<div class=\"lhdr-cntr  vi-bbox\">\r\n\t\t\t<div class=\"lhdr-icntr\">\r\n\t\t\t<table style=\"width:100%;\" class=\"lhdr-maintbl\">\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td class=\"lhdr-thumb-td\">\r\n\t\t\t\t\t\t<div class=\"u-flL lhdr-thumb\">\r\n\t\t\t\t\t\t\t<div class=\"lkdr-imgCr\">\r\n\t\t\t\t\t\t\t\t<b></b>\r\n\t\t\t\t\t\t\t\t<i>\r\n\t\t\t\t\t\t\t\t\t<img src=\"https://i.ebayimg.com/images/g/BtMAAOSwldRaAxD-/s-l500.jpg\" alt=\"OX-Tools-Pro-20oz-Claw-Hammer-1-Piece-Solid-Forged-Steel-amp-Non-Slip-Grip-P080120\" />\r\n\t\t\t\t\t\t\t\t</i>\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td class=\"lhdr-maincnt-td\">\r\n\t\t\t\t\t\t<div class=\"lhdr-imain\">\r\n\t\t\t\t\t\t\t<div class=\"lhdr-ttl \" id=\"lhdr-ttl\">\r\n\t\t\t\t\t\t\t\t<a class=\"lhdr-ttl-main\" href=\"javascript:;\">OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Stee...</a>\r\n\t\t\t\t\t\t\t\t\t<a class=\"lhdr-ttl-ellip u-dspn\" href=\"javascript:;\">OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Stee...</a>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t\t<div id=\"vi-lhdr-sec-line\" class=\"\">\r\n\t\t\t\t\t\t\t\t<span class=\"lhdr-condSnpt\"><span class=\"condText\">New</span><span id=\"lkhdr-comma\">,</span></span>\r\n\t\t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t<span class=\"sh-CostBB-lkdhdr\" style=\"display:inline;\"></span>\r\n\t\t\t\t\t\t\t\t</div>\r\n\r\n\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t<td class=\"lhdr-prcfmt-td lkhdr-pullup2\" valign=\"top\">\r\n\t\t\t\t\t  <div class=\"lhdr-prcfmt-cntr\">\r\n\t\t\t\t\t  \t<span id=\"lhdr-prcfmt\"></span>\r\n\t\t\t\t\t  \t</td>\r\n\t\t\t\t\t<td style=\"white-space:nowrap;\" valign=\"middle\" class=\"lkhdr-pullup2\">\r\n\t\t\t\t\t\t<div id=\"vi-lhdr-actions\" style=\"\">\r\n\t\t\t\t\t\t\t<span style=\" \">\r\n\t\t\t\t\t\t\t\t\t\t\t\t<span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t<a  role=\"button\"  id=\"vi-lkdhdr-bin-btn\"   style=\"\"   class=\"btn btn-prim btn-m vi-VR-btnWdth-L lhdr-plcbd-fnt14 \" href=\"javascript:;\" vib=\"vib\" rel=\"nofollow\"\">\r\n\t\t\t\t\t\t\tBuy it now<span class=\"clipped\"> - </span>\r\n\t\t\t\t\t\t\t</a>\r\n\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t\t</span>\r\n\r\n\t\t\t\t\t\t\t\t\t\t\t<span id=\"vi-lkdhdr-add-wlist-btn-cntr\">\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t<a id=\"vi-lkdhdr-add-wlist-btn\" title=\"\" style=\"\" href=\"javascript:;\" vib=\"vib\">\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t\tAdd to Watch list</a>\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t<span id=\"vi-lkdhdr-added-wlist-btn\" style=\"display:none;\">\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t\t<span class=\"lhdr-tick-icon\" id=\"lhdr-tick-icon\" style=\"top:0px;\">\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t\t\tAdded to your <a href=\"https://my.ebay.co.uk/ws/eBayISAPI.dll?MyEbayBeta&amp;CurrentPage=MyeBayNextWatching&amp;ssPageName=STRK:ME:LNLK:MEWAX\">Watch list</a></span>\r\n\t\t\t\t\t\t\t \t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t \t\t\t\t\t\t\t</span>\r\n\t\t\t\t\t\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t\t</tr>\r\n\t\t\t\t</table>\r\n\t\t\t\t<div class=\"u-cb\"></div>\r\n\t\t\t\t<div class=\"pwbar-cntr\">\r\n\t\t\t\t</div>\r\n\t\t\t</div>\r\n\t\t</div>\r\n\t</div>\r\n<div class=\"f-rl fclr\">\r\n\t\t<ul>\r\n\t\t\t<li class=\"rtxt\">More to explore:</li>\r\n\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Claw-Hammer-Collectable-Hammers/39730/bn_7026972233?_trksid=p2047675.m2392\">Claw Hammer Collectable Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Vintage-Claw-Hammer-in-Collectable-Hammers/39730/bn_7023549205?_trksid=p2047675.m2392\">Vintage Claw Hammer in Collectable Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Claw-Hammer-Hammers-Mallets-Collectables/13870/bn_17988118?_trksid=p2047675.m2392\">Claw Hammer Hammers&Mallets Collectables</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Stanley-Steel-Head-Face-Home-Claw-Hammers/20763/bn_75645814?_trksid=p2047675.m2392\">Stanley Steel Head/Face Home Claw Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Estwing-Steel-Head-Face-Home-Claw-Hammers/20763/bn_75645760?_trksid=p2047675.m2392\">Estwing Steel Head/Face Home Claw Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Bahco-Steel-Head-Face-Home-Claw-Hammers/20763/bn_79411385?_trksid=p2047675.m2392\">Bahco Steel Head/Face Home Claw Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Draper-Steel-Head-Face-Home-Claw-Hammers/20763/bn_75645829?_trksid=p2047675.m2392\">Draper Steel Head/Face Home Claw Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Silverline-Steel-Head-Face-Home-Claw-Hammers/20763/bn_75645841?_trksid=p2047675.m2392\">Silverline Steel Head/Face Home Claw Hammers</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Rolson-Home-Claw-Hammers-Steel-Head-Face/20763/bn_75645777?_trksid=p2047675.m2392\">Rolson Home Claw Hammers Steel Head/Face</a>,</li>\r\n\t\t\t\t<li><a href=\"https://www.ebay.co.uk/b/Faithfull-Steel-Head-Face-Home-Claw-Hammers/20763/bn_75645800?_trksid=p2047675.m2392\">Faithfull Steel Head/Face Home Claw Hammers</a></li>\r\n\t\t\t\t</ul>\r\n\t</div>\r\n<div id=\"rtm_html_280\"></div>\r\n\t<div id=\"rtm_html_283\"></div>\r\n\t<div id=\"rtm_html_20047\"></div>\r\n\t<div class=\"oly_upnl\" id=\"vibtfimgoly\"><div id=\"vibtfimgcmp\">\r\n\t\t<div class=\"vi_img_crsl_cmp\">\r\n\t<div class=\"vi_img_crsl_imgpl sm\">\r\n\t\t<a title=\"To Previous Image\" aria-label=\"To Previous Image\" class=\"pntrArr pntrArrPrev pntrArrImg activePrev\" href=\"javascript:;\"></a>\r\n\t\t<table class=\"vi_img_crsl_tbl\">\r\n\t\t\t<tbody>\r\n\t\t\t\t<tr>\r\n\t\t\t\t\t<td class=\"vi_img_crsl_tbl\">\r\n\t\t\t\t\t\t<div class=\"vi_img_crsl_ctr\">\r\n\t\t\t\t\t\t\t<img id=\"vibtfimgoly_img_ctr\" alt=\"\" src=\"https://ir.ebaystatic.com/pictures/aw/pics/s.gif\" clk=\"\">\r\n\t\t\t\t\t\t\t</div>\r\n\t\t\t\t\t</td>\r\n\t\t\t\t</tr>\r\n\t\t\t</tbody>\r\n\t\t</table>\r\n\t\t<a title=\"To Next Image\" aria-label=\"To Next Image\" class=\"pntrArr pntrArrNext pntrArrImg activeNext\" href=\"javascript:;\"></a>\r\n\t</div>\r\n</div>\r\n\r\n</div>\r\n\t<div class=\"vi-btf-img-msg\">\r\n\t\t<div>Click to enlarge</div>\r\n\t</div>\r\n</div>\r\n\t<div id=\"vi-btf-magnify-cnt\">\r\n\t<div class=\"vi-btf-img-magnify\"></div>\r\n</div>\r\n</div>\r\n\r\n\t\t\t\t</div>\r\n\t\t</div></div>\r\n\r\n\t<!--[if lt IE 9]><div id=\"glbfooter\" role=\"contentinfo\" class=\"gh-w gh-flex\"><![endif]--><!--[if (gte IE 9)|!(IE)]><!--><footer id=\"glbfooter\" role=\"contentinfo\" class=\"gh-w gh-flex\"><!--<![endif]--><div><div id=rtm_html_1650></div><div id=rtm_html_1651></div></div><h2 class=gh-ar-hdn>Additional site navigation</h2><div id=\"gf-t-box\"><table class=\"gf-t\"><tr><td colspan=2><ul id=\"gf-l\" class=\"gh-hide-if-nocss\"><li class=\"gf-li\"><a href=\"https://www.ebayinc.com/our-company/\"\r\n\t\t _exsp=m571.l2602 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tAbout eBay</a></li><li class=\"gf-li\"><a href=\"http://www2.ebay.com/aw/marketing-uk.shtml\"\r\n\t\t _exsp=m571.l2935 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tAnnouncements</a></li><li class=\"gf-li\"><a href=\"http://community.ebay.co.uk\"\r\n\t\t _exsp=m571.l1540 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tCommunity</a></li><li class=\"gf-li\"><a href=\"http://pages.ebay.co.uk/safetycentre/index.html\"\r\n\t\t _exsp=m571.l2616 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tSafety Centre</a></li><li class=\"gf-li\"><a href=\"https://resolutioncentre.ebay.co.uk\"\r\n\t\t _sp=m571.l1619 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tResolution Centre</a></li><li class=\"gf-li\"><a href=\"http://sellercentre.ebay.co.uk\"\r\n\t\t _exsp=m571.l1613 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tSeller Centre</a></li><li class=\"gf-li\"><a href=\"http://pages.ebay.co.uk/vero/index.html\"\r\n\t\t _exsp=m571.l3418 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tVeRO: Protecting Intellectual Property</a></li><li class=\"gf-li\"><a href=\"https://pages.ebay.co.uk/help/policies/index.html\"\r\n\t\t _exsp=m571.l2604 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tPolicies</a></li><li class=\"gf-li\"><a href=\"https://ocsnext.ebay.co.uk/ocs/home\"\r\n\t\t _sp=m571.l1545 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tHelp & Contact</a></li><li class=\"gf-li\"><a href=\"https://pages.ebay.co.uk/sitemap.html\"\r\n\t\t _exsp=m571.l2909 class=\"thrd gf-bar-a\"\r\n\r\n\t>\r\n\t\tSite Map</a></li></ul></td></tr><tr valign=\"top\"><td class=\"gf-legal\">Copyright © 1995-2019 eBay Inc. All Rights Reserved. <a href=\"https://pages.ebay.co.uk/help/policies/user-agreement.html\">User Agreement</a>, <a href=\"https://pages.ebay.co.uk/help/policies/privacy-policy.html\">Privacy</a>, <a href=\"https://pages.ebay.co.uk/help/account/cookies-web-beacons.html\">Cookies</a> and <a href=\"https://cgi6.ebay.co.uk/ws/eBayISAPI.dll?AdChoiceLandingPage&amp;partner=0\"id=gf-AdChoice>AdChoice</a></td><td nowrap align=center><a title=\"Verify site's SSL certificate\" _exsp=\"m571.l3943\" href=\"https://trustsealinfo.websecurity.norton.com/splash?form_file=fdf/splash.fdf&amp;dn=www.ebay.co.uk&amp;lang=en\" onclick=\"this.href='https://trustsealinfo.websecurity.norton.com/splash?form_file=fdf/splash.fdf&amp;dn=#D#&amp;lang=en'.replace(/#D#/,location.host);return true\" rel=\"noreferrer\"><i id=gf-norton>Norton Secured - powered by Verisign</i></a></td></tr></table></div><!--[if lt IE 9]></div><![endif]--><!--[if (gte IE 9)|!(IE)]><!--></footer><!--<![endif]--><!--ts:2019.01.24.01:46--><!--rq:--><!--rvr:114rcb-->\r\n<div id=\"JSDF\"><script src=\"https://ir.ebaystatic.com/rs/v/ug5swannj2zhramycvq3mi4mwih.js\" type=\"text/javascript\"></script><script src=\"https://ir.ebaystatic.com/rs/v/1njzwnf4fu5gbjntdkwllm1jm2e.js\" type=\"text/javascript\"></script><script src=\"https://ir.ebaystatic.com/rs/v/njuzpfuduizazecx5blx2oj0u20.js\" type=\"text/javascript\"></script><script src=\"https://ir.ebaystatic.com/rs/c/makeebayfasterscript-src-scripts-body-78a2168a.js\" type=\"text/javascript\"></script><script src=\"https://ir.ebaystatic.com/rs/v/x4m2kt2tqa4wtn2qmgbajkosgiy.js\" type=\"text/javascript\"></script><script src=\"https://ir.ebaystatic.com/rs/v/nwpqbocfgm5cxduoh3nefrjxm2l.js\" type=\"text/javascript\"></script><script type=\"text/javascript\" src=\"//ir.ebaystatic.com/rs/v/x531ujuzsmyzzpxsfpgjyapcgez.js\"></script>\r\n\t\t\t<script type=\"text/javascript\" src=\"\"></script>\r\n\t\t\t<script type=\"text/javascript\">(function(){\r\n\t\traptor.require('raptor.rtm.RtmManager').manage({\"fallbackBaseURL\":\"https://srv.ebay.co.uk/ws/eBayISAPI.dll?RtmCmd\",\"isSignedIn\":false,\"jsDependencyURLs\":[\"https://ir.ebaystatic.com/rs/v/2p5dmzzesuyhnk0rnfuuau2e0mr.js\",\"https://ir.ebaystatic.com/rs/v/xo22otjt4a0ovdrhq1uphcrgo22.js\",\"https://ir.ebaystatic.com/rs/v/vdl104thoi5lbnavivof55u3a2q.js\",\"https://ir.ebaystatic.com/rs/v/ordlg4hi1a4vhkzcohhdubazg23.js\",\"https://ir.ebaystatic.com/rs/v/wa2of3yznyyarcmjoype0qiwran.js\"],\"nonBlockingSRX\":true,\"pageId\":2047675,\"userId\":null,\"baseURL\":\"https://srv.uk.ebayrtm.com/rtm?RtmCmd&a=json&g=1a3895281650a9e1e8fecbbcffff6728&uf=0&c=1H4sIAAAAAAAAADVS22rbQBB991csFPJQfJnLXl32oU1zaSCJW6mkhUBR7aUWkS1VlhDp13dkOy%2B7M8Oc2Tnn7Lt826u7Yq9IK6ClxqVmdXOfz8AtARQBhknD4KOeNFpThEmDQUdEBxJCJHCWxxrGLH%2F8dvUr%2B%2F7p8mM%2Baci7iJrY2EDGk56iZjAW2IAzUyQIlqxHAJqSY%2BOQAQL4KRkO1rMlYpS5zsfbepem6rpv92XXt0ldqM9ffj73AIASqLyuq4MUn%2Br25bCtG3X1ty%2BbXdp3p57bYr85Nb3lu11qR8R9UVWpO5dlY4MRQZ61VtPIU%2BsYxhXMmeW63ESkUzvCG4xRiApaNOLxkszNyUjINj6kQQLrIskgOjZYG3m8WcfZiAtG1DTWa3bmOADi448zq1VbiwX1P3VZFYM6ba5wtirTOqmsrsqNuq7bP2mjsi6lSl0Uu%2BaDeqj3KqvKRt20cqzAA458hFncdl1zeF4uFsMwzNPv4nW%2Bruf9y0LM5eN66FnYamedMGDxcHWXD1%2BfDu8FL0KMsrCP9uhNCJEsOW3QaR%2FcpLGjEMju%2FD3%2BAyrloy1cAgAA&ord=1548322903590\",\"csrfToken\":\"4c25b5404115f1c5e941a429fa7a1381c8ed5bf60ac2add9b2f9d55e0c888fe9\",\"followSvcUrl\":\"http://mbe.vip.ebay.com/merbak/v0/feed/users/{user}/follows\",\"ver\":5,\"jsonpSvcUrl\":\"http://svcs.ebay.com/proxy/\",\"placementsInfo\":[[280,4,0,0,\"\"],[283,1,0,0,\"\"],[20047,4,0,0,\"\"]]});\r\n\r\n\t\t\t$(document).trigger(\"RTM_REGISTER_PLACEMENTS\",{'placementsInfo':[[876,0,0,0],[912,0,0,0],[433,0,0,0],[1650,1,0,0],[1651,1,0,0]]});\r\n\r\n\t\t\twindow.setTimeout(function(){$(document).trigger(\"RTM_INIT\",{'init':0});},0);\r\n\t\t})();</script><script type=\"text/javascript\">(function(){\r\n(function() {\r\nvar Context = raptor.require('ebay.context.Context');\r\nContext.call(Context,{\"site\":3,\"errors\":{\"enabled\":false},\"app\":\"viewitem\",\"domain\":\".ebay.co.uk\",\"cobrand\":2,\"pool\":\"production\",\"locale\":\"en_GB\",\"features\":{},\"pid\":2047675});\r\n})();\r\n\r\n\tif(typeof FastClick === 'function') {FastClick.attach(document.body);}\r\ntry { var lockedHdrTitle = $(\"#vi-lkhdr-itmTitl\").html(); $(\"#vi-lkhdr-itmTitl\").html(lockedHdrTitle.replace(new RegExp('&lt;script', 'g'),\"\")); window.alert=function(){}; }catch(e){}try {\r\n    if ($(\".vi-VR-cvipCntr1\").length > 0) {\r\n        var script = document.createElement(\"script\");\r\n        script.innerHTML = \"var vidummyhelper = 0;\";\r\n        var head = document.getElementsByTagName('head')[0];\r\n        if (head) {\r\n            head.appendChild(script);\r\n        }\r\n    }\r\n} catch (e) {}\r\nvar viebmaxbd = $(\"#MaxBidId\");\r\ntry {\r\n    $('#smtBackToAnchor').on('click', function() {\r\n        var backToAnchor = $('.vi-VR-spl-lnk');\r\n        var url = backToAnchor.attr('href');\r\n        if (url.indexOf('http%3A%') != -1) {\r\n            url = decodeURIComponent(url);\r\n            backToAnchor.attr('href', url);\r\n        }\r\n    });\r\n    if (viebmaxbd.length > 0) {\r\n        if (viebmaxbd.attr(\"placeholder\").length > 0) {\r\n            setInterval(function() {\r\n                var placeholdertxt = viebmaxbd.attr('placeholder');\r\n                placeholdertxt = placeholdertxt.replace(\"&#163;\", '\\u00A3');\r\n                viebmaxbd.attr('placeholder', placeholdertxt);\r\n            }, 100);\r\n        }\r\n    }\r\n    var e1 = $('#e1.lowpay');\r\n    var vehc_rdloans = $('#vehc_rdloans');\r\n    if (e1.size() > 0 && vehc_rdloans.size() > 0) {\r\n        vehc_rdloans.text(e1.text());\r\n        vehc_rdloans.css('text-transform', 'capitalize')\r\n    }\r\n} catch (err) {}\r\nvar prc = $('#vi-mskumap-postchkout');\r\nif (prc && prc.size() == 0) {\r\n    prc = $('#vi-mskumap-prechkout');\r\n}\r\nvar lhrdPrcCnt = $(\"#lkd_hdr div.lhdr-prcfmt-cntr span#lhdr-prcfmt\");\r\nif (prc.size() > 0 && lhrdPrcCnt && lhrdPrcCnt.size() > 0) {\r\n    lhrdPrcCnt.addClass(\"vi-lhdr-prc-hide\");\r\n}\r\ntry {\r\n    $('#vi_snippetdesc_btn').attr('id', 'snippetdesc');\r\n} catch (e) {}\r\ntry {\r\n    var newPBBtn = $(\"#bidBtn_btn.vilens-item\");\r\n    if (newPBBtn.size() > 0 && $('.vi-VR-cvipCntr1').size() == 0) {\r\n        $(window).on(\"load\", function() {\r\n            newPBBtn.on(\"click\", function() {\r\n                if ($(\".vilens-modal-wrapper\").size() == 0) {\r\n                    var rlogId = null;\r\n                    try {\r\n                        $.fn.getComments = function() {\r\n                            return this.contents().map(function() {\r\n                                if (this.nodeType === 8) return this.nodeValue;\r\n                            }).get();\r\n                        };\r\n\r\n                        $(\"body\").getComments().forEach(function(i) {\r\n                            var ind = i.indexOf(\"RlogId\");\r\n                            if (ind > 0) {\r\n                                rlogId = i.substring(ind + 7);\r\n                            }\r\n                        });\r\n                    } catch (e) {}\r\n                    $.ajax({\r\n                        url: \"/bfl/metrics?surl=\" + window.location.href + \"&rlogid=\" + rlogId + \"&ref=\" + document.referrer,\r\n                        success: function() {}\r\n                    });\r\n                    setTimeout(function() {\r\n                        window.location.href = newPBBtn.attr(\"href\");\r\n                    }, 100);\r\n                }\r\n            });\r\n        })\r\n    };\r\n} catch (ex) {}\r\ntry {\r\n                raptor.require('pubsub').subscribe('_OPN_POWB_LAYER', newBidLayerMonitor);\r\n                function newBidLayerMonitor () {\r\n                                var newPBBtn = $(\".vilens-item\");\r\n                                if (newPBBtn.size() > 0 && $('.vi-VR-cvipCntr1').size()==0 && $(\".vilens-modal-wrapper\").size() == 0) {\r\n                                                                window.console && window.console.log('.vilens-modal-wrapper doesnt exist');\r\n                                                                var url = [\"/\",\"bfl/\",\"metrics?surl=\"];\r\n                                                                $.ajax({\r\n                                                                                url: url.join('')+window.location.href+\"&rlogid=\"+rlogId+\"&ref=\"+document.referrer,\r\n                                                                                success: function() {}\r\n                                                                });\r\n                                                                setTimeout(function() {\r\n                                                                                window.location.href = newPBBtn.attr(\"href\");\r\n                                                                }, 50);\r\n                                }\r\n                }\r\n} catch(ex){window.console && window.console.log(ex);}\r\ntry{if($('.vi-itm-snpts').length > 0){$('#shippingSummary').find('.u-cb.spcr').hide();$('.vi-itm-snpts').parent().parent().hide();}}catch(e){}\r\nfunction replaceHref(cssSelector){$('.'+cssSelector).find(\"a\" ).each(function() {var href = $( this ).attr('href'); if(href.indexOf('https://cgi')!= -1){href=href.replace('https://cgi', \"http://cgi\");$( this ).attr('href', href);}if (href.indexOf('http://ofr') != -1) {href = href.replace('http://ofr', \"https://ofr\");$(this).attr('href', href);}});}if(document.location.protocol=='https:'){$(document).ready(function(){replaceHref('statusContent');});} function replaceHrefWithId(cssSelector){$('#'+cssSelector).each(function(){var href=$(this).attr('href');if(href.indexOf('http://ofr')!=-1){href=href.replace('http://ofr',\"https://ofr\");$(this).attr('href',href)}})}if(document.location.protocol=='https:'){try{$(document).ready(function(){replaceHrefWithId('boBtn_btn')})}catch(e){console.log(e)}}\r\ntry{if($(\".rpColWid > a\").length>0){var href=$(\".rpColWid > a\").eq(0).attr(\"href\");if(href&&-1!==href.indexOf(\"buyer-ads\")){var boBtn_btn=$(\"#boBtn_btn\");if(boBtn_btn.length>0){var bo_link=boBtn_btn.attr(\"href\");bo_link&&-1!==bo_link.indexOf(\"MakeBestOffer\")&&(bo_link=bo_link.replace(\"https://offer\",\"http://offer\"),boBtn_btn.attr(\"href\",bo_link),boBtn_btn.attr(\"id\",\"boBtn_btn_new_bo\"))}}}}catch(t){window.console&&window.console.log(t)}\r\ntry{window&&(window.onload=function(){var o=$(\"#desc_ifr\"),w=o.length>0&&o.width();\"99%\"!=w&&w<500&&o.width(\"99%\")})}catch(o){window&&window.console&&window.console.log(o)}\r\ntry{if(document.location.href && document.location.href.indexOf('&pageci=') != -1){$('.cvipTopMsg').hide()}}catch(e){} if(typeof GH!=\"undefined\"&&GH){GH.urls={ autocomplete_js:\"https://ir.ebaystatic.com/rs/v/daenj4np1ezs3msxgbj3z4t2pu5.js\",fnet_js:\"https://c.paypal.com/webstatic/r/fb/fb-all-prod.akamai.pp2.min.js\",ie8_js:\"http://ir.ebaystatic.com/f/rbezfuzpu20wfd2kvejeb5adxyg.js\",scandal_js:\"https://ir.ebaystatic.com/cr/v/c1/ScandalJS-1.2.0-v4.min.js\",widget_delivery_platform:\"https://ir.ebaystatic.com/cr/v/c1/globalheader_widget_platform-f023e39.js\" }; GH.GHSW={ raptor:\"true\",sandbox:0,emp:0,ac1:0,ac2:0,ac3:0,ac4:0,ac5:0,ac6:0,hideMobile:0,langSwitch:0,pool:0,ALERT_POPUPOFF:0,NEWALERT_POPUPOFF:0,newprofile:0,desktop_new_profile_service:\"true\",UNLOAD_Firefox:\"true\",UNLOAD_Chrome:\"true\",UNLOAD_IE:0,UNLOAD_Safari:0,ENABLE_HTTPS:\"true\" };} if(typeof GH!=\"undefined\" && GH){GH_config={\"siteId\":\"3\",\"geoLang\":\"[]\",\"env\":\"production\",sin:0,id:'',fn:'',pageId:2047675,selectedCatId:'11700',ct:0,tmx:''};GH.init();}\r\n\t$(\"#msgPanel a.btn\").on(\"keypress\", function(e){\r\n\t\tif(e.keyCode===32 && this.getAttribute('role') === 'button') {\r\n\t\te.preventDefault();\r\n\t\t\tthis.click();\r\n\t\t}\r\n\t});\r\nraptor.require(\"com.ebay.raptor.vi.SMEBanner\").init();\r\n\tvar enImgCarousel = raptor.require('ebay.viewItem.imageCarousel');\r\n\tnew enImgCarousel({\"layerId\" : \"viEnlargeImgLayer\", \"imgCntId\" : \"viEnlargeImgLayer_img_ctr\", \"imgArr\" : [{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l1600.jpg\",\"maxImageHeight\":800,\"maxImageWidth\":800,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false}], \"islarge\" : true, \"isEnableTouch\" : false, \"clsTrk\" : \"VI_ENG_IMG_LYR_V2_CLOSE\", \"opnTrk\" : \"ENLARGE_PANEL\", \"arrTrk\" : \"VI_ENLARGE_IMAGE_LAYER_V2_ARROW_CLK\", \"fsARRTrk\" : \"VI_ENLARGE_IMAGE_LAYER_V2_FS_ARRW_CLK\", \"fsTHBTrk\" : \"VI_ENG_IMG_LYR_V2_THB_CLK\", \"isFS\" : true, \"fsId\" : \"viEnlargeImgLayer_layer_fs\", \"sliderId\" : \"viEnlargeImgLayer_layer_fs_slider\", \"cellWidth\" : \"75\", \"cellHeight\" : \"76\", \"cellNumber\" : \"6\", \"isVideoPresent\" : \"false\",\"filmstripEnhanced\" : \"false\"});\r\nvar pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'viEnlargeImgLayer', isHideScroll:true, isFade:true, isBckBtnSupport:true});\r\n\tvar enLayer = raptor.require('ebay.viewItem.enlargeLayerv2');\r\n\tnew enLayer({\"id\" : \"viEnlargeImgLayer\", \"mainImgHldrId\" : \"mainImgHldr\"});\r\n\r\n\t\t\tvar filmstrip = raptor.require('ebay.viewItem.utils.filmstrip');\r\n\t\t\tnew filmstrip({\"sliderId\" : \"vi_main_img_fs_slider\", \"fsId\" : \"vi_main_img_fs\", \"cellNumber\" : 6, \"cellWidth\" : 75, \"cellHeight\" : \"76\", \"speed\" : \"6\", \"fsARRTrk\" : \"VI_FILMSTRIP_ARR_CLICK\", \"fsTHBTrk\" : \"VI_FILMSTRIP_THUMBS_CLICK\", \"filmstripEnhanced\" : \"false\"});\r\n\r\n\traptor.require(\"ebay.viewItem.PicturePanelPH\").init({'prLdImgThrsld':5, 'fsImgList':[{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l1600.jpg\",\"maxImageHeight\":800,\"maxImageWidth\":800,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false}]});\r\n$(\"#e4\").click(function(){var tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";trackingUtil(\"Shipping_See_all_details_ItemSummary\");try{$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);}catch(e){$(\"#\" + tabId).trigger('click', ['noTabTracking']);}});$(\"#e2\").click(function(){var tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";trackingUtil(\"Shipping_See_all_details_ItemSummary\");try{$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);}catch(e){$(\"#\" + tabId).trigger('click', ['noTabTracking']);}});$(\"#expedited_link\").click(function(){var tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";trackingUtil(\"OneDayShipping_Link_in_Delivery_Expedited_Shipping\");try{$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);}catch(e){$(\"#\" + tabId).trigger('click', ['noTabTracking']);}});$(\"#e3\").click(function(){var tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";trackingUtil(\"Calculate_link_ItemSummary\");try{$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);}catch(e){$(\"#\" + tabId).trigger('click', ['noTabTracking']);}});var tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";$(\"#e5\").click(function(){try{$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);}catch(e){$(\"#\" + tabId).trigger('click', ['noTabTracking']);}trackingUtil(\"See_exclusions_itemInfo\");});\r\n\t\t\t$(\"#e6\").click(function(){\r\n\t\t\t\tvar tabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";\r\n\t\t\t\ttry{\r\n\t\t\t\t$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);\r\n\t\t\t\t}catch(e){\r\n\t\t\t\t\t$(\"#\" + tabId).trigger('click', ['noTabTracking']);\r\n\t\t\t\t}\r\n\t\t\t\ttrackingUtil(\"Payments_See_details_Iteminfo\");\r\n\t\t\t});\r\n\r\n\t\t\t$(\".vi-ppc-offlnk\").click(function(){\r\n\t\t\t\ttrackingUtil(\"VIP_PPC_OFFER_LNK\");\r\n\t\t\t});\r\n\r\n\r\n\t$(\"#e7\").click(function(){\r\n\t\tvar tabId = (true) ? \"viTabs_0\" : \"viTabs_1\";\r\n\t\t\tif (!(true)){\r\n\t\t\t\ttabId = ($(\"body.vi-deeplinksv2\").length > 0) ? \"viTabs_0\" : \"viTabs_1\";\r\n\t\t\t}\r\n\r\n\r\n\t\ttry{\r\n\t\t$(\"#\" + tabId)[0].trigger('click', ['noTabTracking']);\r\n\t\t}catch(e){\r\n\t\t\t$(\"#\" + tabId).trigger('click', ['noTabTracking']);\r\n\t\t}\r\n\t\ttrackingUtil(\"Returns_Read_details\");\r\n\t});\r\n$(\"#\").click(function(){$(\"#viTabs_0\")[0].click();});\r\n\t\traptor.require(\"js.sellerinfo.BSIContactDetails\").init({bscdid:\"e9\"});\r\n\tvar ia = raptor.require('com.ebay.raptor.vi.ItemAttributes');new ia({readMoreId : 'readFull', hiddenContentId : 'hiddenContent'});\r\n\t\traptor.require(\"js.sellerinfo.BusinessSellerInfo\").init({\r\n\t\t\tcid: \"bsi-c\",\r\n\t\t\tbsiecid: \"bsi-ec\",\r\n\t\t\tbsciid: \"e10\",\r\n\t\t\ttextboxLabelId: \"bsi-tct\",\r\n\t\t\tshowHideBusinessContactInfo: true,\r\n\t\t\thideTermsAndConditions: false\r\n\t\t});\r\n\r\n\tvar rpReferContLen = $(\".rpReferCont\").length;\r\n\tvar rpAUContLen = $(\".rpAUCont\").length;\r\n\tif(rpReferContLen > 0) {\r\n\t\t$(\".rpReferCont span\").click(function(){\r\n\t\t\ttrackingUtil(\"VI_REFUND_POLICY_REFER_LINK\");\r\n\t\t});\r\n\r\n\t\t$(\".rpReferCont b\").click(function(){\r\n\t\t\ttrackingUtil(\"VI_REFUND_POLICY_EMBG_LINK\");\r\n\t\t});\r\n\t}\r\n\tif(rpAUContLen > 0) {\r\n\t\t$(\".rpAUCont span\").click(function(){\r\n\t\t\ttrackingUtil(\"VI_REFUND_POLICY_RBL_AU_LINK\");\r\n\t\t});\r\n\t}\r\n\r\n$(\"span.vi-rpd-textStyle a\").each(function(i,e){$(this).attr('target', \"_blank\");});\r\nvar pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'rvwEnlargeImgLayer_10000000238775816', isHideScroll:true, isFade:true, isBckBtnSupport:true});var pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'rvwEnlargeImgLayer_10000000240831695', isHideScroll:true, isFade:true, isBckBtnSupport:true});var pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'rvwEnlargeImgLayer_10000000263764455', isHideScroll:true, isFade:true, isBckBtnSupport:true});var pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'rvwEnlargeImgLayer_10000000263566373', isHideScroll:true, isFade:true, isBckBtnSupport:true});var pageLayer = raptor.require(\"com.ebay.raptor.vi.pagelayer\");new pageLayer({cmpId:'rvwEnlargeImgLayer_10000000236465674', isHideScroll:true, isFade:true, isBckBtnSupport:true});\r\n\tvar deeplinksv2 = false;\r\n\tvar isAutoCars = false;\r\n\tvar prForBotsEnabled = false;\r\n\tvar enableSpaceBarOnTabsFlag = false;\r\n    $(\"#viTabs_0\").bind('click', function(event, param) {\r\n        if(param !== 'noTabTracking') {\r\n            trackingUtil(\"Description_Tab\");\r\n        }\r\n    });\r\n\r\n    $('ul.nav-tabs-m a').bind(\"keydown\",function(event){\r\n\t    if(event.keyCode==37){\r\n\t\t\t\t//check if any element exists to the left\r\n\t\t\t\tvar previousTab = $(this).parent().prev('li');\r\n\t\t\t\tvar previousChildLink = previousTab.children(\"a\");\r\n\t\t\t\tif(previousTab.length>0){\r\n\t\t\t\t\tpreviousChildLink.trigger(\"click\");\r\n\t\t\t\t\tpreviousChildLink.focus();\r\n\t\t\t\t}else{\r\n\t\t\t\t}\r\n\t    }\r\n\t    else if(event.keyCode==39){\r\n\t    \t\t//check if any element exists to the right\r\n\t    \t\tvar nextTab=$(this).parent().next('li');\r\n\t    \t\tvar nextChildLink = nextTab.children(\"a\");\r\n\t    \t\tif(nextTab.length>0){\r\n\t\t\t\t\tnextChildLink.trigger(\"click\");\r\n\t\t\t\t\tnextChildLink.focus();\r\n\t\t\t\t}else{\r\n\t\t\t\t}\r\n\t    }\r\n\t    else if(enableSpaceBarOnTabsFlag && event.keyCode==32){\r\n\t    \tvar focussedElement = $(this);\r\n\t    \tfocussedElement.trigger(\"click\");\r\n\t    }\r\n    });\r\n\r\n    if(enableSpaceBarOnTabsFlag){\r\n    \twindow.onkeydown = function(e) {\r\n\t\t\t  if($('ul.nav-tabs-m a').is(':focus'))return !(e.keyCode == 32);\r\n\t\t\t};\r\n    }\r\n\r\n\t$('ul.nav-tabs-m a').click(function (event) {\r\n\t\tevent.stopPropagation();\r\n\t\tvar id = $(this).parent().index();\r\n\t\tvar tempAttr;\r\n\t\tid+=1;\r\n\t\tif ($(this).parent().attr(\"class\") != \"item active sel\" ) {\r\n\t\t\t$('ul.nav-tabs-m li').each(function(index) {\r\n\t\t\t     $(this).removeClass(\"active sel\");\r\n\t\t\t     $(this).children(\"a\").attr(\"aria-selected\",\"false\");\r\n\t\t\t});\r\n\r\n\t\t\t$('div.tab-content-m div').each(function(index) {\r\n\t\t\t     $(this).removeClass(\"active sel\");\r\n\t\t\t});\r\n\t\t\t$(\"ul.nav-tabs-m li:nth-child(\"+id+\")\").addClass(\"active sel\");\r\n\t\t\t$(\"ul.nav-tabs-m li:nth-child(\"+id+\")\").children(\"a\").attr(\"aria-selected\",\"true\");\r\n\t\t\t$(\"div.tab-content-m div:nth-child(\"+id+\")\").addClass(\"active sel\");\r\n\r\n\r\n\r\n\t\t\tif ((id == 1) && (deeplinksv2)) {\r\n\t\t\t\tvar tabNum = 2;\r\n\t\t\t\tif (isAutoCars) {\r\n\t\t\t\t\ttabNum = 3;\r\n\t\t\t\t}\r\n\t\t\t\t$(\"div.tab-content-m div:nth-child(\" + tabNum + \")\").addClass(\"active sel\");\r\n\t\t\t\t$(\".vi-readMore-ship\").addClass(\"u-dspn\");\r\n\t\t\t}\r\n\t\t\tif ((id == 2) && (deeplinksv2)) {\r\n\t\t\t\t$(\".vi-readMore-ship\").removeClass(\"u-dspn\");\r\n\t\t\t}\r\n\r\n\t\t}\r\n\t});\r\n\r\n\tif (deeplinksv2){\r\n\t\t$(document).ready(function(){\r\n\t\t\t$('a[href^=\"#\"].vi-ds3-ter-a').on('click',function (e) {\r\n\t\t\t    e.preventDefault();\r\n\t\t\t    var target = this.hash,\r\n\t\t\t    $target = $(target);\r\n\t\t\t    $('html, body').stop().animate({\r\n\t\t\t        'scrollTop': $target.offset().top\r\n\t\t\t    }, 700, 'swing', function () {\r\n\t\t\t        window.location.hash = target;\r\n\t\t\t    });\r\n\t\t\t});\r\n\t\t});\r\n\t}\r\n\r\n\t$(\"#viTabs_1\").bind('click', function(event, param) {\r\n\t\tif(param !== 'noTabTracking') {\r\n\t\t       if(event.target.innerHTML == \"Vehicle history report\"){\r\n                 trackingUtil(\"VEHICLE_HISTORY_REPORT_TAB_CLICK\");\r\n                }\r\n\t\t  else {\r\n\t\t\t      trackingUtil(\"Shipping_and_Payments_Tab\");\r\n\t           }\r\n\r\n\t\t}else{\r\n\t\t\tif(navigator && navigator.userAgent && navigator.userAgent.indexOf(\"Opera\") != -1) {\r\n\t\t\t\tsetTimeout(function(){document.location.hash = document.location.hash.substring(1);},50);\r\n\t\t\t}\r\n\t\t}\r\n\t});\r\n\r\n\t$(\"#viTabs_2\").bind(\"click\",function(event,param){\r\n\t   trackingUtil(\"VEHICLE_SHIPPINGPAYMENT_TAB\");\r\n\t});\r\n\tif(prForBotsEnabled){\r\n\t\t$(document).ready(function(){\r\n\t\t\t trackingUtil(\"VI_DOCUMENT_READY_TRIGGER\");\r\n\t\t});\r\n\t}\r\n\t$(\"#snippetdesc\").bind(\"click\",function(event,param){\r\n\t   trackingUtil(\"VI_SEE_FULL_DESC_CLICK\");\r\n\r\n\r\n\r\n\t});\r\n\r\n\r\n\t$(\".rpMainCont a\").attr('target','_blank');\r\n\r\n\tvar tRtmPubsub = raptor.require('pubsub');\r\n\tif(tRtmPubsub) {\r\n\t\ttRtmPubsub.subscribe(\"ADD_TO_WATCH_TRIGGERED\", function(msg){ $('body').trigger((\"RTM_PUBLISH\"),{'pids':([\"280\"])});});\r\n\t}\r\n\r\n\tvar tRtmPubsub = raptor.require('pubsub');\r\n\tif(tRtmPubsub) {\r\n\t\ttRtmPubsub.subscribe(\"_SUBMIT_CARTBTN\", function(msg){ $('body').trigger((\"RTM_PUBLISH\"),{'pids':([\"20047\"])});});\r\n\t}\r\n\r\n\tvar enImgCarousel = raptor.require('ebay.viewItem.imageCarousel');\r\n\tnew enImgCarousel({\"layerId\" : \"vibtfimgoly\", \"imgCntId\" : \"vibtfimgoly_img_ctr\", \"imgArr\" : [{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l1600.jpg\",\"maxImageHeight\":800,\"maxImageWidth\":800,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false}], \"islarge\" : false, \"isEnableTouch\" : false, \"clsTrk\" : \"VI_BTF_IMG_LYR_CLS\", \"opnTrk\" : \"VI_BTF_IMG_LYR_OPN\", \"arrTrk\" : \"VI_BTF_IMG_LYR_ARR_CLK\", \"fsARRTrk\" : \"\", \"fsTHBTrk\" : \"\", \"isFS\" : false, \"fsId\" : \"\", \"sliderId\" : \"\", \"cellWidth\" : \"\", \"cellHeight\" : \"\", \"cellNumber\" : \"\", \"isVideoPresent\" : \"false\",\"filmstripEnhanced\" : \"false\"});\r\n\r\nvar btfImgLyr = raptor.require('ebay.viewItem.btfimglyr');\r\nnew btfImgLyr({'olyid':'vibtfimgoly', 'cntrid':'vibtfimgcmp'});\r\n\r\n\t$(\"#_rtop\").click(function(){\r\n\t\ttrackingUtil(\"Return_to_top\");\r\n\t});\r\nraptor.require('com.ebay.raptor.vi.cookie.ScreenDetail').init({\"cookieName\" : \"dp1\",\"cookieletName\" : \"pbf\",\"currentResValue\" : {\"maxWidth\":2147483647,\"minWidth\":1681,\"name\":\"RES_MAX\",\"value\":7,\"id\":7,\"integer\":7},\"resRange\" : [{\"maxWidth\":-1,\"minWidth\":-1,\"name\":\"DEFAULT\",\"value\":0,\"id\":0,\"integer\":0},{\"maxWidth\":1024,\"minWidth\":0,\"name\":\"RES_1024\",\"value\":1,\"id\":1,\"integer\":1},{\"maxWidth\":1152,\"minWidth\":1025,\"name\":\"RES_1152\",\"value\":2,\"id\":2,\"integer\":2},{\"maxWidth\":1280,\"minWidth\":1153,\"name\":\"RES_1280\",\"value\":3,\"id\":3,\"integer\":3},{\"maxWidth\":1366,\"minWidth\":1281,\"name\":\"RES_1366\",\"value\":4,\"id\":4,\"integer\":4},{\"maxWidth\":1440,\"minWidth\":1367,\"name\":\"RES_1440\",\"value\":5,\"id\":5,\"integer\":5},{\"maxWidth\":1680,\"minWidth\":1441,\"name\":\"RES_1680\",\"value\":6,\"id\":6,\"integer\":6},{\"maxWidth\":2147483647,\"minWidth\":1681,\"name\":\"RES_MAX\",\"value\":7,\"id\":7,\"integer\":7}],\"resBits\" : [85,86,87],\"currentViewportValue\" : {\"maxWidth\":2147483647,\"minWidth\":1281,\"name\":\"VIEWPORT_7\",\"value\":7,\"id\":7,\"integer\":7},\"viewportRange\" : [{\"maxWidth\":-1,\"minWidth\":-1,\"name\":\"DEFAULT\",\"value\":0,\"id\":0,\"integer\":0},{\"maxWidth\":1020,\"minWidth\":0,\"name\":\"VIEWPORT_1\",\"value\":1,\"id\":1,\"integer\":1},{\"maxWidth\":1024,\"minWidth\":1021,\"name\":\"VIEWPORT_2\",\"value\":2,\"id\":2,\"integer\":2},{\"maxWidth\":1148,\"minWidth\":1025,\"name\":\"VIEWPORT_3\",\"value\":3,\"id\":3,\"integer\":3},{\"maxWidth\":1152,\"minWidth\":1149,\"name\":\"VIEWPORT_4\",\"value\":4,\"id\":4,\"integer\":4},{\"maxWidth\":1276,\"minWidth\":1153,\"name\":\"VIEWPORT_5\",\"value\":5,\"id\":5,\"integer\":5},{\"maxWidth\":1280,\"minWidth\":1277,\"name\":\"VIEWPORT_6\",\"value\":6,\"id\":6,\"integer\":6},{\"maxWidth\":2147483647,\"minWidth\":1281,\"name\":\"VIEWPORT_7\",\"value\":7,\"id\":7,\"integer\":7}],\"viewportBits\" : [69,70,71]});$rwidgets(['com.ebay.raptor.vi.isum.smartBackTo','w1-1',{\"smtBackToAnchorArrowId\":\"smtBackToAnchorArrow\",\"viBackToUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002F\",\"smtBackToAnchorId\":\"smtBackToAnchor\",\"numLevels\":1,\"isBacktoSearch\":false},0,0,0,['com.ebay.raptor.vi.share.SocialWidget','w1-2',{\"fbPopupHeight\":300,\"tweetPopupHeight\":350,\"isTalkOn\":false,\"shareMailPopJs\":\"https:\\u002F\\u002Fir.ebaystatic.com\\u002Frs\\u002Fv\\u002Ffhx5nfuqxy22fbszdwvi2xltoyv.js\",\"pinterestPopupHeight\":350},'w1-1',''],['ebay.viewItem.AddToWatchLink','w1-3',{\"id\":\"watchLink\",\"addToWatchUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002Fmyb\\u002FWatchListAdd?_trksid=p2047675.l1359&SubmitAction.AddToListVI=x&item=262745174897&rt=nc&srt=0100030000005048f1c3513018150de0610c13b1f64fddcd8776055c072f3b6fce2cf6c8509872a199a8a66021dd9a4255e4aafaa5ecf0fa477192ff7c36ab14a0406e2ab34cf81f88d192b45f87a4be5bc594d182f5d4&etn=Watch list&tagId=-99&wt=9fcdab228c5caba3f365c5bd0278b26d&ssPageName=VIP:watchlink:top:en&sourcePage=4340\",\"msku\":false,\"ended\":false,\"userSignedIn\":false,\"linkTopId\":\"linkTopAct\"},'w1-1','watchItm']],['com.ebay.raptor.vi.overlayHandler','w1-4'],['com.ebay.raptor.vi.topmessagepanel.TopMessagePanel','w1-5',{\"CHINESE_BUYER_HIGH_BIDDER_PC_ON\":\"You're the high bidder. \",\"CHINESE_BUYER_HIGH_BIDDER_RESERVE_NOT_MET_PC_ON\":\"You're the high bidder but the reserve price has not been met. \",\"CHINESE_BUYER_OUTBIDDER_PC_ON\":\"You've been outbid. \",\"smId\":\"w1-5-_msg\",\"dummy\":\"##n##\",\"inlineExp\":false,\"autoRefreshSvcId\":\"AUTO_REFRESH_SVC\",\"panelId\":\"msgPanel\"}],['ebay.viewItem.PicturePanel','w1-6',{\"id\":\"vi_pic_panel\",\"isEnableTouch\":false,\"selectedIndex\":0,\"mainImgId\":\"icImg\",\"mainImgHldr\":\"mainImgHldr\",\"thbrImgId\":\"icThrImg\",\"prLdImgThrsld\":5,\"fsImgList\":[{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l1600.jpg\",\"maxImageHeight\":800,\"maxImageWidth\":800,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FYo4AAOSwj85YQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FslsAAOSwEzxYQZ4h\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false},{\"thumbImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l64.jpg\",\"thumbImgSize\":null,\"displayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l500.jpg\",\"displayImgSize\":null,\"maxImageUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002Fm0gAAOSw44BYQZ4i\\u002Fs-l1600.jpg\",\"maxImageHeight\":1600,\"maxImageWidth\":1600,\"videoUrl\":null,\"format\":null,\"size\":0,\"videoLength\":0,\"stockPhoto\":false,\"zoomEnabled\":true,\"enlargeEnabled\":true,\"selected\":false,\"video\":false}],\"isVideoPresent\":false,\"isSelfHosted\":true,\"numberOfImages\":4,\"fsId\":\"vi_main_img_fs\",\"mskuId\":\"sel-msku-variation\"},0,0,0,['com.ebay.raptor.vi.PicturePanel.PicturePanelIcons','w1-7',{\"defaultCaseHasBOPIS\":false,\"ribbonContentSelector\":\"#picturePanelIcon #freeShip span.gspr\",\"almostGoneTxt\":\"ALMOST GONE\",\"defaultCaseHasLastOne\":false,\"defaultCaseHasPercentOff\":false,\"topSellingTxt\":\"TOP SELLING\",\"ribbonContainerSel\":\"#picturePanelIcon\",\"bopisClass\":\"vi-promCircle\",\"ebnTimerClass\":\"vi-ebnProm\",\"defaultCaseHasEBN\":false,\"defaultCaseHasEndingSoon\":false,\"endingSoonTxt\":\"Ending soon\",\"freeShippingTxt\":\"Free P&amp;P\",\"percentOffTxt\":\"Free P&amp;P\",\"ebnContentSelector\":\".vi-ebnClock\",\"defaultCaseHasAlmostGone\":false,\"defaultCaseHasTopSelling\":false,\"defaultCaseHasFreeShipping\":true,\"lastOneClass\":\"t\",\"lastOneTxt\":\"LAST ONE\",\"pictureIconSel\":\"#picturePanelIcon #freeShip\"}],['ebay.viewItem.ZoomEnlarge','w1-8',{\"id\":\"vi_pic_zoomEnlarge\",\"mainImgId\":\"icImg\",\"zoomEnMsgId\":\"zoom_enlarge_msg\",\"zoomMsg\":\"Mouse over image to zoom\",\"enlargeMsg\":\"Click to view larger image and other views\",\"zoomEnMsgCntId\":\"zoom_enlarge_msg_cnt\"},'w1-6','vi_pic_zoomEnlarge',0,['ebay.viewItem.Zoom','w1-9',{\"id\":\"vi_pic_zoom\",\"mainImgId\":\"icImg\",\"maskId\":\"zoom_img_mask\",\"zoomSelId\":\"zoom_selector\",\"imgCntrId\":\"zoom_main_img_cntr\",\"zoomImgId\":\"zoom_main_img\",\"zoomCntrId\":\"zoom_main_cntr\",\"mImgContainerSize\":500,\"isNewZoomTest1\":true},'w1-8','vi_pic_zoom']]],['ebay.viewItem.solt','w1-10',{\"soltQuickSaleMsg\":\"Upgrading? Receive an instant offer for your phone\",\"id\":\"vi_solt_instant_sale\",\"instSalePricePH\":\"vi_solt_price_ph\",\"soltQuickSaleBtnTxt\":\"Try Quick Sale\",\"instantSaleMsgId\":\"inst_sale_msg\",\"quickSaleVar\":0,\"instantSaleCntId\":\"vi_solt_inst_cnt\",\"url\":\"https:\\u002F\\u002Fframe.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?CCSVIEWITEM&epid=1023166420&siteid=3\"}],['follow/widget','w1-11',{\"csrf_folloAjax_update\":\"0100030000005097c1916d4b47cd5c072e98e64eb1e7565c9247a704d5bb5091a70b459fc9448df23bcda158433fdead9cf969602a0b0a3646bbc5593ed018fdeec7748bf22e8e8a76dbd18c0479d04a48796784b0ccc6\",\"csrf\":\"4c25b5404115f1c5e941a429fa7a1381c8ed5bf60ac2add9b2f9d55e0c888fe9\",\"csrf_folloAjax_unfollow\":\"010003000000503297479b5e15799411c603e97a1115c28551bf720cebaff03915c56df7d991d22cf7b007fd6de0dcc94593151a7e6a465d45c7a14bdc8ea1918715d6780e687f10472c2413e62618ed32d9c9c12a0d04\",\"pageId\":\"2047675\",\"useFolloAjaxCommands\":true,\"entityId\":\"twtoolsuperstore\",\"isSecure\":true,\"csrf_folloAjax_follow\":\"010003000000502b51091778c6e4b06c3ca4c8acc40c24f000cc5857ab7136fa8cb12060ceba81a20a72214a8e8a19cfc3565d8d13b971d8607c7ec0016797289dc2564ba1e3cd29a58dd32ee11e84fd907c2eb27b58ed\",\"entityType\":\"person\",\"isHeartSaveVersion\":true,\"entityName\":\"twtoolsuperstore\"}],['com.ebay.raptor.vi.soi.soiLayer','w1-12',{\"inline\":true,\"dummyCntrId\":\"vi-soi-dummy\",\"overlayId\":\"vi-see-allitms-ovly\"}],['com.ebay.raptor.vi.utils.Timer.TimerUtils','w1-13',{\"offScreenMessage\":\"(updates every ##1## seconds)\",\"timeLeftOffScreenMessage\":\"Time left \"}],['com.ebay.raptor.vi.ValidateQuantity','w1-14',{\"errorIcon\":\"w1-14-_errIcon\",\"isSupressQty\":false,\"anotherfield\":\"$qty_dummy1$\",\"isMinRemnantSetEnabled\":false,\"maxQty\":0,\"errorMsg\":\"w1-14-_errMsg\",\"remainingQty\":36,\"dummyQty\":\"$qty_dummy$\",\"errTextMap\":[\"w1-14_qtyErr_0\",\"w1-14_qtyErr_1\",\"w1-14_qtyErr_2\",\"w1-14_qtyErr_3\",\"w1-14_qtyErr_4\",\"w1-14_qtyErr_5\",\"w1-14_qtyErr_6\"],\"qtyBoxId\":\"qtyTextBox\",\"disableQtyCheck\":false,\"remnantQtyValue\":0,\"availQtyThreshold\":10,\"isValid\":\"isValid\"}],['raptor.vi.ActionPanel','w1-15',{\"isEncodeBOPISUrl\":true,\"binBtnId\":\"binBtn_btn\",\"binEnabled\":\"f\",\"isBOPIS\":true,\"isCartLyr\":false,\"isStreamLineBinLayer\":\"t\",\"isFeedbackLinkActive\":false,\"isSMEInterruptLayer\":false,\"noGuestCart\":false,\"isSubmitButtonPresent\":false,\"isEUSite\":true,\"throbberMessageATC_4\":\"It’s almost ready for you\",\"throbberMessageATC_2\":\"Still adding...\",\"binURL\":\"https:\\u002F\\u002Foffer.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?BinController&rev=723&fromPage=2047675&item=262745174897&gch=1&fb=1\",\"isBOPISOnly\":false,\"isRedesign\":false,\"isPUDO\":true,\"disableBINBtnFeatureON\":true,\"errTitleATC\":\"Oops, there was a problem\",\"errMsgATC\":\"The item you've selected wasn't added to your basket. \",\"savingsRateUpperCase\":\"OFF\",\"itemId\":262745174897,\"isATCRedesignLayerV1Active\":true,\"isEbayPlusUpsellLinkPresent\":false,\"siteId\":3,\"qtyBoxId\":\"qtyTextBox\",\"savingsRateLowerCase\":\"off\",\"isBidOfferTrackingEnabled\":true,\"isValid\":\"isValid\",\"isModel\":{\"largeButton\":true,\"itmCondition\":\"New\",\"normalizedItemCondition\":\"brand new\",\"conditionId\":1000,\"binPrice\":\"£17.25\",\"binPriceDouble\":\"17.25\",\"binPriceOnly\":\"17.25\",\"convertedBinPrice\":null,\"binURL\":\"https:\\u002F\\u002Foffer.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?BinController&rev=723&fromPage=2047675&item=262745174897&gch=1&fb=1\",\"binGXOUrl\":null,\"binXOUrl\":\"https:\\u002F\\u002Fpay.ebay.co.uk\\u002Fxo?action=create&rypsvc=true&pagename=ryp&TransactionId=-1&item=262745174897\",\"bidPrice\":null,\"bidPriceDouble\":null,\"bidPriceOnly\":null,\"convertedBidPrice\":null,\"maxBidPrice\":null,\"boSalePrice\":null,\"boSalePriceDouble\":null,\"boSalePriceOnly\":null,\"priceInMoney\":null,\"convertedPriceInMoney\":null,\"mtpYourPickPrice\":null,\"currencySymbol\":\"&#163;\",\"bidURL\":null,\"bids\":0,\"bidCurrencySymbol\":null,\"bidCounterModel\":null,\"timeLeftUrgency\":\"LOW\",\"showBidsCount\":false,\"showBidsCountHot\":false,\"bestOfferURL\":null,\"bestOfferLayerURL\":null,\"signInBestOfferLayerURL\":null,\"shopCartURL\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fatc?item=262745174897&atc=true&srt=0100030000005032dfdecc1f8407ebcf3317ed52d5343d121e4014c13f8ddc005d997af55b870a2dea13821bd2f7c978731a3643ec69b5e9ebdda20e900470956248c25e9af0b8f53269640e475901810778392708d923&format=json&ssPageName=CART:ATC\",\"shopCartPageURL\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fadd?srt=01000300000050a62c064403d05f3f346c6f6c726fe0269632eb17d22356cb1af7616ddf2cfd7d3d52a01fe36a6cd9fb3b05f2f4e3a50db83464fbb59c7ba254b8ba8cbd8dad1b64f6f2dc4280d4cd013cd2168941da13&ssPageName=VIFS:ATC\",\"binLayerURL\":null,\"duringCheckoutLayerUrl\":null,\"signInBinLayerURL\":null,\"minToBidPrice\":null,\"minToBidLocalPrice\":null,\"versionQtyTxt\":null,\"lotSize\":0,\"remainQty\":36,\"maxQtyPerBuyer\":0,\"totalQty\":856,\"totalOffers\":0,\"qtyPurchased\":820,\"totalBids\":0,\"uniqueBidderCount\":0,\"showUniqueBidderCount\":false,\"bidHistoryUrl\":null,\"showQtyPurchased\":false,\"showQtyRemaining\":false,\"txnSaleDate\":null,\"startTime\":1480695324000,\"endTime\":1550679324000,\"endTimeMs\":1550679324000,\"timeLeft\":{\"daysLeft\":27,\"hoursLeft\":6,\"minutesLeft\":33,\"secondsLeft\":41},\"locale\":\"en_GB\",\"duringCheckoutGXOUrl\":null,\"duringCheckoutXOUrl\":\"https:\\u002F\\u002Fpay.ebay.co.uk\\u002Fxo?action=create&rypsvc=true&pagename=ryp&TransactionId=-1&item=262745174897\",\"itemRevisionTimestamp\":1548146266000,\"goTogetherModel\":null,\"groupGiftModel\":null,\"partnerRedirectWebsite\":null,\"partnerRedirectButtonText\":null,\"currentVatPrice\":null,\"binVatPrice\":null,\"currentVatConvertedPrice\":null,\"binVatConvertedPrice\":null,\"disableMerchOnVI\":false,\"quantity\":null,\"currencyCode\":\"GBP\",\"itmConditionVisibilityKey\":null,\"viewedSeoFrameUrl\":null,\"flowersCutoffTime\":15,\"showVehiclePriceComparison\":false,\"vehiclePriceComparison\":null,\"financePartnerUrl\":null,\"vehicleInspectionUrl\":null,\"rateKickUrl\":null,\"geicoUrl\":null,\"weGoLookUrl\":null,\"itemUrl\":null,\"enableAfreshInterval\":true,\"cartLayerURL\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fatc\",\"itemDescSnippet\":\"Forged, one piece steel construction. Ergonomically designed grip reduces fatigue and allows for multiple grip positions. Images shown for illustration purposes only. Non-slip grip with shock reduction.\",\"qtyNotAvailable\":false,\"buyerLoginNameSha\":null,\"giftExperience\":null,\"liteUrlPrefixForListing\":null,\"mockATC\":false,\"mockATCURL\":null,\"atcViElig\":false,\"streamLineBinModel\":{\"roverUrlForTestTreatment\":null,\"gxoUrl\":\"https:\\u002F\\u002Fpay.ebay.co.uk\\u002Fgxo?action=create&rypsvc=true&pagename=ryp&TransactionId=-1&rev=723&item=262745174897\"},\"ca65Warning\":null,\"expired\":false,\"siteId\":3,\"bin\":true,\"ended\":false,\"oid\":false,\"binAvailable\":true,\"listingSiteId\":3,\"bopisatfredesign\":true,\"itemInCart\":false,\"pudoavailable\":true,\"pudoSymphonyPilotSeller\":false,\"shopCart\":true,\"newCVIPView\":false,\"gtc\":true,\"autoVehicle\":false,\"buyerGuaranteeEnabled\":true,\"discountedPrice\":null,\"autoCars\":false,\"autoMotorCycles\":false,\"binLayerEnabled\":false,\"binLayerSigninRedirectVIEnabled\":false,\"binLayer\":false,\"itemRevised\":true,\"buyerGuaranteeUnavailabilityReasonCode\":\"NO_COVERAGE\",\"bid\":false,\"won\":false,\"reserveNotMet\":false,\"sold\":false,\"euBasePrice\":null,\"pricingTreatment\":\"NONE\",\"minAdvertisedPriceExposure\":\"NONE\",\"originalRetailPrice\":null,\"amtSaved\":null,\"soldOnEBay\":false,\"soldOffEBay\":false,\"savingsPercent\":null,\"promoSaleOn\":false,\"promoSaleTimeLeft\":null,\"originalPrice\":null,\"discountedPercentage\":0,\"bulkAddToCartEnabled\":true,\"bulkShopCartURL\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fadd?srt=01000300000050474f466170c16854c051672acf9506e97b33679a4f4cb073d1215411348b90059a378ae1cacf67ea5acd48806001b43dad38e3ed227fe632495a6f84cd1453bf1943224fa934694c8fc48bb8637b3782&ssPageName=CART:ATC\",\"bestOffer\":false,\"itemBinnable\":true,\"classifiedAd\":false,\"availableQuantityThreshold\":10,\"sellerView\":false,\"supressQty\":false,\"itemDescSnippetsEnabledV1\":true,\"itemDescSnippetsEnabledV2\":false,\"motorsComScoreTracking\":null,\"freeVHREnabled\":false,\"financeTabEnabled\":false,\"buildRateKickLink\":false,\"buildGEICOLink\":false,\"vppEnabled\":false,\"autoPowerSports\":false,\"addVehicleInspectionRTM\":false,\"redPaymentsAbfEnabled\":true,\"timeLeftUrgencyRed\":true,\"swapButtonColors\":false,\"buyerGuaranteePCEnabled\":true,\"bidingAvailable\":false,\"showBOPIS\":false,\"bopisavailableForUser\":false,\"encodeBOPISURL\":true,\"showEBN\":false,\"duringCheckoutUrl\":\"https:\\u002F\\u002Foffer.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?BinController&rev=723&fromPage=2047675&item=262745174897&gch=1&fb=1\",\"addXOQuantityParam\":false,\"binController\":false,\"binOnLoad\":false,\"bidMore\":false,\"buyAnother\":false,\"defaultBulkShopCartURL\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fadd?item=iid:262745174897,qty:1&srt=0100030000005032964d152fb8b8d6fe69bffb09ff90bbffac89f2cd28d83238c1aa29906632d376ce127929b0866a68deef6269fe9696cdb2a597d4af08b2dfe8e3710c004c97ecf592d4a27605b0e89f13c72c3548e1&ssPageName=CART:ATC\",\"cartLayerEnabled\":false,\"halfOnCore\":false,\"conditionDetailEnabled\":false,\"conditionDetail\":null,\"nonJS\":false,\"dealsItem\":false,\"scheduled\":false,\"buyerView\":false,\"origClosedViewItemUrl\":null,\"bestOfferLayer\":false,\"boOnLoad\":false,\"realEstateItem\":false,\"showBidLayer\":true,\"oneClickBid\":false,\"saveOnOriginalRetailPrice\":null,\"saveOnOriginalPrice\":null,\"minRemnantSetEnabled\":false,\"remnantSetValue\":0,\"signedIn\":false,\"caautoVehicle\":false,\"ebpbannerRedesign\":true,\"itemRevisionDate\":\"22 Jan, 2019 08:37:46 GMT\",\"itemRevisionLink\":\"https:\\u002F\\u002Fcgi.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?ViewItemRevisionDetails&item=262745174897&rt=nc&_trksid=p2047675.l2569\",\"percentOff\":null,\"adminView\":false,\"privateSale\":false,\"vatIncluded\":false,\"vatExcluded\":false,\"flowersCatItem\":false,\"bincounterEnabled\":false,\"abincounterEnabled\":true,\"relativeEndTime\":false,\"digitalGiftCard\":false,\"dsplStpHlpIcon\":false,\"dsplStpLblVar\":false,\"hideStpHlpIcon\":false,\"liveAuctionItem\":false,\"topProduct\":false,\"reviewOffer\":false,\"versionView\":false,\"printView\":false,\"previewItem\":false,\"belowMarket\":false,\"emailDigitalDeliveryItem\":false,\"multiQtyEnabledForGifting\":false,\"atcurl\":\"www.vinode1.stratus.ebay.com\",\"signInUrlWithCartLayerReturn\":null,\"ushipEnabled\":false,\"showDealsItemSignal\":false,\"liveAuctionHidePayNow\":false,\"buildWeGoLookLink\":false,\"key\":\"ItemSummary\"}},0,0,0,['com.ebay.raptor.vi.VIButton','w1-16',{\"isCSS3\":true,\"mouseDownClass\":\"md\",\"btnId\":\"binBtn_btn\"},'w1-15','binBtn'],['raptor.vi.StreamLineBinLayer','w1-17',{\"gxoBtnId\":\"sbin-gxo-btn\",\"olayItemImgId\":\"sbin-image\",\"signinBtnId\":\"sbin-signin-btn\",\"imgNaTxt\":\"Image not available\",\"olayImgUrl\":\"https:\\u002F\\u002Fi.ebayimg.com\\u002Fimages\\u002Fg\\u002FBtMAAOSwldRaAxD-\\u002Fs-l500.jpg\",\"gXoUrl\":\"https:\\u002F\\u002Fpay.ebay.co.uk\\u002Fgxo?action=create&rypsvc=true&pagename=ryp&TransactionId=-1&rev=723&item=262745174897\",\"itemImgId\":\"icImg\",\"streamLineBinOlyId\":\"streamLineBinOly\",\"imgNaUrl\":\"http:\\u002F\\u002Fp.ebaystatic.com\\u002Faw\\u002Fpics\\u002Fcmp\\u002Ficn\\u002FiconImgNA_96x96.gif\"},0,0,0,['ui.Overlay','w1-18',{\"ariaLable\":\"Buy it now modal is opened. Escape or Close will close the layer.\",\"id\":\"streamLineBinOly\",\"accessible\":true,\"enableAutoFocus\":true,\"noFixedPos\":true,\"closeTitle\":\"Close button. This closes the Buy it now modal. Returning you to the item listing.\",\"ariaDesc\":\"You're inside the Buy it now modal.\",\"modal\":true,\"hasCloseButton\":true},'w1-17','streamLineBinOly']],['ebay.viewItem.Cart','w1-19',{\"id\":\"atcRedesignId_btn\",\"isBulkCart\":true,\"cartOlayId\":\"atcRedesignId_olay\",\"hasWrtyIntercept\":false,\"cartUrl\":\"https:\\u002F\\u002Fcart.payments.ebay.co.uk\\u002Fsc\\u002Fadd?srt=01000300000050474f466170c16854c051672acf9506e97b33679a4f4cb073d1215411348b90059a378ae1cacf67ea5acd48806001b43dad38e3ed227fe632495a6f84cd1453bf1943224fa934694c8fc48bb8637b3782&ssPageName=CART:ATC\",\"atcRedesignOverlayId\":\"atcRedesignId_overlay-atc-container\",\"itemId\":262745174897,\"isATCRedesignLayerV1Active\":true,\"cartBtnId\":\"atcRedesignId_btn\"},'w1-15','atcRedesignId',0,['ui.Overlay','w1-20',{\"ariaLable\":\"Add to basket window open. Escape or Close will close the layer and refresh the page.\",\"id\":\"atcRedesignId_overlay-atc-container\",\"ns\":\"atcOlay oly\",\"darkerMask\":true,\"accessible\":true,\"noFixedPos\":true,\"modal\":true,\"hasCloseButton\":false},'w1-19','atcRedesignId_overlay-atc-container'],['com.ebay.raptor.vi.VIButton','w1-21',{\"isCSS3\":true,\"mouseDownClass\":\"md\",\"btnId\":\"atcRedesignId_btn\"},'w1-19','atcRedesignId']]],['ebay.viewItem.AddToWatchBtmLnkR1','w1-22',{\"signInUrl\":\"https:\\u002F\\u002Fsignin.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?SignIn&ru=https%3A%2F%2Fcgi.ebay.co.uk%2Fws%2FeBayISAPI.dll%3FViewItem%26item%3D262745174897%26actionType%3Dsinginformore\",\"atwtxt\":\"Add to Watch list\",\"isWatched\":false,\"watchName\":\"Watch\",\"watchersElmSelector\":\"#vi-bybox-watchers-container #vi-bybox-watchers\",\"removeListUrl\":\"https:\\u002F\\u002Fmy.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?MyEbayBeta&SubmitAction.DeleteListEntries=x&vi=true&srt=01000300000040448f139f7e5eb5a33698a8c1e297bd5ccf85682f2595dae1cc3fe27e077b7013854477a5d03481653f726f08a86429680c49044a824e120592f450fd13962518\",\"itemId\":\"262745174897\",\"watchFullId\":\"vi-atw-full\",\"defaultWatchCount\":337,\"isUserSignedIn\":false,\"isItemEnded\":false,\"isGuestWatchUser\":false,\"myEbayWatchListUrl\":\"https:\\u002F\\u002Fmy.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?MyEbayBeta&CurrentPage=MyeBayNextWatching&ssPageName=STRK:ME:LNLK:MEWAX\",\"watchersLabel\":\"\\u003Cspan class=\\\"vi-buybox-watchcount\\\">-1\\u003C\\u002Fspan> watching\",\"watwtxt\":\"Watching\",\"removeFromWatchBaseUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002Fmyb\\u002FWatchListDelete?itemIds=262745174897\",\"isNewRaptorCmd\":true,\"addToWatchUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002Fmyb\\u002FWatchListAdd?_trksid=p2047675.l1360&SubmitAction.AddToListVI=x&item=262745174897&rt=nc&srt=01000300000050b1e44b5de2d26b9dc6197d2c743041ece631ac7093723ef734c0496b8c05336eba38b3c9157762d3f34b1ace9bf12ff8ddd3a7e187294973043793c0e3a15c10ae1c89c8de72ec67d2e8f32c333603b6&wt=9fcdab228c5caba3f365c5bd0278b26d&ssPageName=VIP:watchlink:top:en&sourcePage=4340\",\"msku\":false,\"watchlnkId\":\"vi-atl-lnk\",\"watchListId\":\"-99\",\"isDeleteWatchRaptorCmd\":true,\"watcherLabel\":\"\\u003Cspan class=\\\"vi-buybox-watchcount\\\">-1\\u003C\\u002Fspan> watching\"}],['ebay.viewItem.Incentives','w1-23',{\"id\":\"incentives\",\"incentiveDiv\":\"incentiveDiv\",\"isRewardsCall\":false,\"rewardsDiv\":\"rewardsDiv\",\"isRewardsJSON\":false,\"ppcDiv\":\"ppcDiv\",\"isShowNectarPoints\":true,\"isShowVoucher\":false,\"bmlDiv\":\"bmlDiv\",\"couponDiv\":\"couponDiv\",\"itemId\":262745174897}],['ui.Overlay','w1-24',{\"ariaLable\":\"Delivery help overlay is opened.\",\"position\":\"pointer\",\"id\":\"imprtoly\",\"pointerType\":\"horizontal\",\"trigger\":\"imprthlp\",\"closeOnBodyClick\":true,\"accessible\":true,\"enableAutoFocus\":true,\"closeTitle\":\"Close button. This closes the delivery help overlay.\",\"ariaDesc\":\"You are inside the delivery help overlay.\",\"hasCloseButton\":true}],['ui.Overlay','w1-25',{\"position\":\"pointer\",\"id\":\"w1-25-overlay\",\"pointerType\":\"horizontal\",\"trigger\":\"1DDHelp\",\"closeOnBodyClick\":true,\"hasCloseButton\":true}],['raptor.vi.InsCalcOverlay','w1-26',{\"insCalcErrId\":\"INS_CALC_ERR_DIV_ID\",\"insCalcOlyId\":\"insCalc\",\"insCalcOlyDivId\":\"INS_CALC_DIV_ID\",\"insCalcTimeout\":3500,\"insCalcUrl\":\"https:\\u002F\\u002Fwww.paypal.com\\u002Fuk\\u002Fwebapps\\u002Fmpp\\u002Febay-paypalcredit?enableApply=true&amount=17.25&currency=GBP\",\"insCalcTrbrId\":\"INS_CALC_TRBR_ID\"},0,0,0,['ui.Overlay','w1-27',{\"ariaLable\":\"Instalment calculator layer is opened. Escape or Close will close the layer.\",\"position\":\"center\",\"id\":\"insCalc\",\"width\":\"auto\",\"accessible\":true,\"enableAutoFocus\":true,\"noFixedPos\":true,\"closeTitle\":\"Close button. This closes the Instalment calculator layer.\",\"ariaDesc\":\"You are inside the Instalment calculator overlay.\",\"modal\":true,\"hasCloseButton\":true},'w1-26','insCalc']],['com.ebay.raptor.vi.isum.buyerProtection','w1-28',{\"isAutoVehicle\":false,\"siteUrl\":\"https%3A%2F%2Fpages.ebay.co.uk%2Febaybuyerprotection%2Findex.html\",\"siteId\":3,\"ebpVarWidthId\":\"ebpVarWidth\",\"isTwoCol\":false,\"ebpHdrId\":\"ebpHdr\"}],['ui.Tab','w1-29',{\"id\":\"viTabs\",\"isDS3DeepLinksV2\":false},0,0,0,['raptor.vi.CategoryList','w1-30',{\"refreshCateUrl\":\"https:\\u002F\\u002Fcgi6.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?AutoRefreshStoreCategories&storeid=20862213\"}],['com.ebay.raptor.vi.Description','w1-31',{\"tgto\":\"https:\\u002F\\u002Fvi.vipr.ebaydesc.com\",\"descSnippetEnabled\":false,\"logDescTimer\":true}],['com.ebay.raptor.vi.shipping.CalculateShipping','w1-32',{\"isEBNOnly\":false,\"isPUDO\":true,\"zipBx\":\"shZipCode\",\"isNewEPLUS\":false,\"isPaypalAccepted\":true,\"isBOPIS\":false,\"isPaidPUDO\":false,\"countryZipMap\":{\"186\":true,\"16\":true,\"2\":true,\"101\":true,\"71\":true,\"3\":true,\"23\":true,\"163\":true,\"77\":true,\"146\":true,\"193\":true,\"15\":true},\"qtyBx\":\"shQuantity\",\"id\":\"sh_calc\",\"isGetRatesEnabled\":true,\"getRatesBtn\":\"shGetRates\",\"isGSPEnabled\":false,\"siteId\":3,\"isDePudoEnabled\":true,\"getRatesUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002Fitm\\u002Fgetrates?item=262745174897&_trksid=p2047675.l2682\",\"remQty\":36,\"countryDd\":\"shCountry\",\"isEPLUSOnly\":false},'w1-29','sh_calc']],['ui.Overlay','w1-33',{\"id\":\"byrfdbk_modal\",\"trigger\":\"byrfdbk_atf_lnk\",\"width\":\"544\",\"accessible\":true,\"enableAutoFocus\":true,\"modal\":true,\"hasCloseButton\":true}],['ebay.viewItem.BuyerFeedback','w1-34',{\"modalEnabled\":true}],['com.ebay.raptor.vi.reviews.ProductReviewRedesignV2','w1-35',{\"readFullReviewTxt\":\"Read full review\",\"marketplaceid\":\"EBAY-GB\",\"cosgrcEndpoint\":\"https:\\u002F\\u002Fapi.ebay.com\\u002Fbuy\\u002Freview\\u002Fv1\",\"baseDomain\":\"ebay.co.uk\",\"isReviewsMediaImagesEnabled\":true,\"currentDomain\":\"ebay.co.uk\",\"itemId\":262745174897,\"isUserSignedIn\":false,\"review\":\"Read full review\"},0,0,0,['com.ebay.raptor.vi.reviews.ProductReviewsImagesOverlay','w1-36'],['com.ebay.raptor.vi.reviews.ProductReviewsImagesOverlay','w1-37'],['com.ebay.raptor.vi.reviews.ProductReviewsImagesOverlay','w1-38'],['com.ebay.raptor.vi.reviews.ProductReviewsImagesOverlay','w1-39'],['com.ebay.raptor.vi.reviews.ProductReviewsImagesOverlay','w1-40']],['com.ebay.raptor.vi.isum.smartBackTo','w1-41',{\"viBackToUrl\":\"https:\\u002F\\u002Fwww.ebay.co.uk\\u002F\",\"smtBackToAnchorId\":\"smtBackToAnchorBTF\",\"showIcon\":false,\"isBacktoSearch\":false}],['com.ebay.raptor.vi.lockedheader.LockedHeaderCore','w1-42',{\"mmBinPriceId\":\"mm-saleDscPrc\",\"bidFormat\":\"current bid\",\"lkBinBtnId\":\"#vi-lkdhdr-bin-btn\",\"isV4Version\":false,\"binPriceId\":\"prcIsum\",\"isMSKU\":false,\"isGeo\":false,\"origBidBtnId\":\"#bidBtn_btn\",\"lkAddToWatchListBtnId\":\"#vi-lkdhdr-add-wlist-btn\",\"addToWatchListLabel\":\"Add to Watch list\",\"lkAddedToCartlnkId\":\"#vi-lkdhdr-atcLnk\",\"disableLkhdrForIE\":false,\"buttonsCntrId\":\"vi-lhdr-actions\",\"timeLeftId\":\"bb_tlft\",\"lockedHeaderId\":\"lkd_hdr\",\"freeShipLabel\":\"Free P&amp;P\",\"mmOriginalPriceId\":\"mm-saleOrgPrc\",\"mapBinPrice\":\"£17.25\",\"bidPriceId\":\"prcIsum_bidPrice\",\"tabId\":\"#viTabs\",\"lkTimeLeftId\":\"lhdr-timelft\",\"lkBidBtnId\":\"#vi-lkdhdr-bid-btn\",\"addedToWatchLabel\":\"Added to your \\u003Ca href=\\\"https:\\u002F\\u002Fmy.ebay.co.uk\\u002Fws\\u002FeBayISAPI.dll?MyEbayBeta&amp;CurrentPage=MyeBayNextWatching&amp;ssPageName=STRK:ME:LNLK:MEWAX\\\">Watch list\\u003C\\u002Fa>\",\"binFormat\":\"Buy it now\",\"lkTitleId\":\"#lhdr-ttl\",\"mapOriginalPriceId\":\"orgPrc\",\"origBinBtnId\":\"#binBtn_btn\",\"lkAddToCartBtnId\":\"#vi-lkdhdr-cart-btn\",\"lkAddToWatchListAddedBtnId\":\"#vi-lkdhdr-added-wlist-btn\",\"isMAPItem\":false,\"origWatchListBtnId\":\"#watchLink\",\"origCartBtnId\":\"#isCartBtn_btn\"},0,0,0,['com.ebay.raptor.vi.VIButton','w1-43',{\"isCSS3\":true,\"mouseDownClass\":\"md\",\"btnId\":\"vi-lkdhdr-bin-btn\"},'w1-42','vi-lkdhdr-bin']],['ui.Overlay','w1-44',{\"position\":\"customize\",\"id\":\"vibtfimgoly\",\"trBgMask\":true,\"closeOnBodyClick\":true,\"noFixedPos\":false,\"largeCloseButton\":false,\"modal\":true,\"hasCloseButton\":true}],['ebay.viewItem.Scandal','w1-45',{\"adsPbPids\":[100562,100563,100564,100565,100566,100567,100568,100610,100916,100917,100918,100919,100920,100921,100922,100923,100938,100939,100726,100727],\"adsMap\":{\"100565\":{\"ad\":{\"placementId\":100565,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":4570,\"scenario\":\"100565\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"ticket\":\"36770e1860b94dd48d6c02a70cf377da\",\"env\":\"production\",\"publishType\":3,\"publishDelay\":100,\"napkinPublishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"isLazyLoad\":false,\"lazyLoadPosition\":50,\"inViewRefresh\":false,\"isGSSEnabled\":true,\"sandAdUnit\":\"ebay.uk.x.vlb\"},\"targetingParameters\":{},\"json\":\"{\\\"targetingParameters\\\":{},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100565,\\\"provider\\\":\\\"sandwich\\\",\\\"providerParameters\\\":{\\\"ticket\\\":\\\"36770e1860b94dd48d6c02a70cf377da\\\",\\\"env\\\":\\\"production\\\",\\\"publishType\\\":3,\\\"publishDelay\\\":100,\\\"napkinPublishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"isLazyLoad\\\":false,\\\"lazyLoadPosition\\\":50,\\\"inViewRefresh\\\":false,\\\"isGSSEnabled\\\":true,\\\"sandAdUnit\\\":\\\"ebay.uk.x.vlb\\\"}}\",\"provider\":\"sandwich\"},\"rtmId\":100565},\"100567\":{\"ad\":{\"placementId\":100567,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":4570,\"scenario\":\"100567\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"size\":{\"height\":35,\"width\":375},\"networkId\":\"3847\",\"adUnitId\":\"ebay.uk.vip\\u002FRTM_699\",\"publishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"sizes\":[{\"height\":35,\"width\":375}],\"isGSSEnabled\":true,\"env\":\"production\"},\"targetingParameters\":{\"ap\":\"Scandal\",\"cat\":[\"11700\",\"631\",\"3244\",\"20763\"],\"iid\":\"262745174897\",\"it\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"ip\":\"23\",\"ccode\":\"GBP\",\"if\":\"b\",\"smdid\":\"3814064909165225531906AAAAAAAAAA\",\"cg\":\"6e2d44d31620ac1ec5c6ac63ff6f4085\",\"us\":\"13\",\"um\":\"0\",\"ot\":\"1\",\"fvi\":\"11700\",\"svi\":\"631\",\"tvi\":\"3244\",\"fse\":\"11700\",\"kw\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"lkw\":\"hammer\",\"cid\":\"0\",\"nc\":\"0\",\"rd\":\"19691231\",\"fm\":\"0\",\"sfm\":\"0\",\"ic\":\"0\",\"pr\":\"20\",\"xp\":\"20\",\"np\":\"20\",\"u\":\"bcb5e43c5b364abaadd6925b38a81cc4\",\"bb\":\"0\",\"dd\":\"0\",\"c2c\":\"0\",\"et\":[],\"ipp\":\"0\",\"iccr\":\"0\",\"npa\":\"0\",\"gdprUser\":\"1\",\"gdprConsent\":\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\",\"gdprObj\":\"{\\\"cmpId\\\":125,\\\"cmpVersion\\\":1,\\\"cookieVersion\\\":1,\\\"consentScreen\\\":\\\"1.0.0\\\",\\\"consentLanguage\\\":\\\"en\\\",\\\"maxVendorId\\\":502,\\\"selectedPurposeIds\\\":[1,2,3,4,5],\\\"selectedVendorIds\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\"vendorListVersion\\\":91,\\\"created\\\":\\\"2018-08-08T15:47:22.795Z\\\",\\\"lastUpdated\\\":\\\"2018-08-08T15:47:22.795Z\\\"}\"},\"json\":\"{\\\"targetingParameters\\\":{\\\"ap\\\":\\\"Scandal\\\",\\\"cat\\\":[\\\"11700\\\",\\\"631\\\",\\\"3244\\\",\\\"20763\\\"],\\\"iid\\\":\\\"262745174897\\\",\\\"it\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"ip\\\":\\\"23\\\",\\\"ccode\\\":\\\"GBP\\\",\\\"if\\\":\\\"b\\\",\\\"smdid\\\":\\\"3814064909165225531906AAAAAAAAAA\\\",\\\"cg\\\":\\\"6e2d44d31620ac1ec5c6ac63ff6f4085\\\",\\\"us\\\":\\\"13\\\",\\\"um\\\":\\\"0\\\",\\\"ot\\\":\\\"1\\\",\\\"fvi\\\":\\\"11700\\\",\\\"svi\\\":\\\"631\\\",\\\"tvi\\\":\\\"3244\\\",\\\"fse\\\":\\\"11700\\\",\\\"kw\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"lkw\\\":\\\"hammer\\\",\\\"cid\\\":\\\"0\\\",\\\"nc\\\":\\\"0\\\",\\\"rd\\\":\\\"19691231\\\",\\\"fm\\\":\\\"0\\\",\\\"sfm\\\":\\\"0\\\",\\\"ic\\\":\\\"0\\\",\\\"pr\\\":\\\"20\\\",\\\"xp\\\":\\\"20\\\",\\\"np\\\":\\\"20\\\",\\\"u\\\":\\\"bcb5e43c5b364abaadd6925b38a81cc4\\\",\\\"bb\\\":\\\"0\\\",\\\"dd\\\":\\\"0\\\",\\\"c2c\\\":\\\"0\\\",\\\"et\\\":[],\\\"ipp\\\":\\\"0\\\",\\\"iccr\\\":\\\"0\\\",\\\"npa\\\":\\\"0\\\",\\\"gdprUser\\\":\\\"1\\\",\\\"gdprConsent\\\":\\\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\\\",\\\"gdprObj\\\":\\\"{\\\\\\\"cmpId\\\\\\\":125,\\\\\\\"cmpVersion\\\\\\\":1,\\\\\\\"cookieVersion\\\\\\\":1,\\\\\\\"consentScreen\\\\\\\":\\\\\\\"1.0.0\\\\\\\",\\\\\\\"consentLanguage\\\\\\\":\\\\\\\"en\\\\\\\",\\\\\\\"maxVendorId\\\\\\\":502,\\\\\\\"selectedPurposeIds\\\\\\\":[1,2,3,4,5],\\\\\\\"selectedVendorIds\\\\\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\\\\\"vendorListVersion\\\\\\\":91,\\\\\\\"created\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\",\\\\\\\"lastUpdated\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\"}\\\"},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100567,\\\"provider\\\":\\\"dfpNativeDisplay\\\",\\\"providerParameters\\\":{\\\"size\\\":{\\\"height\\\":35,\\\"width\\\":375},\\\"networkId\\\":\\\"3847\\\",\\\"adUnitId\\\":\\\"ebay.uk.vip\\u002FRTM_699\\\",\\\"publishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"sizes\\\":[{\\\"height\\\":35,\\\"width\\\":375}],\\\"isGSSEnabled\\\":true,\\\"env\\\":\\\"production\\\"}}\",\"provider\":\"dfpNativeDisplay\"},\"rtmId\":100567},\"100938\":{\"ad\":{\"placementId\":100938,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":5432,\"scenario\":\"100938\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"size\":{\"height\":90,\"width\":728},\"networkId\":\"3847\",\"adUnitId\":\"ebay.uk.vip\\u002Fatf_desktop\",\"publishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"sizes\":[{\"height\":90,\"width\":728},{\"height\":90,\"width\":970}],\"isGSSEnabled\":true,\"env\":\"production\"},\"targetingParameters\":{\"ap\":\"Scandal\",\"cat\":[\"11700\",\"631\",\"3244\",\"20763\"],\"iid\":\"262745174897\",\"it\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"ip\":\"23\",\"ccode\":\"GBP\",\"if\":\"b\",\"smdid\":\"3814064909165225531906AAAAAAAAAA\",\"cg\":\"6e2d44d31620ac1ec5c6ac63ff6f4085\",\"us\":\"13\",\"um\":\"0\",\"ot\":\"1\",\"fvi\":\"11700\",\"svi\":\"631\",\"tvi\":\"3244\",\"fse\":\"11700\",\"kw\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"lkw\":\"hammer\",\"cid\":\"0\",\"nc\":\"0\",\"rd\":\"19691231\",\"fm\":\"0\",\"sfm\":\"0\",\"ic\":\"0\",\"pr\":\"20\",\"xp\":\"20\",\"np\":\"20\",\"u\":\"e477c65009f64ff58b779ad0ca71f817\",\"bb\":\"0\",\"dd\":\"0\",\"c2c\":\"0\",\"et\":[],\"ipp\":\"0\",\"iccr\":\"0\",\"npa\":\"0\",\"gdprUser\":\"1\",\"gdprConsent\":\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\",\"gdprObj\":\"{\\\"cmpId\\\":125,\\\"cmpVersion\\\":1,\\\"cookieVersion\\\":1,\\\"consentScreen\\\":\\\"1.0.0\\\",\\\"consentLanguage\\\":\\\"en\\\",\\\"maxVendorId\\\":502,\\\"selectedPurposeIds\\\":[1,2,3,4,5],\\\"selectedVendorIds\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\"vendorListVersion\\\":91,\\\"created\\\":\\\"2018-08-08T15:47:22.795Z\\\",\\\"lastUpdated\\\":\\\"2018-08-08T15:47:22.795Z\\\"}\"},\"json\":\"{\\\"targetingParameters\\\":{\\\"ap\\\":\\\"Scandal\\\",\\\"cat\\\":[\\\"11700\\\",\\\"631\\\",\\\"3244\\\",\\\"20763\\\"],\\\"iid\\\":\\\"262745174897\\\",\\\"it\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"ip\\\":\\\"23\\\",\\\"ccode\\\":\\\"GBP\\\",\\\"if\\\":\\\"b\\\",\\\"smdid\\\":\\\"3814064909165225531906AAAAAAAAAA\\\",\\\"cg\\\":\\\"6e2d44d31620ac1ec5c6ac63ff6f4085\\\",\\\"us\\\":\\\"13\\\",\\\"um\\\":\\\"0\\\",\\\"ot\\\":\\\"1\\\",\\\"fvi\\\":\\\"11700\\\",\\\"svi\\\":\\\"631\\\",\\\"tvi\\\":\\\"3244\\\",\\\"fse\\\":\\\"11700\\\",\\\"kw\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"lkw\\\":\\\"hammer\\\",\\\"cid\\\":\\\"0\\\",\\\"nc\\\":\\\"0\\\",\\\"rd\\\":\\\"19691231\\\",\\\"fm\\\":\\\"0\\\",\\\"sfm\\\":\\\"0\\\",\\\"ic\\\":\\\"0\\\",\\\"pr\\\":\\\"20\\\",\\\"xp\\\":\\\"20\\\",\\\"np\\\":\\\"20\\\",\\\"u\\\":\\\"e477c65009f64ff58b779ad0ca71f817\\\",\\\"bb\\\":\\\"0\\\",\\\"dd\\\":\\\"0\\\",\\\"c2c\\\":\\\"0\\\",\\\"et\\\":[],\\\"ipp\\\":\\\"0\\\",\\\"iccr\\\":\\\"0\\\",\\\"npa\\\":\\\"0\\\",\\\"gdprUser\\\":\\\"1\\\",\\\"gdprConsent\\\":\\\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\\\",\\\"gdprObj\\\":\\\"{\\\\\\\"cmpId\\\\\\\":125,\\\\\\\"cmpVersion\\\\\\\":1,\\\\\\\"cookieVersion\\\\\\\":1,\\\\\\\"consentScreen\\\\\\\":\\\\\\\"1.0.0\\\\\\\",\\\\\\\"consentLanguage\\\\\\\":\\\\\\\"en\\\\\\\",\\\\\\\"maxVendorId\\\\\\\":502,\\\\\\\"selectedPurposeIds\\\\\\\":[1,2,3,4,5],\\\\\\\"selectedVendorIds\\\\\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\\\\\"vendorListVersion\\\\\\\":91,\\\\\\\"created\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\",\\\\\\\"lastUpdated\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\"}\\\"},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100938,\\\"provider\\\":\\\"dfpNativeDisplay\\\",\\\"providerParameters\\\":{\\\"size\\\":{\\\"height\\\":90,\\\"width\\\":728},\\\"networkId\\\":\\\"3847\\\",\\\"adUnitId\\\":\\\"ebay.uk.vip\\u002Fatf_desktop\\\",\\\"publishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"sizes\\\":[{\\\"height\\\":90,\\\"width\\\":728},{\\\"height\\\":90,\\\"width\\\":970}],\\\"isGSSEnabled\\\":true,\\\"env\\\":\\\"production\\\"}}\",\"provider\":\"dfpNativeDisplay\"},\"rtmId\":100938},\"100562\":{\"ad\":{\"placementId\":100562,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":4570,\"scenario\":\"100562\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"size\":{\"height\":250,\"width\":300},\"networkId\":\"3847\",\"adUnitId\":\"ebay.uk.x.vip\",\"publishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"sizes\":[{\"height\":250,\"width\":300}],\"refreshDelay\":30000,\"refreshCap\":6,\"isGSSEnabled\":true,\"env\":\"production\"},\"targetingParameters\":{\"ap\":\"Scandal\",\"cat\":[\"11700\",\"631\",\"3244\",\"20763\"],\"iid\":\"262745174897\",\"it\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"ip\":\"23\",\"ccode\":\"GBP\",\"if\":\"b\",\"smdid\":\"3814064909165225531906AAAAAAAAAA\",\"cg\":\"6e2d44d31620ac1ec5c6ac63ff6f4085\",\"us\":\"13\",\"um\":\"0\",\"ot\":\"1\",\"fvi\":\"11700\",\"svi\":\"631\",\"tvi\":\"3244\",\"fse\":\"11700\",\"kw\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\",\"lkw\":\"hammer\",\"cid\":\"0\",\"nc\":\"0\",\"rd\":\"19691231\",\"fm\":\"0\",\"sfm\":\"0\",\"ic\":\"0\",\"pr\":\"20\",\"xp\":\"20\",\"np\":\"20\",\"u\":\"1fb89eb0c1964bd7a32d96da5dc5abeb\",\"bb\":\"0\",\"dd\":\"0\",\"c2c\":\"0\",\"et\":[],\"ipp\":\"0\",\"iccr\":\"0\",\"npa\":\"0\",\"gdprUser\":\"1\",\"gdprConsent\":\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\",\"gdprObj\":\"{\\\"cmpId\\\":125,\\\"cmpVersion\\\":1,\\\"cookieVersion\\\":1,\\\"consentScreen\\\":\\\"1.0.0\\\",\\\"consentLanguage\\\":\\\"en\\\",\\\"maxVendorId\\\":502,\\\"selectedPurposeIds\\\":[1,2,3,4,5],\\\"selectedVendorIds\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\"vendorListVersion\\\":91,\\\"created\\\":\\\"2018-08-08T15:47:22.795Z\\\",\\\"lastUpdated\\\":\\\"2018-08-08T15:47:22.795Z\\\"}\"},\"json\":\"{\\\"targetingParameters\\\":{\\\"ap\\\":\\\"Scandal\\\",\\\"cat\\\":[\\\"11700\\\",\\\"631\\\",\\\"3244\\\",\\\"20763\\\"],\\\"iid\\\":\\\"262745174897\\\",\\\"it\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"ip\\\":\\\"23\\\",\\\"ccode\\\":\\\"GBP\\\",\\\"if\\\":\\\"b\\\",\\\"smdid\\\":\\\"3814064909165225531906AAAAAAAAAA\\\",\\\"cg\\\":\\\"6e2d44d31620ac1ec5c6ac63ff6f4085\\\",\\\"us\\\":\\\"13\\\",\\\"um\\\":\\\"0\\\",\\\"ot\\\":\\\"1\\\",\\\"fvi\\\":\\\"11700\\\",\\\"svi\\\":\\\"631\\\",\\\"tvi\\\":\\\"3244\\\",\\\"fse\\\":\\\"11700\\\",\\\"kw\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120\\\",\\\"lkw\\\":\\\"hammer\\\",\\\"cid\\\":\\\"0\\\",\\\"nc\\\":\\\"0\\\",\\\"rd\\\":\\\"19691231\\\",\\\"fm\\\":\\\"0\\\",\\\"sfm\\\":\\\"0\\\",\\\"ic\\\":\\\"0\\\",\\\"pr\\\":\\\"20\\\",\\\"xp\\\":\\\"20\\\",\\\"np\\\":\\\"20\\\",\\\"u\\\":\\\"1fb89eb0c1964bd7a32d96da5dc5abeb\\\",\\\"bb\\\":\\\"0\\\",\\\"dd\\\":\\\"0\\\",\\\"c2c\\\":\\\"0\\\",\\\"et\\\":[],\\\"ipp\\\":\\\"0\\\",\\\"iccr\\\":\\\"0\\\",\\\"npa\\\":\\\"0\\\",\\\"gdprUser\\\":\\\"1\\\",\\\"gdprConsent\\\":\\\"BOSLqVrOSLqVrB9ABAENBb-AAAAfaABgACA-wA\\\",\\\"gdprObj\\\":\\\"{\\\\\\\"cmpId\\\\\\\":125,\\\\\\\"cmpVersion\\\\\\\":1,\\\\\\\"cookieVersion\\\\\\\":1,\\\\\\\"consentScreen\\\\\\\":\\\\\\\"1.0.0\\\\\\\",\\\\\\\"consentLanguage\\\\\\\":\\\\\\\"en\\\\\\\",\\\\\\\"maxVendorId\\\\\\\":502,\\\\\\\"selectedPurposeIds\\\\\\\":[1,2,3,4,5],\\\\\\\"selectedVendorIds\\\\\\\":[1,2,3,4,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,100,101,102,104,105,108,109,110,111,112,113,114,115,119,120,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,167,168,169,170,171,173,174,175,177,178,179,180,182,183,184,185,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,205,206,208,209,210,211,212,213,214,215,216,217,218,221,223,224,225,226,227,228,229,230,231,232,234,235,236,237,238,239,240,241,242,243,244,245,246,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,268,269,270,272,273,274,275,276,277,278,279,280,281,282,284,285,287,288,289,290,291,293,294,295,297,298,299,301,302,303,304,308,309,310,311,312,314,315,316,317,318,319,320,321,323,325,326,328,329,330,331,333,335,336,337,338,339,340,341,343,344,345,346,347,349,350,351,354,357,358,359,360,361,362,365,366,368,369,371,373,374,375,376,377,378,380,381,382,384,385,387,388,389,390,391,392,394,395,397,398,400,402,403,404,405,407,408,409,410,412,413,415,416,418,421,422,423,424,425,426,427,428,429,430,431,434,435,436,438,440,442,443,444,447,448,449,450,452,454,455,458,459,461,462,464,465,466,467,468,469,473,474,475,476,478,480,484,486,488,489,490,491,492,493,495,496,497,499,500,502],\\\\\\\"vendorListVersion\\\\\\\":91,\\\\\\\"created\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\",\\\\\\\"lastUpdated\\\\\\\":\\\\\\\"2018-08-08T15:47:22.795Z\\\\\\\"}\\\"},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100562,\\\"provider\\\":\\\"dfpNativeDisplay\\\",\\\"providerParameters\\\":{\\\"size\\\":{\\\"height\\\":250,\\\"width\\\":300},\\\"networkId\\\":\\\"3847\\\",\\\"adUnitId\\\":\\\"ebay.uk.x.vip\\\",\\\"publishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"sizes\\\":[{\\\"height\\\":250,\\\"width\\\":300}],\\\"refreshDelay\\\":30000,\\\"refreshCap\\\":6,\\\"isGSSEnabled\\\":true,\\\"env\\\":\\\"production\\\"}}\",\"provider\":\"dfpNativeDisplay\"},\"rtmId\":100562},\"100918\":{\"ad\":{\"placementId\":100918,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":5296,\"scenario\":\"100918\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"ticket\":\"7a10f077503b4ec3ad53379712f523ac\",\"env\":\"production\",\"publishType\":3,\"publishDelay\":100,\"napkinPublishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"isGSSEnabled\":true,\"sandAdUnit\":\"ebay.uk.footer\\u002Fmrec_third\"},\"targetingParameters\":{},\"json\":\"{\\\"targetingParameters\\\":{},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100918,\\\"provider\\\":\\\"sandwich\\\",\\\"providerParameters\\\":{\\\"ticket\\\":\\\"7a10f077503b4ec3ad53379712f523ac\\\",\\\"env\\\":\\\"production\\\",\\\"publishType\\\":3,\\\"publishDelay\\\":100,\\\"napkinPublishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"isGSSEnabled\\\":true,\\\"sandAdUnit\\\":\\\"ebay.uk.footer\\u002Fmrec_third\\\"}}\",\"provider\":\"sandwich\"},\"rtmId\":100918},\"100916\":{\"ad\":{\"placementId\":100916,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":5294,\"scenario\":\"100916\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"ticket\":\"e21f157bfc384f50bc2c895cdc6a1be1\",\"env\":\"production\",\"publishType\":3,\"publishDelay\":100,\"napkinPublishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"isGSSEnabled\":true,\"sandAdUnit\":\"ebay.uk.footer\\u002Fmrec_first\"},\"targetingParameters\":{},\"json\":\"{\\\"targetingParameters\\\":{},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100916,\\\"provider\\\":\\\"sandwich\\\",\\\"providerParameters\\\":{\\\"ticket\\\":\\\"e21f157bfc384f50bc2c895cdc6a1be1\\\",\\\"env\\\":\\\"production\\\",\\\"publishType\\\":3,\\\"publishDelay\\\":100,\\\"napkinPublishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"isGSSEnabled\\\":true,\\\"sandAdUnit\\\":\\\"ebay.uk.footer\\u002Fmrec_first\\\"}}\",\"provider\":\"sandwich\"},\"rtmId\":100916},\"100917\":{\"ad\":{\"placementId\":100917,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":5295,\"scenario\":\"100917\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"ticket\":\"bf2800f3c26b44f88cb5b90209767f97\",\"env\":\"production\",\"publishType\":3,\"publishDelay\":100,\"napkinPublishType\":2,\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"},\"isGSSEnabled\":true,\"sandAdUnit\":\"ebay.uk.footer\\u002Fmrec_second\"},\"targetingParameters\":{},\"json\":\"{\\\"targetingParameters\\\":{},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100917,\\\"provider\\\":\\\"sandwich\\\",\\\"providerParameters\\\":{\\\"ticket\\\":\\\"bf2800f3c26b44f88cb5b90209767f97\\\",\\\"env\\\":\\\"production\\\",\\\"publishType\\\":3,\\\"publishDelay\\\":100,\\\"napkinPublishType\\\":2,\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"},\\\"isGSSEnabled\\\":true,\\\"sandAdUnit\\\":\\\"ebay.uk.footer\\u002Fmrec_second\\\"}}\",\"provider\":\"sandwich\"},\"rtmId\":100917},\"100727\":{\"ad\":{\"placementId\":100727,\"pageId\":2047675,\"fallback\":false,\"identification\":{\"instanceId\":1,\"provider\":\"MFE_AD_PROVIDER\",\"sojournerModuleId\":4821,\"scenario\":\"100727\",\"scenarioVersion\":\"\",\"providerCustomTracking\":null,\"monetizationInfo\":null},\"providerParameters\":{\"csaPageOptions\":{\"adPage\":0,\"pubId\":[\"ebay-uk-vip-01\"],\"query\":\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120 Hammers & Mallets\",\"adtest\":\"off\",\"channel\":\"mfetext\",\"hl\":\"en\",\"domainLinkAboveDescription\":true,\"heightConstrained\":false,\"gl\":\"uk\",\"linkTarget\":\"_blank\",\"rolloverAdBackgroundColor\":\"#EBF7E9\",\"customAttributionText\":\"Sponsored Links\",\"templateId\":0},\"meid\":\"8d0a7376982644d4ae4cdb5cc6710187\",\"channelType\":\"Page\",\"scandalJS\":{\"scandalJsVersion\":\"2.0.16-v6\",\"url\":\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\"}},\"targetingParameters\":{\"headerColor\":[\"gray_header\"],\"width\":\"auto\",\"numberOfAds\":[9],\"lines\":3,\"fontFamily\":\"Arial\",\"fontSizeTitle\":13,\"fontSizeDescription\":12,\"fontSizeDomainLink\":12,\"colorTitleLink\":\"#0000CC\",\"colorDomainLink\":\"#008800\",\"colorText\":\"#000000\",\"noTitleUnderline\":false,\"titleBold\":true,\"verticalSpacing\":15,\"lineHeightDescription\":20,\"lineHeightDomainLink\":20,\"colorAdSeparator\":\"white\",\"attributionSpacingBelow\":10},\"json\":\"{\\\"targetingParameters\\\":{\\\"headerColor\\\":[\\\"gray_header\\\"],\\\"width\\\":\\\"auto\\\",\\\"numberOfAds\\\":[9],\\\"lines\\\":3,\\\"fontFamily\\\":\\\"Arial\\\",\\\"fontSizeTitle\\\":13,\\\"fontSizeDescription\\\":12,\\\"fontSizeDomainLink\\\":12,\\\"colorTitleLink\\\":\\\"#0000CC\\\",\\\"colorDomainLink\\\":\\\"#008800\\\",\\\"colorText\\\":\\\"#000000\\\",\\\"noTitleUnderline\\\":false,\\\"titleBold\\\":true,\\\"verticalSpacing\\\":15,\\\"lineHeightDescription\\\":20,\\\"lineHeightDomainLink\\\":20,\\\"colorAdSeparator\\\":\\\"white\\\",\\\"attributionSpacingBelow\\\":10},\\\"fallbackContent\\\":null,\\\"fallback\\\":false,\\\"pageId\\\":2047675,\\\"placementId\\\":100727,\\\"provider\\\":\\\"csa\\\",\\\"providerParameters\\\":{\\\"csaPageOptions\\\":{\\\"adPage\\\":0,\\\"pubId\\\":[\\\"ebay-uk-vip-01\\\"],\\\"query\\\":\\\"OX Tools Pro 20oz Claw Hammer 1-Piece Solid Forged Steel & Non Slip Grip P080120 Hammers & Mallets\\\",\\\"adtest\\\":\\\"off\\\",\\\"channel\\\":\\\"mfetext\\\",\\\"hl\\\":\\\"en\\\",\\\"domainLinkAboveDescription\\\":true,\\\"heightConstrained\\\":false,\\\"gl\\\":\\\"uk\\\",\\\"linkTarget\\\":\\\"_blank\\\",\\\"rolloverAdBackgroundColor\\\":\\\"#EBF7E9\\\",\\\"customAttributionText\\\":\\\"Sponsored Links\\\",\\\"templateId\\\":0},\\\"meid\\\":\\\"8d0a7376982644d4ae4cdb5cc6710187\\\",\\\"channelType\\\":\\\"Page\\\",\\\"scandalJS\\\":{\\\"scandalJsVersion\\\":\\\"2.0.16-v6\\\",\\\"url\\\":\\\"\\u002F\\u002Fir.ebaystatic.com\\u002Fcr\\u002Fv\\u002Fc1\\u002FScandalJS-2.0.16-v6.min.js\\\"}}}\",\"provider\":\"csa\"},\"rtmId\":100727}},\"adsPbType\":[2,2,2,2,2,2,2,2]}],['raptor.merch.MerchManager','w1-46',{\"enableOnScroll\":true,\"pids\":[\"100009\",\"100010\",\"100047\",\"100752\"],\"customCallbackHandler\":false,\"loadJsAsync\":false,\"merchRaptorEnabled\":true,\"url\":\"https:\\u002F\\u002Freco.ebay.com\\u002Frec\\u002Fplmt\\u002F100009-100010-100047-100752?guid=1a3895281650a9e1e8fecbbcffff6728&itm=262745174897&bWidth=1215&cguid=6e2d44d31620ac1ec5c6ac63ff6f4085&fmt=html&locale=en-GB&usrSt=4&srchCtxt=%28dmLCat%3D-1%7CsrCnt%3D0%7CmCCatId%3D0%7CminPrice%3D-1.0%7CmaxPrice%3D-1.0%7CcrncyId%3D826%7CfShip%3D0%7Cetrs%3D0%29&usrSi=UK&ctg=20763&si=3&_qi=t6ulcpjqcj9%3Fjqpsobtlrbn%284%3F1%3D5%3F5%2Busqdrrp%2Bjqp%2Bceb%7C%28dlh\",\"th\":1000}]);new (raptor.require('raptor.tracking.core.Tracker'))({\"psi\":\"APJTwQWs*\",\"rover\":{\"imp\":\"/roverimp/0/0/9\",\"clk\":\"/roverclk/0/0/9\",\"uri\":\"https://rover.ebay.co.uk\"},\"pid\":\"p2047675\"});raptor.require('raptor.tracking.idmap.IdMap').roverService(\"https://rover.ebay.co.uk/idmap/0?footer\");})();\r\n\t\t\t</script><!-- Adding merch content js -->\r\n\t\t\t<script type=\"text/javascript\" src=\"https://ir.ebaystatic.com/rs/c/templates-js-c950fa.js\"></script>\r\n\t\t   \t \t<script src =\"//www.ebay.com/scl/js/ScandalLoader.js\" type=\"text/javascript\" async=\"true\"></script>\r\n\t\t\t</div><!-- RcmdId ViewItemPageRaptor,RlogId t6ulcpjqcj9%3Fjqpsobtlrbn%284%3F1%3D5%3F5%2Busqdrrp%2Bjqp%2Bceb%7C%28dlh-1687f3c94f7-0x185 -->\r\n\r\n<!-- RcmdId ViewItemPageRaptor,RlogId t6ulcpjqcj9%3Fjqpsobtlrbn%284%3F1%3D5%3F5%2Busqdrrp%2Bjqp%2Bceb%7C%28dlh-1687f3c94f7-0x185 -->\r\n<!-- SiteId: 3, Environment: production, AppName: viewitem, PageId: 2047675 -->\r\n<script>var rlogId = \"t6ulcpjqcj9%3Fjqpsobtlrbn%284%3F1%3D5%3F5%2Busqdrrp%2Bjqp%2Bceb%7C%28dlh-1687f3c94f7-0x185\";</script>\r\n<script id=\"worker1\" type=\"javascript/worker\">\r\n      \t\t\t\tself.onmessage = function(e) {\r\n\t\t\t\t\t\tvar request = e.data;\r\n\t\t\t\t\t\tif(request && request.type && request.type ==\"request\"){\r\n\t\t\t\t\t\t\tdoAjaxCall(request.url);\r\n\t\t\t\t\t\t}\r\n    \t\t\t\t};\r\n\r\n\t\t\t\t\tfunction getXMLHttpClient(){\r\n    \t\t\t\t\tvar xmlhttp=null;\r\n     \t\t\t\t\ttry {\r\n         \t\t\t\t\txmlhttp = new XMLHttpRequest();\r\n     \t\t\t\t\t}catch (e) {\r\n          \t\t\t\t\tvar XMLHTTP_IDS = new Array('MSXML2.XMLHTTP.5.0',\r\n                                    'MSXML2.XMLHTTP.4.0',\r\n                                    'MSXML2.XMLHTTP.3.0',\r\n                                    'MSXML2.XMLHTTP',\r\n                                    'Microsoft.XMLHTTP' );\r\n         \t\t\t\t\tfor (var i=0;i < XMLHTTP_IDS.length && !success; i++) {\r\n             \t\t\t\t\ttry {\r\n                  \t\t\t\t\txmlhttp = new ActiveXObject(XMLHTTP_IDS[i]);\r\n               \t\t\t\t\t} catch (e) {}\r\n         \t\t\t\t\t}\r\n                   \t\t}\r\n                  \t\treturn xmlhttp;\r\n\t\t\t\t  \t}\r\n\r\n\r\n\t\t\t\t\tfunction doAjaxCall(url){\r\n\t\t\t\t\t\tvar xhttp = getXMLHttpClient();\r\n         \t\t\t\txhttp.onreadystatechange = function() {\r\n         \t\t\t\t\tif (xhttp.readyState == 4) {\r\n\t\t\t\t\t\t\t\tif( xhttp.status == 200){\r\n\t\t\t\t\t\t\t\t\tself.postMessage({'type':'response','response': xhttp.responseText});\r\n\t\t\t\t\t\t\t\t}else{\r\n\t\t\t\t\t\t\t\t\tself.postMessage({'type':'response','response': xhttp.status});\r\n\t\t\t \t\t\t\t\t}\r\n        \t \t\t\t\t}\r\n  \t\t  \t\t\t\t};\r\n  \t\t\t\t\txhttp.open(\"GET\", url, true);\r\n\t\t\t\t\tif(false){\r\n\t\t\t\t\txhttp.setRequestHeader('X-EBAY-VI-PREFETCH2', 'true');\r\n\t\t\t\t\t}else{\r\n\t\t\t\t\txhttp.setRequestHeader('X-EBAY-VI-PREFETCH', 'true');\r\n\t\t\t\t\t}\r\n \t\t\t\t\txhttp.send('');\r\n\t\t\t\t\t}\r\n  \t</script>\r\n\t<script>\r\n\t      function prefetchMerch(){\r\n\t    \t  var viUrls=[];\r\n\t\t\t  if(false){\r\n\t\t\t\t  if(window.localStorage){\r\n\t\t\t\t\t  try{\r\n\t\t\t\t\t\t  var arrStr = window.localStorage.getItem(\"VIUrls\");\r\n\t\t\t\t\t\t  if(arrStr){\r\n\t\t\t\t\t\t\tviUrls = JSON.parse(arrStr);\r\n\t\t\t\t\t\t  }\r\n\t\t\t\t\t  }catch(err){\r\n\t\t\t\t\t  }\r\n\t\t\t\t  }\r\n\t\t\t  }else if(true){\r\n\t\t\t\t  viUrls = $(\"\"+function(){var x = [];$('#merch_html_100623 div.mfe-reco-flat-cell-text>a.mfe-reco-link, #merch_html_100005 a.mfe-reco-link').filter(function(idx){if(idx < 3 && $(this).attr('href') && $(this).attr('href').indexOf('/itm/') != -1){ $(this).attr('id', 'pf_'+idx);x.push('#pf_'+idx); return}});return x.join(',');}()+\"\r\n\").map(function(idx) {\r\n\t\t\t\t        var href = this.href;\r\n\t\t\t\t        if(href && (href.indexOf('/itm')!=-1 && href.indexOf('/itm')<50)){\r\n\t\t\t\t        \t $(this).attr('data-trk', idx);\r\n\t\t\t\t\t\t\t return href;\r\n\t\t\t\t        }\r\n\t\t\t\t  });\r\n\t\t\t  }\r\n\t\t\t  var textContent = document.querySelector('#worker1').textContent;\r\n\t\t\t  function createWorker(){\r\n\t\t\t    \tvar blob = new Blob([textContent]);\r\n\t\t\t    \tvar worker = new Worker(window.URL.createObjectURL(blob));\r\n\t\t\t    \treturn worker;\r\n\t\t\t    }\r\n\t\t\t\tif(viUrls && viUrls.length > 0){\r\n\t\t\t\t\tvar prefetchMaxVal = 3;\r\n\t\t\t\t\tif(viUrls.length < prefetchMaxVal){\r\n\t\t\t\t\t\tprefetchMaxVal=viUrls.length;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tfor(var i=0;i<prefetchMaxVal;i++){\r\n\t\t\t\t\t\t var worker = createWorker();\r\n\t\t\t\t\t\t worker.postMessage({'type':'request','url':viUrls[i]});\r\n\t\t\t\t\t\t worker.onmessage = function(e) {\r\n\t\t\t\t\t\t\t var response = e.data;\r\n\t\t\t\t\t\t\t if(response && response.type && response.type ==\"response\"){\r\n\t\t\t\t\t\t\t }\r\n\t\t\t\t\t\t };\r\n\t\t\t\t\t}\r\n\t\t\t\t\t$('ul.mfe-recos').on('click', 'a', function(){\r\n\t\t\t\t\t\t  var id =  $(this).attr('data-trk');\r\n\t\t\t\t\t\t  $(document).trigger('rover', {'sid':'p2047675.l8531', 'mclk': id});\r\n\t\t\t\t\t});\r\n\t\t\t\t}\r\n\r\n\t      };\r\n\t      $(window).load(function(){\r\n\t    \t  prefetchMerch();\r\n\t      });\r\n\t</script></body>\r\n</html>"
  },
  {
    "path": "example-files/issue-496.rb",
    "content": "require 'pp'\nrequire 'linkeddata'\n\ninput = JSON.parse %({\n  \"@context\": {\n    \"schema\": \"http://schema.org/\",\n    \"name\": \"schema:name\",\n    \"url\": {\"@id\": \"schema:url\", \"@type\": \"schema:URL\"}\n  },\n  \"name\": \"Jane Doe\"\n})\n\nframe = JSON.parse %({\n  \"@context\": {\n    \"schema\": \"http://schema.org/\",\n    \"name\": \"schema:name\",\n    \"url\": { \"@id\": \"schema:url\", \"@type\": \"schema:URL\"}\n  },\n  \"name\": {},\n  \"url\": {\"@default\": {\"@value\": \"http://example.com\", \"@type\": \"schema:URL\"}}\n})\n\npp JSON::LD::API.frame(input, frame, logger: Logger.new(STDERR))"
  },
  {
    "path": "example-files/issue-499-frame.json",
    "content": "{\"@context\": [\"http://schema.org\", {\n    \"maintainer\": {\"@type\": \"@id\"}\n  }],\n \"@embed\": \"@always\",\n \"author\": {\n   \"familyName\": {},\n   \"affiliation\": \n     {\"@default\": \"@null\"}\n  },\n \"maintainer\": {\n   \"familyName\": { \"@default\": \"none\" }\n }\n}"
  },
  {
    "path": "example-files/issue-499.json",
    "content": "{\n  \"@context\": \"http://schema.org\",\n  \"@type\": \"SoftwareSourceCode\",\n  \"author\": \n    {\n      \"@type\": \"Person\",\n      \"givenName\": \"Carl\",\n      \"familyName\": \"Boettiger\",\n      \"email\": \"cboettig@gmail.com\",\n      \"@id\": \"http://orcid.org/0000-0002-1642-628X\"\n    },\n  \"maintainer\": \"http://orcid.org/0000-0002-1642-628X\"\n}\n"
  },
  {
    "path": "example-files/issue-507.rb",
    "content": "require 'pp'\nrequire 'linkeddata'\n\ncontext = JSON.parse %({\n  \"@context\": {\n    \"id\": \"@id\",\n    \"rdfs\": {\"@id\": \"http://.../\"},\n    \"seeAlso\": {\"@id\": \"rdfs:seeAlso\", \"@container\": \"@set\"}\n  }\n})\n\ninput = JSON.parse %({\n  \"@context\": {\n    \"id\": \"@id\",\n    \"rdfs\": {\"@id\": \"http://.../\"},\n    \"seeAlso\": {\"@id\": \"rdfs:seeAlso\", \"@container\": \"@set\"}\n  },\n  \"seeAlso\": [\n    {\n      \"id\": \"http://example.org/reference1\"\n    },\n    \"http://example.org/reference2\",\n    {\"id\": \"http://example.org/reference3\", \"format\": \"text/html\"}\n  ]\n})\n\npp JSON::LD::API.compact(input, context['@context'])"
  },
  {
    "path": "example-files/issue-526.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\"  : \"http://vocab.getty.edu/\",\n    \"a\"     : \"http://vocab.getty.edu/aaaaaaaaaat/\"\n  }, \n  \"@id\" : \"http://vocab.getty.edu/aaaaaaaaaat/5001065997\",\n  \"@type\": \"http://vocab.getty.edu/aaaaaaaaaat/datatype\"\n}\n"
  },
  {
    "path": "example-files/issue_30.jsonld",
    "content": "[\n  {\n    \"@id\": \"http://vocab.getty.edu/ulan/500115403\",\n    \"http://xmlns.com/foaf/0.1/focus\": [\n      {\n        \"@id\": \"http://vocab.getty.edu/ulan/500115403-agent\"\n      }\n    ],\n    \"http://www.w3.org/2004/02/skos/core#prefLabel\": [\n      {\n        \"@value\": \"Couture, Thomas\"\n      }\n    ],\n    \"http://www.w3.org/2004/02/skos/core#inScheme\": [\n      {\n        \"@id\": \"http://vocab.getty.edu/ulan/\"\n      }\n    ],\n    \"http://schema.org/url\": [\n      {\n        \"@id\": \"http://www.getty.edu/vow/ULANFullDisplay?find=&role=&nation=&subjectid=500115403\"\n      }\n    ]\n  }\n]\n"
  },
  {
    "path": "example-files/issue_30.rb",
    "content": "#! /usr/bin/env ruby\n\nrequire 'linkeddata'\n\nunframed_json = JSON.parse '[\n  {\n    \"@id\": \"http://vocab.getty.edu/ulan/500115403\",\n    \"http://xmlns.com/foaf/0.1/focus\": [\n      {\n        \"@id\": \"http://vocab.getty.edu/ulan/500115403-agent\"\n      }\n    ],\n    \"http://www.w3.org/2004/02/skos/core#prefLabel\": [\n      {\n        \"@value\": \"Couture, Thomas\"\n      }\n    ],\n    \"http://www.w3.org/2004/02/skos/core#inScheme\": [\n      {\n        \"@id\": \"http://vocab.getty.edu/ulan/\"\n      }\n    ],\n    \"http://schema.org/url\": [\n      {\n        \"@id\": \"http://www.getty.edu/vow/ULANFullDisplay?find=&role=&nation=&subjectid=500115403\"\n      }\n    ]\n  }\n]'\n\nframe = JSON.parse '{\n  \"@explicit\": true,\n  \"@context\": {\n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"schema\": \"http://schema.org/\",\n    \"label\": \"skos:prefLabel\",\n    \"id\": \"@id\",\n    \"source\": {\n      \"@id\": \"skos:inScheme\",\n      \"@type\": \"@id\"\n    },\n    \"agent\": {\n      \"@id\": \"foaf:focus\",\n      \"@type\": \"@id\"\n    },\n    \"website\": {\n      \"@id\": \"schema:url\",\n      \"@type\": \"@id\"\n    }\n  },\n  \"@requireAll\": false,\n  \"@explicit\": false,\n  \"label\": {},\n  \"id\": {},\n  \"source\": {},\n  \"agent\": {},\n  \"website\": {}\n}'\n\nputs JSON::LD::API.frame(unframed_json, frame, logger: STDERR).to_json(JSON::LD::JSON_STATE)\n"
  },
  {
    "path": "example-files/issue_30_frame.jsonld",
    "content": "{\n  \"@explicit\": true,\n  \"@context\": {\n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"schema\": \"http://schema.org/\",\n    \"label\": \"skos:prefLabel\",\n    \"id\": \"@id\",\n    \"source\": {\n      \"@id\": \"skos:inScheme\",\n      \"@type\": \"@id\"\n    },\n    \"agent\": {\n      \"@id\": \"foaf:focus\",\n      \"@type\": \"@id\"\n    },\n    \"website\": {\n      \"@id\": \"schema:url\",\n      \"@type\": \"@id\"\n    }\n  },\n  \"label\": {},\n  \"id\": {},\n  \"source\": {},\n  \"agent\": {},\n  \"website\": {}\n}\n"
  },
  {
    "path": "example-files/library.jsonld",
    "content": "    {\n      \"@context\": {\n        \"@vocab\": \"http://example.org/\",\n        \"contains\": {\"@type\": \"@id\"}\n      },\n      \"@graph\": [{\n        \"@id\": \"http://example.org/library\",\n        \"@type\": \"Library\",\n        \"contains\": \"http://example.org/library/the-republic\"\n      }, {\n        \"@id\": \"http://example.org/library/the-republic\",\n        \"@type\": \"Book\",\n        \"creator\": \"Plato\",\n        \"title\": \"The Republic\",\n        \"contains\": \"http://example.org/library/the-republic#introduction\"\n      }, {\n        \"@id\": \"http://example.org/library/the-republic#introduction\",\n        \"@type\": \"Chapter\",\n        \"description\": \"An introductory chapter on The Republic.\",\n        \"title\": \"The Introduction\"\n      }]\n    }\n\n"
  },
  {
    "path": "example-files/md-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n    \"mq\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-query#\",\n    \n    \"comment\": \"rdfs:comment\",\n    \"entries\": {\"@id\": \"mf:entries\", \"@container\": \"@list\"},\n    \"name\": \"mf:name\",\n    \"action\": \"mf:action\",\n    \"data\": {\"@id\": \"mq:data\", \"@type\": \"@id\"},\n    \"query\": {\"@id\": \"mq:query\", \"@type\": \"@id\"},\n    \"result\": {\"@id\": \"mf:result\", \"@type\": \"xsd:boolean\"}\n  },\n  \"@type\": \"mf:Manifest\",\n  \"entries\": [{\n    \"@type\": \"mf:ManifestEntry\"\n  }]\n}"
  },
  {
    "path": "example-files/md-manifest.jsonld",
    "content": "{\n  \"@context\": {\n    \"md\": \"http://www.w3.org/ns/md#\",\n    \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n    \"mq\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-query#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\"\n  },\n  \"@graph\": [\n    {\n      \"@id\": \"_:g70268917871100\",\n      \"@type\": \"mf:Manifest\",\n      \"mf:entries\": {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70268917898880\"\n          },\n          {\n            \"@id\": \"_:g70268918414680\"\n          },\n          {\n            \"@id\": \"_:g70268918514640\"\n          },\n          {\n            \"@id\": \"_:g70268918614600\"\n          },\n          {\n            \"@id\": \"_:g70268918698180\"\n          },\n          {\n            \"@id\": \"_:g70268918798160\"\n          },\n          {\n            \"@id\": \"_:g70268918898140\"\n          },\n          {\n            \"@id\": \"_:g70268918998100\"\n          },\n          {\n            \"@id\": \"_:g70268919098060\"\n          },\n          {\n            \"@id\": \"_:g70268919181660\"\n          },\n          {\n            \"@id\": \"_:g70268919121720\"\n          },\n          {\n            \"@id\": \"_:g70268919021100\"\n          },\n          {\n            \"@id\": \"_:g70268918920320\"\n          },\n          {\n            \"@id\": \"_:g70268918819720\"\n          },\n          {\n            \"@id\": \"_:g70268918719020\"\n          }\n        ]\n      },\n      \"rdfs:comment\": \"Positive processor tests\"\n    },\n    {\n      \"@id\": \"_:g70268917898880\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918350900\"\n      },\n      \"mf:name\": \"Test 0001\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Item with no itemtype and literal itemprop\"\n    },\n    {\n      \"@id\": \"_:g70268918350900\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918414680\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918450680\"\n      },\n      \"mf:name\": \"Test 0002\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Item with no itemtype and 2 elements with equivalent itemprop\"\n    },\n    {\n      \"@id\": \"_:g70268918450680\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0002.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0002.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918514640\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918534260\"\n      },\n      \"mf:name\": \"Test 0003\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Item with itemprop having two properties\"\n    },\n    {\n      \"@id\": \"_:g70268918534260\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0003.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0003.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918614600\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918634220\"\n      },\n      \"mf:name\": \"Test 0004\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of meta and @content\"\n    },\n    {\n      \"@id\": \"_:g70268918634220\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0004.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0004.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918688240\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0015.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0015.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918698180\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918734200\"\n      },\n      \"mf:name\": \"Test 0005\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of audio and @src\"\n    },\n    {\n      \"@id\": \"_:g70268918719020\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918688240\"\n      },\n      \"mf:name\": \"Test 0015\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of object and @data\"\n    },\n    {\n      \"@id\": \"_:g70268918734200\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0005.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0005.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918788980\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0014.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0014.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918798160\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918834180\"\n      },\n      \"mf:name\": \"Test 0006\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of embed and @src\"\n    },\n    {\n      \"@id\": \"_:g70268918819720\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918788980\"\n      },\n      \"mf:name\": \"Test 0014\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of link and @href\"\n    },\n    {\n      \"@id\": \"_:g70268918834180\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0006.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0006.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918889720\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0013.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0013.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918898140\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918934120\"\n      },\n      \"mf:name\": \"Test 0007\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of iframe and @src\"\n    },\n    {\n      \"@id\": \"_:g70268918920320\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918889720\"\n      },\n      \"mf:name\": \"Test 0013\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of area and @href\"\n    },\n    {\n      \"@id\": \"_:g70268918934120\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0007.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0007.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918990380\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0012.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0012.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268918998100\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268919017740\"\n      },\n      \"mf:name\": \"Test 0008\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of img and @src\"\n    },\n    {\n      \"@id\": \"_:g70268919017740\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0008.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0008.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268919021100\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268918990380\"\n      },\n      \"mf:name\": \"Test 0012\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of a and @href\"\n    },\n    {\n      \"@id\": \"_:g70268919091040\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0011.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0011.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268919098060\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268919117700\"\n      },\n      \"mf:name\": \"Test 0009\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of source and @src\"\n    },\n    {\n      \"@id\": \"_:g70268919117700\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0009.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0009.ttl\"\n      }\n    },\n    {\n      \"@id\": \"_:g70268919121720\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268919091040\"\n      },\n      \"mf:name\": \"Test 0011\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of video and @src\"\n    },\n    {\n      \"@id\": \"_:g70268919181660\",\n      \"@type\": \"mf:ManifestEntry\",\n      \"mf:action\": {\n        \"@id\": \"_:g70268919192060\"\n      },\n      \"mf:name\": \"Test 0010\",\n      \"mf:result\": \"true\",\n      \"rdfs:comment\": \"Use of track and @src\"\n    },\n    {\n      \"@id\": \"_:g70268919192060\",\n      \"@type\": \"mq:QueryTest\",\n      \"mq:data\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0010.html\"\n      },\n      \"mq:query\": {\n        \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0010.ttl\"\n      }\n    },\n    {\n      \"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/\",\n      \"md:item\": {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70268917871100\"\n          }\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/md-manifest.ttl",
    "content": "@base <http://www.w3.org/TR/microdata-rdf/tests/> .\n@prefix mf: <http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#> .\n@prefix mq: <http://www.w3.org/2001/sw/DataAccess/tests/test-query#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n\n<> <http://www.w3.org/ns/md#item> ([ a mf:Manifest;\n       rdfs:comment \"Positive processor tests\";\n       mf:entries [ a mf:ManifestEntry;\n         rdfs:comment \"Item with no itemtype and literal itemprop\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0001.html>;\n           mq:query <0001.ttl>];\n         mf:name \"Test 0001\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Item with no itemtype and 2 elements with equivalent itemprop\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0002.html>;\n           mq:query <0002.ttl>];\n         mf:name \"Test 0002\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Item with itemprop having two properties\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0003.html>;\n           mq:query <0003.ttl>];\n         mf:name \"Test 0003\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of meta and @content\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0004.html>;\n           mq:query <0004.ttl>];\n         mf:name \"Test 0004\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of audio and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0005.html>;\n           mq:query <0005.ttl>];\n         mf:name \"Test 0005\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of embed and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0006.html>;\n           mq:query <0006.ttl>];\n         mf:name \"Test 0006\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of iframe and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0007.html>;\n           mq:query <0007.ttl>];\n         mf:name \"Test 0007\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of img and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0008.html>;\n           mq:query <0008.ttl>];\n         mf:name \"Test 0008\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of source and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0009.html>;\n           mq:query <0009.ttl>];\n         mf:name \"Test 0009\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of track and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0010.html>;\n           mq:query <0010.ttl>];\n         mf:name \"Test 0010\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of video and @src\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0011.html>;\n           mq:query <0011.ttl>];\n         mf:name \"Test 0011\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of a and @href\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0012.html>;\n           mq:query <0012.ttl>];\n         mf:name \"Test 0012\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of area and @href\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0013.html>;\n           mq:query <0013.ttl>];\n         mf:name \"Test 0013\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of link and @href\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0014.html>;\n           mq:query <0014.ttl>];\n         mf:name \"Test 0014\";\n         mf:result \"true\"],\n         [ a mf:ManifestEntry;\n         rdfs:comment \"Use of object and @data\";\n         mf:action [ a mq:QueryTest;\n           mq:data <0015.html>;\n           mq:query <0015.ttl>];\n         mf:name \"Test 0015\";\n         mf:result \"true\"]]) .\n"
  },
  {
    "path": "example-files/mitar-in.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\": \"http://example/\",\n    \"@version\": 1.1,\n    \"B\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n  },\n  \"a\": {\n    \"@context\": {\"@vocab\": \"http://example.com/\"},\n    \"@type\": \"B\",\n    \"a\": \"A in example.com\",\n    \"c\": \"C in example.org\"\n  },\n  \"c\": \"C in example\"\n}\n"
  },
  {
    "path": "example-files/moustaki.ttl",
    "content": "@prefix mo: <http://purl.org/ontology/mo/> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n@prefix tl: <http://purl.org/NET/c4dm/timeline.owl#> .\n@prefix event: <http://purl.org/NET/c4dm/event.owl#> .\n@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n\n<http://dbpedia.org/resource/Johann_Sebastian_Bach>\n    a mo:MusicArtist ;\n    foaf:name \"Johann Sebastian Bach\" .\n<#composition>\n    a mo:Composition ;\n    dc:title \"Composition of The Art of Fugue, BWV 1080: Contrapunctus IX, a 4, alla Duodecima\" ;\n    mo:composer <http://dbpedia.org/resource/Johann_Sebastian_Bach> ;\n    event:time [ tl:start \"1742\"^^xsd:gYear ; tl:end \"1749\"^^xsd:gYear ] ;\n    mo:produced_work <#kunst-der-fuge> .\n<#kunst-der-fuge>\n    a mo:MusicalWork ;\n    dc:title \"The Art of Fugue, BWV 1080: Contrapunctus IX, a 4, alla Duodecima\" .\n<#performance>\n    a mo:Performance ;\n    mo:performance_of <#kunst-der-fuge> ;\n    event:time [ tl:at \"2003\"^^xsd:gYear ] ;\n    mo:performer <http://musicbrainz.org/artist/fd20e8ed-0736-44db-8d97-530fbf00e813#_> ;\n    mo:instrument [ a mo:Instrument ; rdfs:label \"first violin\" ], \n                  [ a mo:Instrument ; rdfs:label \"second violin\" ], \n                  [ a mo:Instrument ; rdfs:label \"viola\" ], \n                  [ a mo:Instrument ; rdfs:label \"cello\" ] ;\n    mo:recorded_as <http://musicbrainz.org/recording/93da082b-99c1-4469-9eb6-91e9fbeaeb2a#_> .\n        \n"
  },
  {
    "path": "example-files/nicholas-arduino-bench.rb",
    "content": "#!/usr/bin/env ruby\nrequire \"bundler/setup\"\nrequire 'json/ld'\n#require File.expand_path('../schema-context', __FILE__)\nrequire 'benchmark/ips'\n\nsource = JSON.parse %({\n  \"@context\": \"http://schema.org/\",\n  \"@type\": \"SoftwareApplication\",\n  \"name\": \"EtherSia\",\n  \"description\": \"IPv6 library for the ENC28J60 Ethernet controller\",\n  \"url\": \"https://github.com/njh/EtherSia\",\n  \"author\": {\n    \"@type\": \"Person\",\n    \"name\": \"Nicholas Humfrey <njh@aelius.com>\"\n  },\n  \"applicationCategory\": \"Communication\",\n  \"operatingSystem\": \"Arduino\",\n  \"downloadUrl\": \"http://downloads.arduino.cc/libraries/njh/EtherSia-1.0.0.zip\",\n  \"softwareVersion\": \"1.0.0\",\n  \"fileSize\": 77\n})\n\n\nBenchmark.ips do |x|\n  x.config(time: 10, warmup: 1)\n  x.report('toRdf') {JSON::LD::API.toRdf(source)}\nend\n"
  },
  {
    "path": "example-files/openbiblio.json",
    "content": "{\n\t\"@context\": [\n\t{\n\t\t\"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n\t\t\"dc\": \"http://purl.org/dc/terms/\",\n\t\t\"bibjson\": \"http://www.bibkn.org/bibjson/terms/\",\n\t\t\"foaf\": \"http://xmlns.com/foaf/0.1/\",\n\t\t\"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n\t},\n\t{\n\t\t\"dc:created\":     {\"@type\": \"xsd:dateTime\"},\n\t\t\"bibjson:id\":     {\"@type\": \"@id\"},\n\t\t\"dc:identifier\":  {\"@type\": \"@id\"}\n\t}\n\t],\n\t\"@id\": \n\t[\n\t\t{\n\t\t\t\"@id\": \"this\",\n\t\t\t\"bibjson:id\" : \"http://bibserver.berkeley.edu/datasets/\",\n\t\t\t\"bibjson:prefLabel\" : \"Publications of James Pitman\",\n\t\t\t\"dc:description\" : \"Publications of James Pitman\",\n\t\t\t\"dc:source\" : \"_:bnode1\",\n\t\t\t\"dc:created\" : \"2008-01-01T00:00:00Z\",\n\t\t\t\"dc:creator\" : {\n\t\t\t\t\"dc:title\": \"Stanford University\",\n\t\t\t\t\"dc:identifier\": \"http://www.stanford.edu/\",\n\t\t\t\t\"dc:identifier\": \"http://bibserver.berkeley.edu/@ustanford\"\n\t\t\t},\n\t\t\t\"bibjson:hasRecord\" : \"_:MR2276901\"\n\t\t},\n\t\t{\n\t\t\t\"@id\" : \"_:bnode2\",\n\t\t\t\"foaf:name\": \"Jim Pitman\",\n\t\t\t\"dc:identifier\": \"http://www.stat.berkeley.edu/~pitman/\",\n\t\t\t\"dc:identifier\": \"http://bibserver.berkeley.edu/@jpitman\"\n\t\t},\n\t\t{\n\t\t\t\"@id\" : \"_:bnode3\",\n\t\t\t\"dc:title\": \"In memoriam Paul-AndrÃ© Meyer: SÃ©eminaire de ProbabilitÃ©s\",\n\t\t\t\"dc:identifier\": \"http://bibserver.berkeley.edu/@book_id\"\n\t\t},\n\t\t{\n\t\t\t\"@id\" : \"_:MR2276901\",\n\t\t\t\"bibjson:id\" : \"http://bibserver.berkeley.edu/MR2276901\",\n\t\t\t\"@type\" : \"Article\",\n\t\t\t\"bibjson:prefLabel\" : \"Two recursive decompositions of Brownian bridge related to the asymptotics of random mappings\",\n\t\t\t\"dc:description\" : \"Aldous and Pitman (1994) studied asymptotic distributions,....\",\n\t\t\t\"bibjson:year\": 2006,\n\t\t\t\"bibjson:pages\" : \"269--303\",\n\t\t\t\"dc:identifier\" : \"math.PR/0402399\",\n\t\t\t\"dc:subject\" : [\"Path decomposition\", \"Path rearrangement\", \"Random mapping\", \"Combinatorial stochastic process\"],\n\t\t\t\"bibjson:bibnumber\" : 117,\n\t\t\t\"bibjson:volume\" : \"1874\",\n\t\t\t\"bibjson:address\" : \"Berlin\",\n\t\t\t\"bibjson:mrclass\" : \"60C05 (60J65)\",\n\t\t\t\"dc:creator\" : [\"Aldous, David\", {\"@id\": \"_:bnode2\"}],\n\t\t\t\"dc:ispartof\" : \"_:bnode3\"\n\t\t}\n\t]\n}"
  },
  {
    "path": "example-files/pendragon-2.jsonld",
    "content": "{\n  \"@context\": [\n    \"http://bibdata.princeton.edu/dc/context.json\",\n    \"http://bibdata.princeton.edu/mrel/context.json\"\n  ],\n  \"@id\": \"http://bibdata.princeton.edu/bibliographic/4609321\",\n  \"title\": {\n    \"@value\": \"Biblia Latina\",\n    \"@language\": \"lat\"\n    }\n  }"
  },
  {
    "path": "example-files/pendragon.jsonld",
    "content": "[ {\n  \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb\",\n  \"@type\" : [ \"http://www.w3.org/ns/ldp#RDFSource\", \"http://www.w3.org/ns/ldp#Container\", \"http://fedora.info/definitions/v4/repository#Container\", \"http://fedora.info/definitions/v4/repository#Resource\" ],\n  \"http://fedora.info/definitions/v4/repository#created\" : [ {\n    \"@type\" : \"http://www.w3.org/2001/XMLSchema#dateTime\",\n    \"@value\" : \"2016-02-27T04:42:21.901Z\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#createdBy\" : [ {\n    \"@value\" : \"bypassAdmin\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#exportsAs\" : [ {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fcr:export?format=jcr/xml\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#hasParent\" : [ {\n    \"@id\" : \"http://localhost:8984/rest/\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#lastModified\" : [ {\n    \"@type\" : \"http://www.w3.org/2001/XMLSchema#dateTime\",\n    \"@value\" : \"2016-02-27T04:47:07.221Z\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#lastModifiedBy\" : [ {\n    \"@value\" : \"bypassAdmin\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#numberOfChildren\" : [ {\n    \"@type\" : \"http://www.w3.org/2001/XMLSchema#int\",\n    \"@value\" : \"6008\"\n  } ],\n  \"http://fedora.info/definitions/v4/repository#writable\" : [ {\n    \"@type\" : \"http://www.w3.org/2001/XMLSchema#boolean\",\n    \"@value\" : \"true\"\n  } ],\n  \"http://www.w3.org/ns/ldp#contains\" : [ {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/d1/74/c9/cdd174c9-0b09-4b89-87b4-144f4e5bb716\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/82/0f/86/cd820f86-eb82-49d0-a2f6-4eb13c436571\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/82/0c/22/cd820c22-4aad-4c9c-b2f7-cad6c201d07e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/df/c0/cd/cddfc0cd-8ad3-4adf-a66f-bdba6581f612\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/e9/9e/36/cde99e36-2235-48b2-8efe-9c5263c99352\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/4b/90/ba/cd4b90ba-f42b-4106-9389-aa125199e086\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/2a/d8/ad/cd2ad8ad-703f-4065-83ff-4ffe043e7749\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/2a/ce/d5/cd2aced5-beec-4816-b1a9-322603527adf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/ff/9c/44/cdff9c44-5ba6-45f1-b156-d64da8fbbf8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/34/79/4a/cd34794a-d60f-4dfd-9aa6-25e3c136b274\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/34/13/2b/cd34132b-6315-4fc9-ad1a-1f353ed9db9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/34/a3/63/cd34a363-9a2c-479f-b514-1021908dd741\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/18/fb/10/cd18fb10-8066-49ad-ab7d-76b21ead955f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/68/6a/28/cd686a28-709b-4e79-91aa-7c7c95570726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/00/3b/cf/cd003bcf-95b5-4a5d-aaba-85c71031da52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/39/4f/e8/cd394fe8-54dc-49f0-87cd-7f79511b2815\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/d0/6c/ba/cdd06cba-074d-4604-b9c4-3dfa09005616\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/de/8c/bd/cdde8cbd-4313-4fb5-bfb3-153f3b4249d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/74/14/f1/cd7414f1-195e-406f-85ac-f07a01c9ca72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/db/65/79/cddb6579-45f2-4a6a-853e-90059b1ac075\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/43/84/c6/cd4384c6-8c35-4b2d-befd-46f36c43e421\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/43/c0/2c/cd43c02c-c153-4adc-bb7d-b22547051077\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/6e/8e/c7/cd6e8ec7-95e3-4763-be79-41cc008f6806\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/0b/5f/b6/cd0b5fb6-61a0-4a85-b5ad-44fc39dda62f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/12/82/1a/cd12821a-b364-4ebe-9fdb-e0a2190bdec1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/58/7c/ba/cd587cba-332d-40fd-942b-324d1c7d6339\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/a1/ec/d3/cda1ecd3-fb6f-4b06-9d51-f3c148455b2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cd/a3/bf/3b/cda3bf3b-dbd9-4fdf-a127-53f2366e9a5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/c9/c0/b1/0fc9c0b1-81da-48e5-8462-0d59cdae3ea6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/3f/35/98/0f3f3598-e248-4309-b548-b8ff531a8c05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/cd/fe/02/0fcdfe02-5956-4f5c-9e4c-f11cb174a1bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/ac/d9/6b/0facd96b-618d-4653-afca-b8d4c3866442\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/4b/d8/49/0f4bd849-d9cc-483e-baee-ca8b511a75b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/86/28/1f/0f86281f-fca4-4a94-8623-e31f6efe3b91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/fd/fb/2f/0ffdfb2f-5486-440a-877b-229de23e33e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/3c/de/4b/0f3cde4b-1d6c-4a2a-b591-4b9a70e2b8f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/b6/4d/0e/0fb64d0e-b0be-4698-824f-6205eb31287b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/da/08/e6/0fda08e6-ac26-4314-a384-e30b2812074d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/e1/66/2d/0fe1662d-5540-4500-b6b9-435227527e68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/a0/46/c0/0fa046c0-2739-4660-ac96-f2f5eb36d5fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/a0/63/55/0fa06355-65ca-4dde-934e-66ca7b84e798\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/63/df/c0/0f63dfc0-ed6d-443e-9e98-8bb6b45b3ec0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/82/b9/9e/0f82b99e-9317-4b0d-a7f6-a538f5521dc3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/b0/08/29/0fb00829-5f0b-4c75-9395-a7edeacb7d05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/5c/3e/cc/0f5c3ecc-b95e-4463-abd3-0b289c13e62c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/c5/89/d7/0fc589d7-8258-4fd2-b4d8-afc39755737a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/27/25/93/0f272593-6ab9-471f-939d-6eed22976864\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/c6/25/e3/0fc625e3-b066-4c97-a07b-3fdfa209ea6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/4f/32/4d/0f4f324d-ccd9-41cd-8aee-1854acbcda76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/ec/98/e0/0fec98e0-e708-4d62-9b0e-c47723ab9ed5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0f/cf/b7/fd/0fcfb7fd-d45e-4ede-8320-cb9153a1b44d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/52/26/df/065226df-f1d6-42b7-9c00-0de5e6dc41e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/c5/c7/fd/06c5c7fd-5cb3-4074-a36f-478bbbd2fbd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/1f/7d/22/061f7d22-eb3a-43ec-8ad2-afd253417297\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/f0/a1/2a/06f0a12a-06e0-4ea2-802e-2b45255cb4f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/eb/68/b1/06eb68b1-55c5-41a3-87fa-3cd1171eb5fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/06/fe/bf/0606febf-758f-49ec-97d5-ca28adc97b7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/06/bf/aa/0606bfaa-f089-41e9-ac4b-c5f99fe6fa01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/6d/14/4d/066d144d-7178-4118-9438-17c75bd60157\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/3d/ba/a3/063dbaa3-f8fb-4b42-97e0-b1b3aac102a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/3a/63/52/063a6352-f6d0-41f2-ad6e-88dc8a846b78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/3a/60/73/063a6073-004e-455b-befe-ecde075c2fc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/3a/94/d6/063a94d6-081b-4bb1-af85-506d337469b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/7f/e4/70/067fe470-8a17-437b-a03e-42856d0fc12d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/af/fd/82/06affd82-8e6b-480e-8209-1f7f8c611766\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/51/58/a4/065158a4-38b8-49c4-b07c-4fb4b4d1383f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/5c/c7/b4/065cc7b4-44cd-4375-96c5-38c4772e1efd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/4f/66/c2/064f66c2-84bb-499a-975a-790410ceb991\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/9a/77/6e/069a776e-765b-4c1b-b133-fcc42569fc33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/e7/b9/30/06e7b930-88bd-47d5-8196-b43443b1325b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/27/59/52/06275952-ffeb-499c-9ffa-8089026a5c6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/70/b2/db/0670b2db-5802-4928-8a53-7b1491fd49cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/89/ac/8d/0689ac8d-7d1e-4131-9e7b-759ff13e538e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/45/37/4d/0645374d-180e-4ebc-8b25-b2132be4a2c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/0d/cb/17/060dcb17-61a1-4553-af56-03021ea5b670\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/62/fc/55/0662fc55-78bd-4d89-9691-f6c411160dd0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/ed/5e/41/06ed5e41-d88c-4cf5-b63a-08401df32400\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/06/c7/d5/44/06c7d544-cb87-49e9-80d5-67f89d11670a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/06/64/f7/de0664f7-da23-4f0e-b8ac-a7bd577fed22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/04/ef/35/de04ef35-e1c1-40af-9050-56cf31dfeb64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/74/bc/ee/de74bcee-e6df-4c2a-8728-074ea3f9fef3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/74/b0/15/de74b015-d305-4206-bcbf-f8aed5961f50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/74/58/fc/de7458fc-3290-412f-abe3-953d42251812\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/b4/1f/58/deb41f58-5adf-4292-8002-c9447722daeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/d8/b1/2e/ded8b12e-4dcf-406e-a586-e5ba64d13b1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/95/18/d5/de9518d5-34b2-4d2e-9fe7-0b4b91a34116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/71/c0/fb/de71c0fb-f148-449c-ade7-8cc1ac7783fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/44/02/1b/de44021b-90b0-4675-ab8f-f461629bb365\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/24/a2/1b/de24a21b-203a-4994-a0b9-aecc6f6f4187\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/7c/2a/b9/de7c2ab9-4441-408c-b1d6-cf54e6be14ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/1f/99/44/de1f9944-0804-4dbb-884d-981213157048\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/9a/69/a4/de9a69a4-8db8-4e93-ba90-7e132e7926f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/27/41/26/de274126-c28e-45be-9d88-240f80751ac7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/da/3c/3e/deda3c3e-cfdc-4872-a215-1cc6a35cba1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/e2/db/4f/dee2db4f-192c-4b82-848a-7225f07fba2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/6c/b0/fe/de6cb0fe-d5d7-41cb-b0f8-abe8872e7c91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/52/bc/b6/de52bcb6-c6ff-425d-b8d8-761ca231923c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/d0/36/a7/ded036a7-1e3a-4b97-91a2-0eb4d0d08b7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/de/99/b4/fa/de99b4fa-40ef-4364-b897-4bec3c928441\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/f2/12/26/fdf21226-d0c1-44bc-91b4-57a9363c5fa7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/ef/af/e5/fdefafe5-8152-4840-8a0b-b51d2a7e4c9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/c9/99/83/fdc99983-2ec3-4d8a-9838-67cc0fc44a69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/1a/27/2e/fd1a272e-0b2e-46c0-b1e2-7353280a4c0b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/07/06/8c/fd07068c-9917-4420-8c94-71a6922c7d79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/a0/91/0c/fda0910c-c8e4-4d05-b4be-345dcc9309a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/a0/5f/f8/fda05ff8-d00e-4a44-82aa-cc3cdc2d4aa4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/24/89/4c/fd24894c-8053-4d61-a867-884b6405a572\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/08/7a/2e/fd087a2e-1fb6-42b9-94dc-c7387abdc849\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/64/cc/c1/fd64ccc1-00d7-4004-9826-36a080db93e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/6d/03/36/fd6d0336-bcd9-4d5c-91d6-7c2150b9b067\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/7f/9e/fd/fd7f9efd-00a5-4d78-887c-3b48707bb91b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/d4/e6/2e/fdd4e62e-875a-4a95-ab10-ced0d268ab68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/e1/87/e3/fde187e3-5061-4f82-be14-fa8ab04b9e4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/ab/b3/cc/fdabb3cc-6b8b-408f-a4b4-ce3992195218\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/ec/9d/42/fdec9d42-3e73-4a81-9870-c91d582a4d0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/d0/9b/38/fdd09b38-8653-499f-81a5-083573d570a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/f9/13/17/fdf91317-cfce-4a18-8d5c-f91ffbb751fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/f9/9e/0c/fdf99e0c-9aa9-4a3e-b20b-7582f57abb8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/8c/3a/38/fd8c3a38-9cb2-4461-a8c6-0179ccd22ae9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/94/12/00/fd941200-339f-46e2-855b-d6055ccd453a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/e7/1b/68/fde71b68-c331-41f9-b50a-2e6f8e8277cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/14/16/53/fd141653-338f-4309-b21e-b89c1cea0e64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/30/54/cf/fd3054cf-73b4-4e9b-beb5-b708c3025d95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/2b/33/47/fd2b3347-f98d-491c-9236-2cf5ed33f358\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/c8/af/e0/fdc8afe0-a811-46f0-932e-f81f685128bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/44/e7/b9/fd44e7b9-46c8-4789-a3b6-6d768770977e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/f3/6f/3e/fdf36f3e-a2ed-419b-9c6d-49ad33ffe545\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/33/5a/b7/fd335ab7-422c-4400-8675-97ad76e59285\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/d1/30/57/fdd13057-a1b1-4704-b902-45b20acf0e7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/68/41/b9/fd6841b9-598f-4ac3-853f-8f463e632029\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/2d/ed/0c/fd2ded0c-93c5-4a7e-a810-ee21febea0d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/83/31/9b/fd83319b-ec54-4cf3-a32f-788ea8678d58\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/f0/45/92/fdf04592-8b98-4407-b6d7-30dd50559e11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/81/45/49/fd814549-ff5b-4456-8ce5-5d89210abab5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/4e/f2/74/fd4ef274-2d16-404e-a2da-730c325481d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fd/0f/c8/7e/fd0fc87e-0580-49b0-90f0-bd3aa8c4b6c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/ee/da/86/1eeeda86-dbff-4181-a6b2-45357f1f8ab6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/f5/30/1e/1ef5301e-5403-4d8d-8a9e-26a9e1d130da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/f5/aa/4f/1ef5aa4f-04c7-4690-a8e6-72c9d58aa455\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/47/0c/19/1e470c19-2b40-45ee-9fd9-f6309deb0692\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/e1/21/11/1ee12111-0f33-467a-9f9e-0e48f8e37c0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/e6/c7/9c/1ee6c79c-de4c-419b-894d-75a96fdd10c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/28/43/8d/1e28438d-f2e3-435f-a6d3-d0cfb974c626\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/49/65/6f/1e49656f-aba0-46f1-ba51-2a0081e1f358\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/1d/1a/c7/1e1d1ac7-ea35-4afd-bd54-4922940b3ddb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/76/64/94/1e766494-03a4-4dd2-8391-bcc99238e195\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/9a/46/d5/1e9a46d5-6360-4e68-89e4-caa279f0174a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/38/74/f0/1e3874f0-7487-4561-9c0b-01e47f092a90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/25/30/9e/1e25309e-8863-4a06-be69-76fc185e312e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/9e/f8/cf/1e9ef8cf-722b-41ad-acff-92ec741de719\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/80/98/60/1e809860-fc72-441b-a12d-0737479c8439\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/bb/ab/1a/1ebbab1a-13ce-4438-b87a-aa2c5983cb7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/b7/ff/32/1eb7ff32-8ef3-4771-af1c-ece926663e92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/ce/2b/49/1ece2b49-0697-4f8f-8462-5875bba74b0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/09/e8/0c/1e09e80c-1264-46f1-a4dc-f0e0a3e36c32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/07/82/f9/1e0782f9-9685-4c55-a54f-2fc93ef18d80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/8e/02/d5/1e8e02d5-71ee-45a9-bc3b-cb1d67e7e8ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/17/8d/10/1e178d10-cf9f-4dc2-b14a-7ab58a4080cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/68/f8/25/1e68f825-64c3-42e3-84d1-8e266cf5a561\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/c7/11/07/1ec71107-d4b6-4907-98d7-fa90554e359a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/48/31/3e/1e48313e-53cd-46ed-b85e-c1ca7910a273\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/b6/3e/6a/1eb63e6a-d12b-45e2-a232-12942b5cd5af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1e/4a/27/f9/1e4a27f9-0f7b-4baa-8994-0dbbe1b7f076\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/3b/2e/61/e63b2e61-8f56-4570-9f0d-41814b192669\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/7d/f6/58/e67df658-4596-4dc4-b91e-06187698d1f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/d8/6d/5f/e6d86d5f-1629-41b4-8f57-478c57372b59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/ea/2b/94/e6ea2b94-14a5-41d6-8d3c-56d2342cca15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/3e/11/41/e63e1141-5b8a-418c-99c0-2b6b078d700a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/46/f7/8f/e646f78f-2c60-4b79-affd-b03f0d52156f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/bf/26/42/e6bf2642-40d8-42f8-b47a-fe598fdababe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/5f/5f/8c/e65f5f8c-fb6e-4570-8b73-23735d2ae0b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/d5/f8/a6/e6d5f8a6-5608-4be4-b009-a58b28286b6f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/61/e6/a5/e661e6a5-23a6-4f86-9523-de7c8dc11337\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/53/bd/3c/e653bd3c-faa2-4bf6-86df-764ac9a672e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/09/15/9e/e609159e-c0f5-438e-8971-1c348d56daa3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/d2/b7/21/e6d2b721-581c-4d3a-86a9-1e13e8638cfa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/76/f4/39/e676f439-7fcc-4d94-85a6-f3a9d10aceeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/b6/75/62/e6b67562-6546-4d47-93bd-d4e32d2295fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/f6/e2/7e/e6f6e27e-369b-4d0c-a7b4-44315c04fa56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/cb/15/9d/e6cb159d-c29a-45ed-ab7d-78ea4c335721\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/db/fc/a7/e6dbfca7-67fe-4303-ab1a-a6666c6d1b2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/40/71/7f/e640717f-2ccb-4af5-98d3-02708529e22b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/c6/23/91/e6c62391-9947-4ca3-9a85-5057f4c79e64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/51/56/86/e6515686-2b9c-4954-bc15-20af9ae768b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/a9/92/5c/e6a9925c-d574-4ad6-952f-b6d3e3b2a769\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/15/27/3a/e615273a-4837-48bf-901e-e61a55964a94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/81/b3/c1/e681b3c1-22a0-4a36-871d-c29b404a18ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/0b/f5/44/e60bf544-10d6-4499-a6ce-367bc27399d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/ac/69/24/e6ac6924-9ccd-4d06-90f7-0bd82b89b749\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e6/d1/aa/51/e6d1aa51-4ad3-4836-aa32-86e492b2da8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/25/1a/d0/22251ad0-ea87-49fd-9d33-ef5c3d548e70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/25/43/f6/222543f6-47d7-4823-9ff8-c14079bf61f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/2d/70/c3/222d70c3-fc3f-4daf-91ca-2b10009416fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/0c/09/ea/220c09ea-3e0d-4fac-bf4b-26eb5e05761a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/0d/fa/88/220dfa88-7cd6-4565-aa4a-2b1b581ff4ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/de/ef/94/22deef94-40ea-4028-bd7f-4ff7d4a8cc03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/ef/13/3f/22ef133f-bdbe-493a-833b-45f90a46217a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/df/9f/51/22df9f51-7506-4754-afcf-d7d632beba25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/58/e0/c7/2258e0c7-944a-4e1a-bc13-143b646574cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/b6/c0/a5/22b6c0a5-63db-4638-80f9-5ebe44d9df49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/53/89/b2/225389b2-b07b-4e26-9ef3-a22983fd2f67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/e0/8d/8d/22e08d8d-59d0-447d-8521-ecdb576b6455\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/e0/fb/37/22e0fb37-22e8-4e07-b56d-48b05c751849\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/f6/57/26/22f65726-9b0d-4504-bce3-3ecd48f9c8b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/fc/72/0d/22fc720d-3a5d-4321-a228-9e8cb407e704\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/50/10/bb/225010bb-cbac-46f0-b395-5eb8c867d41f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/19/b3/a7/2219b3a7-9ee8-445b-a65b-2d6aa23305e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/5a/c2/21/225ac221-5058-42ab-94b5-83a6fa9fccb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/d2/81/fc/22d281fc-7de7-4737-818b-1a8a2c7bdfc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/68/b4/2a/2268b42a-14fe-42a9-8663-1c9de877f9bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/ad/ef/f0/22adeff0-c49a-48ac-93d3-d90ebb0a5157\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/9b/ad/6e/229bad6e-7dc7-4b21-8439-17ae9dc350bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/c6/ae/3c/22c6ae3c-3762-45ba-bb7b-42f54d8b56fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/5d/07/38/225d0738-3cc1-4f5a-92e3-86fb57b6c4e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/5d/dc/e9/225ddce9-db12-4eec-91b7-3a61d9dd9ba6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/e2/c7/b5/22e2c7b5-be90-4ffb-b261-310bce776127\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/40/19/4d/2240194d-a6cb-43f0-b1d8-4beba57f644d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/d9/c3/40/22d9c340-bdc2-44bc-a16c-a5bd3d78cbfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/8d/93/83/228d9383-b714-40c3-ad97-d7ef1c0e87ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/ff/20/14/22ff2014-fd5e-4d0f-be74-bd5f9cad422e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/05/00/be/220500be-46a7-4087-9cfe-f7087ea234fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/22/44/b6/28/2244b628-f476-4051-80eb-ea56e12ce92b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/65/50/2a/f965502a-a7de-4f58-9e4e-64b1409d3ef3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/da/c2/fa/f9dac2fa-0baa-49f3-907f-3308d5904cd0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/b1/d3/a8/f9b1d3a8-2a5a-4192-8fa3-295eebceb9b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/de/b1/3b/f9deb13b-ce5d-4352-83e2-99a671197e5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/5f/09/f4/f95f09f4-57d5-43b0-9a21-20634a6e241d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/3d/99/22/f93d9922-f602-4771-ac1b-2f68fdb03ea0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/3b/ed/e6/f93bede6-3f34-48ee-b258-a59ef1d91ee4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/be/ba/18/f9beba18-0219-4a44-9868-809ee7bc73c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/3e/0e/5a/f93e0e5a-68dc-48ff-9a82-d83e9ab68ee7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/17/5d/d3/f9175dd3-ff35-4d9e-b3cd-c066fc486c91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/76/a9/7c/f976a97c-2b6b-4382-85d4-8aad06644a55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/76/d0/b3/f976d0b3-753a-49f8-84ee-d34fc636bb1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/60/62/0a/f960620a-fb1a-4cc6-a86c-dac2275889b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/e2/9c/72/f9e29c72-89ff-4596-8f7f-f01121bda3aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/73/54/5b/f973545b-a51c-4b38-bc87-758f0e97180b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/4f/0d/2f/f94f0d2f-cd56-4599-865f-efba7ef24b94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/b5/da/b2/f9b5dab2-8ba5-42bc-a2e7-5dffae15ea92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/3c/15/13/f93c1513-221f-411c-960f-05d71bd6d0cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/81/43/62/f9814362-9ec7-48c9-bf56-874866e4b50e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/e3/4c/86/f9e34c86-54d7-45cf-85c2-b8df7b56207e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/02/a3/43/f902a343-ebb0-419d-8d1b-25a671fa0df9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f9/2f/5f/b0/f92f5fb0-6dc6-498e-bb7c-b736a51977c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/8d/ce/f9/b48dcef9-f007-42a4-8557-d289edba70f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/9b/c7/a2/b49bc7a2-d3ff-4cb8-8880-cf30c7e9c025\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/1e/41/c0/b41e41c0-8c0f-443b-a152-d05dd676061b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/58/fb/0e/b458fb0e-518f-4881-b5e1-997519cf8dbb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/6c/6e/b2/b46c6eb2-cbb1-4aad-a984-acb89e650903\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/2d/46/89/b42d4689-5285-42f8-949d-8c503af5bf93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/b9/ec/af/b4b9ecaf-b8de-4514-b33b-9d800d29ba8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/6b/d7/1c/b46bd71c-b317-43e3-aa64-3242d98282f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/f3/9b/68/b4f39b68-76e0-49dc-9b3a-76f12ea47cd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/74/55/ad/b47455ad-4896-4855-aa6c-f9289c2258d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/76/9f/94/b4769f94-e61e-4288-9079-55cc12f9cf48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/b4/b4/8e/b4b4b48e-3b30-4cd1-b55d-0c9f885d741a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/49/83/94/b4498394-f869-4791-9c30-fc4b16505c84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/cf/52/0b/b4cf520b-fc5b-43e9-ac3b-67a8b4975ea1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/46/79/f8/b44679f8-5125-4f07-98d7-233b2cc1a07f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/ed/16/fa/b4ed16fa-af7a-4148-98da-088e45f1d4e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/75/74/67/b4757467-7bbe-46bb-8df8-6e424ac11bfb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/e4/c4/db/b4e4c4db-6335-4b9c-a5f3-3a596de5ebb0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/00/05/f0/b40005f0-c03e-4d7f-9eab-ca201388cba3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/4f/fa/cc/b44ffacc-ee1b-42fc-9113-f2abd93702ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/56/8a/02/b4568a02-7ee1-4d6a-95b5-1d1ac9aafbb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b4/64/de/d6/b464ded6-fcc8-4bce-aff6-b8a39bfbbb67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/58/9c/31/20589c31-c2be-4c58-9fc2-5a5aa2888555\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/a9/42/ce/20a942ce-a9a8-4b6a-a75c-3a6ee0f4648f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/29/c9/a0/2029c9a0-5948-4d8f-86f9-3db3a5203301\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/29/e6/fd/2029e6fd-73bf-47fa-b1b7-4d3a1c3626fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/b8/41/df/20b841df-0c1d-4cf2-aa24-12f44fec4b27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/c3/42/e7/20c342e7-fe1c-4b60-ab55-5b289f98c16d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/dc/7a/29/20dc7a29-2288-4ff8-8411-5718f1d4e931\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/5c/4f/f4/205c4ff4-9d31-46a3-9e47-199c2799cd60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/eb/d8/3b/20ebd83b-c575-4c46-9499-1630aaddc559\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/60/00/95/20600095-909a-4df7-9f69-1157d412e5f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/45/31/be/204531be-2fa2-462f-812e-07287a9ad2c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/0d/48/41/200d4841-ee4a-49e4-b92d-87bc34042fb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/1b/8c/fc/201b8cfc-7d94-42b2-b981-a51b63f52704\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/b6/32/b4/20b632b4-2d9b-4ca2-9447-9e897a32300b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/a7/e9/2b/20a7e92b-d803-4f18-bf9f-2d7bf0492c80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/ca/e8/4a/20cae84a-f787-47b5-9fa0-9b3de3583a7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/b0/ab/2f/20b0ab2f-a491-479e-917d-af098f547c4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/b1/db/ec/20b1dbec-f3d8-4b6f-b346-94f66e4e99c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/d8/11/ca/20d811ca-77f2-4199-8b2a-dff22e869cc5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/7a/07/33/207a0733-3aa8-4afe-9477-fd13b1e7d1e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/ef/ac/0f/20efac0f-87e8-4723-aa96-0d9a0c5ed870\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/20/5e/18/48/205e1848-a93d-4e72-aaa1-5a57f951b0e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/05/65/ea/3b0565ea-9e2e-4a3f-a5e9-71ce7e7a9568\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/85/57/c9/3b8557c9-2024-424c-99ee-783b30b7928a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/50/34/39/3b503439-6d0c-4c9c-a67b-5e333a21c194\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/bf/31/ea/3bbf31ea-57a7-4dd8-9e08-6f2585745303\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/5b/df/fc/3b5bdffc-8093-4b7f-8d1b-4011cd7d60b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/5b/41/39/3b5b4139-6475-47a8-989c-072c94ab1e6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/9f/63/77/3b9f6377-ff53-4534-8f42-10485b3501b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/c5/42/af/3bc542af-d494-4e50-a03c-e162c5e33d93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/b6/f8/d0/3bb6f8d0-5dc3-4bc0-a058-d78c442bd2b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/b8/d7/79/3bb8d779-b1ea-493e-b821-ed564bd197e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/27/c2/4a/3b27c24a-159e-4791-ac77-f81960311b25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/93/21/13/3b932113-68c4-4e02-9ac4-613434f961f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/e4/e6/61/3be4e661-2bfc-442d-8ff2-430c54d230fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/1d/8e/33/3b1d8e33-7e8b-4eb3-984b-0fe64c789b7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/db/7f/df/3bdb7fdf-6496-4c44-8a45-e7fbf8ddc21c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/01/13/06/3b011306-dc14-445c-85dd-7692d68d57a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3b/56/31/95/3b563195-eec5-43da-ab8a-b6404c8efcce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/84/41/32/a6844132-ca44-4124-b25b-880ff4d82586\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/13/cb/d7/a613cbd7-6015-4816-bd67-d2d1e7b96a97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/8d/88/65/a68d8865-95f1-44de-908f-2d5cc5bd325f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/c4/01/f8/a6c401f8-96a9-4691-8fa9-5578998407a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/fc/52/5a/a6fc525a-9982-4aba-a703-8ee9ce8fa174\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/7f/c5/a0/a67fc5a0-829d-4940-ab0e-b4494eb92a67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/a6/6f/22/a6a66f22-1e15-42b7-a292-37cff3b59af9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/a5/04/4f/a6a5044f-e789-48ea-abee-9fa4b625f6e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/26/81/78/a6268178-173c-4db5-b416-28dd73a55fff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/4e/60/31/a64e6031-e1cd-44a3-aef9-6aeaf36dc5b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/63/f6/30/a663f630-d9de-438d-bb91-ece38c73df91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/96/c0/0b/a696c00b-5fa4-4210-beb3-77084c3b78a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/96/55/b5/a69655b5-0fa8-4751-a72e-48b0cf19eb32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/9b/a0/d2/a69ba0d2-9b57-4a86-a426-f93be7574d6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/05/1a/38/a6051a38-8f0b-43e6-a8ab-55402511dede\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/22/6e/d3/a6226ed3-d1da-4090-980c-ce6d11a07751\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/50/0e/ce/a6500ece-7504-4567-ab9a-649a6f7c9b7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/2c/f4/0f/a62cf40f-8686-41fd-82d6-614cea807075\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/93/ad/c0/a693adc0-81a4-494a-8113-4a307d95c635\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/e0/18/f4/a6e018f4-8078-4b7d-9fec-7802ab9f1616\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/73/45/5a/a673455a-69aa-43f9-b57e-c9cd9b67f7e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/a0/79/dc/a6a079dc-1801-4a97-b06a-8d86d62bb8b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/0c/42/40/a60c4240-e502-40d5-9508-7a5e839f2341\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/d1/38/f3/a6d138f3-71da-477b-a179-54b1a367fd46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/b2/dd/f9/a6b2ddf9-6d40-4378-9df3-7f96952771a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a6/24/57/9b/a624579b-4d8f-4f17-93c4-735e1309bad2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/1e/64/9f/411e649f-f6fb-4f87-aec9-c8eb2c84f859\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/1e/a7/a5/411ea7a5-5b6b-4c95-92e4-5ca92f8040b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/7c/13/3e/417c133e-4043-4995-8fa0-d786a295b011\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/27/57/53/41275753-de35-43dc-9ed7-f76495a1ce79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/5d/22/75/415d2275-769b-48ec-aa7b-b6c904155a4f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/5d/6b/0f/415d6b0f-f1b9-4f4b-ba04-221761d17f33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/b5/ba/ac/41b5baac-c03a-4d2a-ac86-4a47bf2a45ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/21/7f/06/41217f06-534b-437c-985f-495a82008c0d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/a2/a0/7f/41a2a07f-d44c-4d4c-8578-19ed5dddcaf6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/e3/13/d3/41e313d3-a95a-4db0-8921-df110e97b8f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/fa/0d/0a/41fa0d0a-39be-4475-a6e8-8ecce316e9cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/3f/4e/db/413f4edb-da84-4eb5-ac44-9bb6e883a013\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/e9/dc/b6/41e9dcb6-18bc-45da-8ae0-4d70fdfc3ec7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/f4/e5/e5/41f4e5e5-46f2-4f6a-a76e-b71ccab7de61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/6a/73/c4/416a73c4-0047-48f9-bc7b-43b6bd301e37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/66/c7/3e/4166c73e-87ba-4698-bd6e-e78427a0ea5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/7b/8f/b0/417b8fb0-7503-4a96-b5b2-c97742bb9691\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/93/72/e9/419372e9-5927-443d-91b6-d2e55ee0042c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/08/08/98/41080898-47ec-429d-ad80-b1e0d8cd793c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/fd/12/8f/41fd128f-a6b3-465c-adf7-7d89e46622d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/37/ac/fa/4137acfa-cce9-42b0-a444-13dff4f4d198\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/88/a6/4f/4188a64f-595c-45cc-96ec-2536b200ea3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/9c/e8/85/419ce885-65c7-423e-b6a9-b971a118508a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/41/63/40/5b/4163405b-d75a-4f65-ad4f-0e6127c8b60d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/66/35/49/8a663549-c2e6-43e2-a8d2-3eabcb5d74cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/20/2a/a0/8a202aa0-88bc-4e29-bafa-d124000ab46c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/a7/43/9c/8aa7439c-7604-4751-94e4-ad9fec69d8b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/be/26/d6/8abe26d6-9f21-4d7b-a8ba-f2537abdfb8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/49/5a/1d/8a495a1d-8bfa-4f75-b27d-186c1edfebe0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/49/4c/33/8a494c33-13f6-40b1-b7a1-0a3f549b72f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/c0/ae/21/8ac0ae21-c692-4f83-8c72-e3fb0405947e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/02/13/d8/8a0213d8-e9f1-4832-a1db-adf189739390\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/40/a9/f1/8a40a9f1-261f-420b-8105-ec9811941a60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/d2/46/dc/8ad246dc-ba60-4f3c-8941-53dc3bc1e96f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/b3/40/50/8ab34050-94cc-4857-86d5-6a15313d9028\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/d9/78/e1/8ad978e1-a5b8-431d-a4c8-dcf1c0e9b480\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/6e/c7/d2/8a6ec7d2-cfba-4330-b42a-fb72e3ac678f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/30/41/2f/8a30412f-c009-479b-90e7-3751a76402ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/cc/0a/a1/8acc0aa1-d802-47f4-a773-91c6adfd469f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/f3/d6/b3/8af3d6b3-47df-4fa9-b85b-08df673d9f5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/cd/33/df/8acd33df-8a86-42ad-ab8a-47b2b1b9af22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/c6/e4/ea/8ac6e4ea-a58a-4741-b38f-a10c1f11e313\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/d7/88/b1/8ad788b1-a067-43b3-b1bd-e963e64785d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/7c/38/40/8a7c3840-a574-44a0-a6f4-59708a9c76ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8a/8d/2a/2a/8a8d2a2a-a52d-4edb-8c34-f3e2835dbf84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/1f/d6/f6/aa1fd6f6-6887-4ca0-a490-3a8b7d6483c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/11/2c/b6/aa112cb6-95cd-4ede-931b-67121ef53df8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/a1/4d/a2/aaa14da2-e609-41e7-940e-d7ef06c55d41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/3c/00/b9/aa3c00b9-40a3-4cc7-b5ae-9a8b2cf1500e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/4a/39/68/aa4a3968-27fc-4167-9bf5-ff90b7b546e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/4a/30/5b/aa4a305b-e69a-4dc8-8eb3-5407b35f011b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/09/fd/8c/aa09fd8c-ee16-4611-ae8d-61bbf6976f2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/2f/45/aa/aa2f45aa-6d09-48fa-989a-92ba8c53ff02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/97/fb/a5/aa97fba5-381c-49bf-a36c-5f8abbd2cb74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/aa/b4/d4/aaaab4d4-4b0d-45a2-bacc-b47bec95ad7f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/bd/e7/69/aabde769-7761-4c56-b202-e1f7daad9b13\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/0c/91/83/aa0c9183-8ee8-4b09-8ff7-125e4f6ef567\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/24/dc/4b/aa24dc4b-5d25-43ea-a9b4-34d8e9886ad4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/b7/09/a7/aab709a7-40b0-4b80-a261-611ab2dfb583\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/88/d5/40/aa88d540-5bb7-47fc-9da2-f7d57444a1cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/f0/16/38/aaf01638-bb26-4745-9555-58ef70904fcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/41/03/07/aa410307-9c6a-40d2-a40b-b886cc207dcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/95/2b/fc/aa952bfc-bb30-4165-96b3-299fe6ac14f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/48/01/70/aa480170-8c1d-44ae-8dd9-ec830cfc1dba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/aa/6a/a5/78/aa6aa578-abaf-4df7-9768-fe4ce0c53f78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/56/f6/4a/ac56f64a-71cb-4475-9bf9-5def9bff48e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/5a/d1/87/ac5ad187-0d98-4dcb-bd71-77d4756541fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/33/76/ff/ac3376ff-45ea-420b-8c14-224f3b3deb99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/4f/0e/18/ac4f0e18-bb0a-41fe-b66e-8649588c7937\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/7b/0b/02/ac7b0b02-5b50-4930-a9e4-7192c5e24b1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/fd/bc/4b/acfdbc4b-b8ed-4e93-b625-585449388b5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/a4/f2/a4/aca4f2a4-89f7-4d77-a60f-53d926f5faa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/30/1a/c8/ac301ac8-59d8-4f2a-9a0f-75cf46456d20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/e8/a2/10/ace8a210-c978-427e-9baf-361b76c01ccb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/51/8c/d4/ac518cd4-bca5-4a99-b2e3-2d09288691bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/64/87/61/ac648761-e560-4db2-b7e9-0f1b411f44d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/6c/20/a2/ac6c20a2-10da-4149-abb2-df4210c8d196\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/26/ae/9f/ac26ae9f-0af2-4e2f-8cac-8040cf5f83f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/fa/6b/b3/acfa6bb3-69af-4207-93b9-44f487e06ef7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/b7/bd/68/acb7bd68-d8c4-4fd9-8c38-b35fade852f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ac/54/53/bf/ac5453bf-c3c1-40e3-88c5-7ab905fcf58c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/96/39/03/a9963903-52af-4707-b368-c2d1ebd3f21e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/96/76/74/a9967674-09a4-4431-9fda-4e3a542654dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/4b/56/d5/a94b56d5-94cc-4456-b236-43a73efaa834\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/21/3e/ec/a9213eec-9e3a-4721-882b-330cbb348741\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/fb/a3/3d/a9fba33d-a524-4203-a04f-82f8da47ce7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/0e/89/48/a90e8948-4f34-4534-96d8-722ce36540cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/ae/7d/4f/a9ae7d4f-5397-4b58-a98a-477c7b40f1ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/47/2b/57/a9472b57-d513-4449-892a-7855218d90ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/11/1c/7b/a9111c7b-492d-43f0-9493-f89c8625eabe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/bf/f0/fa/a9bff0fa-dfd9-4d31-bd43-dbccb5a8a0a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/f8/bc/ff/a9f8bcff-8179-45a3-9324-f5d5ad70737e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/f0/48/5b/a9f0485b-15b4-4f91-8acb-f3363750f7d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/f6/7b/a8/a9f67ba8-ad20-4fc3-a767-7ff6f85a5e57\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/5c/6a/85/a95c6a85-710d-4e45-9f54-75d817d11fbf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/5c/3a/08/a95c3a08-57a3-4bd8-9f24-02ee421ce01c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/52/22/1d/a952221d-8d8c-4e79-b674-800df469d133\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/4e/2c/df/a94e2cdf-062a-4969-b76e-d4aa70eb8829\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/32/e9/81/a932e981-ae57-4159-8f77-c8f5f93d0596\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/af/0f/01/a9af0f01-aec8-446f-a3ed-5feb8cfee398\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/b8/eb/18/a9b8eb18-57dd-45e2-8ecf-5c2e99719f99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/0b/c3/22/a90bc322-3707-4885-a83f-60ae9cac26b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/8b/78/fa/a98b78fa-e27c-4d81-9cb1-9c3297d5148f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/c0/18/90/a9c01890-3dc1-4c58-8b73-1f9354436470\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a9/59/a3/6e/a959a36e-078f-4442-85a6-c8b5ac8ca6e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/3c/60/3d/883c603d-9e9b-4ad4-b5a8-4c005672bb5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/1c/5e/9b/881c5e9b-285d-4e91-81bd-e31d05b0a335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/82/49/89/88824989-9f9b-47ec-b00f-ed323b775562\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/6c/15/b9/886c15b9-5e1a-4f2e-b4a5-19af64430aab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/97/ac/dd/8897acdd-26da-47bd-b310-2a45999aa46b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/97/02/ff/889702ff-d045-4b3d-9403-d3951cbeae66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/32/97/18/88329718-5a2d-49f0-a708-6106fd8a8d89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/32/f1/0a/8832f10a-5456-42a8-8116-5628bbbf9d7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/81/b9/c6/8881b9c6-bd07-4712-b09d-530f86acb2cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/dc/dc/84/88dcdc84-94ac-48cd-b870-d33cec62ba0b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/16/47/0f/8816470f-5f6e-4805-84df-5011f15f27a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/16/d9/44/8816d944-8083-4bdf-97e8-bdea9a7c37dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/ff/3f/40/88ff3f40-edaa-41fd-ae67-b6da98c77440\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/09/3a/df/88093adf-c791-4a5d-9bef-78dc12a08d33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/8a/c7/d1/888ac7d1-dd25-48b3-8eaf-6174ae89df6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/ec/23/dc/88ec23dc-0850-498a-9ed3-7adf362bf09b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/95/16/4e/8895164e-ab1d-40d0-9d72-f358171490db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/7e/ad/28/887ead28-6e6e-49a5-a5c0-4241b4dedf00\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/f4/a0/b6/88f4a0b6-ac40-4877-95d8-ae87b992421e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/64/7f/fd/88647ffd-53d4-4058-b45b-0ca1d011ac9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/1b/0d/90/881b0d90-2baf-45f6-b294-0cd9b1c5b387\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/88/23/b5/4f/8823b54f-d2e6-4fce-9cd7-c95125fd3601\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/bf/c6/cd/9ebfc6cd-3df2-4ba4-b98b-7ea85c1d6a7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/bf/5d/d2/9ebf5dd2-1001-449e-bec9-a4f4a8f76f90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/bf/5d/66/9ebf5d66-43d3-42f4-95a3-c7a1c517e9fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/e7/94/9d/9ee7949d-1684-484d-8089-02ed1231fe4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/81/05/e3/9e8105e3-a5f4-4c30-af55-b2035c93a1c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/81/31/2c/9e81312c-af71-453f-96ad-4a969bdf8f40\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/fa/f1/e8/9efaf1e8-8b05-4e4a-a068-24026e1c953a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/1d/2b/76/9e1d2b76-b369-469e-834e-d1f1b58a09a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/b2/3a/c6/9eb23ac6-fb44-4c23-b1b9-7263470a4b60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/de/95/b9/9ede95b9-e360-4a9f-a021-1cf92c1686fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/de/04/31/9ede0431-be6b-4d27-901d-9efe30f6b866\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/73/b9/ae/9e73b9ae-2803-4890-a8a3-32a0e449a177\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/e6/1b/6d/9ee61b6d-883f-434f-b454-41ab3ab1c4ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/04/8c/46/9e048c46-1cf4-4000-877c-14ee8d9587a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/0d/65/23/9e0d6523-5409-4134-a4bc-82ebfbdaace8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/68/f7/be/9e68f7be-adfc-4c22-86b8-8bdbeca5bf14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/a5/eb/0c/9ea5eb0c-75a9-459b-9b9f-30b9449b55b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/05/c0/62/9e05c062-f406-4455-bb72-9372e869789d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/cd/e9/c8/9ecde9c8-7e76-41eb-a1d3-daa75caadd4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/8f/c7/04/9e8fc704-9fd9-47ab-b16e-1b65a7952011\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/0a/b3/3d/9e0ab33d-5727-408a-aaf8-2d57478d9ff9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/c3/95/52/9ec39552-887b-433d-ad3b-e90cf46045bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/22/2a/64/9e222a64-af49-40db-ac85-bbad49b0845f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/39/ee/b8/9e39eeb8-4163-412a-9aaa-cb313e0d26c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/80/6a/9c/9e806a9c-7169-414b-b751-bc149475cb1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/c6/79/15/9ec67915-9fd4-4493-8337-1a7e38ef53f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9e/6f/1b/9d/9e6f1b9d-1c4d-4fdc-8a44-f8ba79e9406e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/f3/ae/86/c3f3ae86-c597-4175-bb83-43d1f00085bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/5b/e7/56/c35be756-938b-4ce0-8850-96756d5e7789\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/75/1a/72/c3751a72-7671-4c2d-bd7c-738bf562856d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/b4/f3/9a/c3b4f39a-28d3-4de2-8092-beb9e346b611\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/16/15/5f/c316155f-7a6a-4aff-9ad7-9c44bea68e2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/3f/76/f8/c33f76f8-ef32-4410-89c3-3ed8148776f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/0f/0e/f6/c30f0ef6-6c6c-4aed-be2d-c21b9aa833cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/3c/6a/5b/c33c6a5b-d897-459d-8ec6-9a0f30c4b27f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/91/33/46/c3913346-25d7-4f2b-bb22-e501c8a8e674\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/e7/61/1f/c3e7611f-cea7-448a-b84f-3f9c9760c23c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/36/83/89/c3368389-dff6-410f-a349-07b8e917fad8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/32/84/01/c3328401-7164-406d-b357-9431cbe8e922\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/d8/ec/4e/c3d8ec4e-7506-490a-885b-6a0577d1aea3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/4c/8c/ce/c34c8cce-48dd-4ba6-b4ff-d7706d5d7140\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/e3/61/6b/c3e3616b-708c-44aa-bc73-920985ffc004\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/5a/01/17/c35a0117-4626-4320-9b5f-7ef3b82f5755\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/d7/1d/48/c3d71d48-cad5-4b14-a52a-2e0da4eb903c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/1f/48/e8/c31f48e8-e750-42d4-a972-96075a58bc60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/a0/5a/5f/c3a05a5f-b020-41ca-aefb-25aa95f5769f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/bf/da/61/c3bfda61-3243-4cd5-9470-08599c5b2552\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/a3/69/a0/c3a369a0-bba8-496a-8c63-ae299bc93745\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/80/9d/c3/c3809dc3-03e0-4e08-adfa-d6c692ff2679\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c3/da/ca/b8/c3dacab8-7269-4c85-aab6-bf962cbb3673\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/3a/98/46/5f3a9846-6c01-4917-8e2c-35a99d9ea788\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/c0/00/41/5fc00041-1678-40c6-84fc-5be4243b1ed0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/9a/7f/b5/5f9a7fb5-c453-4cc1-8d62-2d7571d49d4f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/6d/21/a3/5f6d21a3-da0b-433c-8650-ddb3515a1a4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/ed/c3/11/5fedc311-8eb8-481e-9732-754b59038cac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/00/24/87/5f002487-8f5e-4398-a49f-cfe78283407f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/be/5a/42/5fbe5a42-56c7-4613-a5e6-e389913af085\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/93/9e/56/5f939e56-4402-4902-ac8c-536fe08dc5b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/18/24/9f/5f18249f-8186-469f-adf3-ca1e7abc48d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/ca/18/fb/5fca18fb-27f2-4188-84fb-f51aaa1c001a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/ca/41/3b/5fca413b-0f13-40d6-ac2e-9e4f75c37e2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/9e/29/b9/5f9e29b9-1756-4dfd-a47c-3e841f8a80fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/3b/d3/4c/5f3bd34c-8b36-455f-95a3-ce3c8afc777d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/bb/a2/7c/5fbba27c-c1fb-430e-b238-33b9a14ce89a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/7c/fd/05/5f7cfd05-be12-49e2-bec2-26c9a33d5470\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/5c/4d/74/5f5c4d74-970c-46d9-9cc2-20332b44bed9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/86/fa/e4/5f86fae4-a6b6-4477-9eda-a350bff10924\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/72/25/c5/5f7225c5-fb1f-4397-846e-816c9518ebfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5f/78/a7/fc/5f78a7fc-d190-4c5f-a84e-aa1ebfe2abbf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/6f/ec/f9/1b6fecf9-d3b6-4d76-a812-c5a1133f6582\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/aa/4a/24/1baa4a24-d002-49de-92d8-9320c1128e1f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/e6/e9/ff/1be6e9ff-6eac-42ac-9127-53f62d036aae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/2c/e6/1b/1b2ce61b-44ca-4efc-97fc-a1e44c02a373\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/ac/6a/ae/1bac6aae-e878-4668-ba1c-1748718f2e1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/1f/e4/75/1b1fe475-b2f9-4ff5-8657-3df3a5b8d65c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/1a/f9/58/1b1af958-9664-409c-8acc-e6360c826af2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/34/d2/cc/1b34d2cc-d661-47a1-907b-02de1befa368\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/9b/ea/ef/1b9beaef-c95c-4536-afb6-3aaa131c70c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/a2/c5/36/1ba2c536-f58f-475b-a762-a5031795fde1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/1d/a3/1c/1b1da31c-07d9-4e57-bb95-d09a34e1ca94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/20/16/a8/1b2016a8-e8b7-430f-8bfe-0aa161e1d9b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/a8/63/92/1ba86392-5eb3-4c51-b971-772619f558c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/02/7d/86/1b027d86-4468-4900-a1f0-402f6fd61ed5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/07/ba/b9/1b07bab9-5f16-45a5-bd63-cfef77e5bbcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/8b/da/9e/1b8bda9e-319a-4aa2-9f8c-25bd82242af5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/44/ff/c8/1b44ffc8-2177-44a3-88da-fe58bc50cd3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/4c/be/db/1b4cbedb-7608-42dc-93d0-c6e055fe05de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/09/d4/d7/1b09d4d7-50af-4807-b04a-1f2784f4e8ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/17/8e/90/1b178e90-e7b3-44d0-ab0e-28947c354691\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/5b/22/e2/1b5b22e2-7468-402d-bf5f-65009b00038f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/64/45/80/1b644580-73a0-4e64-a18c-246889756381\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/f1/8f/e5/1bf18fe5-d5b8-4fde-be4d-d56d7c709c50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1b/3d/ca/ab/1b3dcaab-3322-47d2-9ca0-02a836892518\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/d5/ea/b5/39d5eab5-3b41-42ea-9fe9-444dce541e66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/3e/a2/3a/393ea23a-0a54-436d-9709-2107c1df1762\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/97/8c/50/39978c50-86dd-4b5c-8f62-ecd56401bcd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/71/3f/42/39713f42-c020-46bb-978e-b048c33893e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/14/91/f8/391491f8-b42d-4a29-991d-ba95d384b60c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/67/64/67/39676467-e6a4-46d7-a965-8931eafde892\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/91/63/b5/399163b5-12c8-47d2-9909-9994f1410dcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/d1/1e/e9/39d11ee9-df2e-40ef-9530-bc23e4c79f80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/fb/c7/74/39fbc774-9b3a-489b-bd6e-b595d96d0d44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/df/ff/4f/39dfff4f-52ba-4cd9-b863-a8ccb4ca2c80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/d2/e4/6d/39d2e46d-1065-4305-970b-cbf26a045fc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/bc/07/29/39bc0729-e348-4b70-80f1-402b74a2afa7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/c9/e5/a5/39c9e5a5-0858-42ab-a703-7cb902b14565\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/a0/92/ad/39a092ad-b94f-4e68-b925-40b064077068\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/06/4f/02/39064f02-ca2a-4f53-851d-3c11bd4d7808\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/78/19/41/39781941-f587-4aca-ad05-11c42048d2c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/cf/70/19/39cf7019-b24e-4d71-964b-fba15a979b4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/ee/1f/01/39ee1f01-7052-46e5-ab37-1d44735b614f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/1b/b5/9c/391bb59c-e176-4514-82c0-48353ee4c0e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/ac/3b/27/39ac3b27-c53b-4f99-98ce-cb405b031a38\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/39/19/8a/05/39198a05-e994-4118-95f4-b74f87499d32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/97/d1/dd/9197d1dd-d228-4bea-88e4-e529d42002df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/80/01/73/91800173-c41f-4c5c-aaa3-b266d025f6fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/8e/2a/e7/918e2ae7-553e-450f-bcd9-58a926707a70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/d4/3c/18/91d43c18-af1e-4c36-91c4-59d61767604b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/69/71/1e/9169711e-b4e9-416f-951f-5efb0f71b2c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/22/5e/b3/91225eb3-5f4b-4181-9ccf-f3fd81b1b964\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/94/8c/20/91948c20-54d9-4588-9f21-5f854809bf9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/1b/24/1d/911b241d-279a-4951-909b-12c013deaed9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/4d/0c/a1/914d0ca1-3255-4fe3-bb45-f70be68d70ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/f1/db/a4/91f1dba4-6caa-40b4-89b3-842ee4a7e2aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/53/23/df/915323df-a562-4f6e-9fd0-d994987a57b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/bf/77/07/91bf7707-0ea0-41f1-ad1b-2a056d46039b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/33/81/4b/9133814b-e78a-46e2-be0a-dd7302b5756b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/a6/2a/03/91a62a03-f42b-4933-9004-951c6317acec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/5d/6c/e6/915d6ce6-22f8-4aba-bffd-e8a657da4db9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/aa/f5/56/91aaf556-dde2-422e-a378-a8e80801f6d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/8b/90/8e/918b908e-6ce2-444b-a09c-ea7306e4cc46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/79/0b/68/91790b68-bde9-4ee0-ba9b-0b68e5f3b1cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/01/b8/67/9101b867-7496-45fc-868e-b662659f1d69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/42/ed/f0/9142edf0-9b97-4ba1-8f6d-186355806638\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/d1/27/1d/91d1271d-96b7-407f-8afc-bc0d7dac11d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/db/e3/6c/91dbe36c-ea4e-4c69-a247-5290f0c853a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/db/35/53/91db3553-2625-45bf-acf9-996c43d805aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/82/df/88/9182df88-a585-45a0-bf55-66e78288b18d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/d5/48/f6/91d548f6-551e-4ee5-93a8-c0b675da808a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/f6/ab/f3/91f6abf3-cc24-493a-bb44-19fbf690246d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/cf/a6/df/91cfa6df-efcd-4738-a962-6631c3568da3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/96/46/56/91964656-1932-4920-8683-e60125f79031\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/34/ca/c9/9134cac9-b9d8-4d94-9f0a-05aa681a054d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/91/5b/1c/ba/915b1cba-fabe-451b-881f-fcd0e8f0fb2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/d2/a5/48/45d2a548-005d-42c8-a20c-0d6e7f28e722\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/f5/62/b9/45f562b9-6a19-4e53-a771-4e646c730e78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/2b/36/5b/452b365b-0470-4998-a336-41fcf7853ce7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/09/59/3d/4509593d-1ecc-4af6-8a42-56ede26efd43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/7f/ce/cc/457fcecc-89ef-4b0a-9f30-890eabaad972\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/7f/8a/74/457f8a74-b5f4-40ab-9779-3023d8d3162d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/48/aa/09/4548aa09-7bfd-4dba-b55f-c62c260302df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/ce/3c/50/45ce3c50-b5b2-4af1-889b-7dc2327cd8e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/2f/2d/72/452f2d72-58fa-48b9-ad90-aa96fcf0d165\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/8d/58/4a/458d584a-0a11-41c2-bf9f-8af323a53b1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/04/f1/06/4504f106-0f1a-45af-9601-8bb0fbb52fb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/83/9a/46/45839a46-d972-4fa0-9a9b-61c921f2db14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/c1/15/eb/45c115eb-324f-41a9-b379-b1021154aa20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/86/32/b9/458632b9-cdd7-4190-8d3f-fd86eec5958c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/ad/72/c6/45ad72c6-5e0a-4dee-b22e-bd6c80ad6d09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/a8/56/33/45a85633-5877-4407-9136-e363b1288648\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/b6/d6/f2/45b6d6f2-06fa-4c99-bc30-31928af332b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/06/a5/8e/4506a58e-5a23-4ad7-a0ac-f52a72cc3718\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/32/3f/23/45323f23-3962-4c88-89b5-1485b7d7b486\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/15/18/5d/4515185d-07db-4709-a4bc-7c0920f962b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/e7/73/c7/45e773c7-0c96-4aec-a4b6-e19900dc61b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/20/e5/d5/4520e5d5-da0c-4f19-82b0-4b2932a13cc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/e8/97/96/45e89796-0be9-4f87-88e0-10baa19dc8a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/4e/1e/9e/454e1e9e-6167-4544-9f7c-38afe3cda1c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/b0/c3/1d/45b0c31d-06cb-43ef-9669-2e1cd916015d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/45/9b/76/0a/459b760a-0057-4d01-821f-5f550e73b497\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/9d/ec/6e/3c9dec6e-0464-4395-a2f2-fe62fb47e7c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/b7/5e/9d/3cb75e9d-df4d-4986-a4ac-1a3ff68f8a1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/b0/2d/40/3cb02d40-d2e3-4e2e-9bf8-d82612942d35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/9f/da/37/3c9fda37-5293-4823-b653-de1862849eeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/d2/cb/04/3cd2cb04-70d4-406a-8c78-68f033e6adc3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/3e/b7/bb/3c3eb7bb-eff0-4087-8327-293637653010\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/b4/c9/78/3cb4c978-5133-4372-8a50-017e88985824\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/fe/c2/da/3cfec2da-21ef-4c9f-8ea7-9cdc3ee5accc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/b9/42/48/3cb94248-cc6e-48fd-a780-bd30b1ae5a99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/ad/51/59/3cad5159-d3a6-4933-a279-e4089f540848\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/05/fb/e5/3c05fbe5-6c5c-4ad3-b233-9219071add7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/05/22/93/3c052293-6719-4ba2-a7d2-0aa8634f1ddf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/a9/d3/9b/3ca9d39b-a806-4cf5-a171-cab1543f17a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/9e/b5/db/3c9eb5db-0fda-4378-8046-c04c666d3a8c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/45/66/15/3c456615-af2b-43cd-87d9-fcf55df71403\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/96/11/e3/3c9611e3-7653-49fa-94f9-2cf320abb46f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/7a/9e/26/3c7a9e26-bcc8-4182-882c-eeb681309cb6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/8f/e8/09/3c8fe809-5a66-497b-bd58-9156eef6204b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/ff/d3/07/3cffd307-c329-49d5-b895-e312b473f156\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/4a/31/67/3c4a3167-2169-4816-9b50-6c3dd8a579ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/c8/f3/57/3cc8f357-52da-44e7-baa7-7a17de16625b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/72/3d/51/3c723d51-30d2-4adc-8598-6c316f5d272d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/ab/0d/2c/3cab0d2c-db1c-476b-864e-aabee9b9b69a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/ce/dc/0c/3ccedc0c-4161-4270-8c39-fe89f8a81da9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/71/6e/8e/3c716e8e-593e-4082-85e5-157bce178594\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/54/b3/95/3c54b395-a1f0-4992-a82d-3d4123f40d1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3c/c5/3c/15/3cc53c15-b263-45e9-9c1b-68991cd01ecf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/8f/2a/1f/c48f2a1f-2094-43b5-929c-6f8a25b0a5ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/cf/da/4f/c4cfda4f-d64d-4067-91ae-9ebd51231c16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/14/29/cf/c41429cf-a3cb-4516-bdf9-c72203de0128\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/6d/d5/bd/c46dd5bd-af15-428e-8d50-5b2d4d3d6b50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/3b/9f/f6/c43b9ff6-b55d-4567-bbf9-0f2ce58f9fd7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/7a/d8/73/c47ad873-3d5e-42b8-b1d5-8553bf9299f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/9a/9a/61/c49a9a61-cbd2-4451-bbd1-d737052d1f31\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/1c/e1/59/c41ce159-8964-48b9-b525-e4cd19f14275\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/e4/37/a7/c4e437a7-b1b8-4646-b761-4f8926b486b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/c0/cf/cb/c4c0cfcb-89e6-42a4-86b5-7c67531ded49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/0e/e1/ac/c40ee1ac-1cdf-4e71-8097-5f45e8d6cf70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/76/61/6e/c476616e-37e5-407a-9a61-503f9bc0cd35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/76/4a/3e/c4764a3e-99e7-4de4-b08f-8ced5b36347d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/ed/cc/01/c4edcc01-a996-4343-8323-748b2d3d65b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/ff/57/d5/c4ff57d5-dea8-46d3-a63c-7f99cc677d2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/aa/02/46/c4aa0246-b1bb-47f3-b240-6dc014824aa4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/13/ec/76/c413ec76-bedc-430c-8a19-5e0962b73041\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/a9/98/98/c4a99898-04e4-41b6-9247-befd77c979c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/0f/c7/ba/c40fc7ba-4668-4961-84cf-f0f8e485630f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/6a/0e/fe/c46a0efe-774c-429e-be8a-06da818539fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/39/56/99/c4395699-3f9a-4cc3-ac5a-eb1b521d81fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/89/cb/42/c489cb42-7471-4ea1-a710-8a8510bbccfa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/fb/77/5d/c4fb775d-c52e-47f3-85b7-eb0fd5a3d09d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/ab/e1/b8/c4abe1b8-91e2-4dd0-be16-c72d8427b59e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/c4/1f/2b/c4c41f2b-d8f3-4d12-9d83-e07ff46a7dd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c4/8a/a1/e9/c48aa1e9-aec1-4751-939b-62a572c76c00\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/de/1f/d2/5bde1fd2-aac9-487b-820e-697425781c42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/9f/9d/21/5b9f9d21-f209-45df-a496-8d2a0b1b3446\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/58/23/2a/5b58232a-e572-425b-a378-26542f235203\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/1e/58/15/5b1e5815-b4d7-49d7-8674-1b2a1079d77c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/bb/fc/5d/5bbbfc5d-514d-40ae-9551-b40ded6125ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/71/1b/e8/5b711be8-a9a0-408b-be74-2366e9921b65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/65/bd/c1/5b65bdc1-2d4c-4bbc-b404-28a89d34b986\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/3a/04/5e/5b3a045e-0686-4453-abdc-a957c4ee1c74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/46/1e/ce/5b461ece-1370-4ade-bc02-aa839e63eadf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/c8/7f/54/5bc87f54-4935-4246-bc56-b99d0294e4a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/a6/25/09/5ba62509-d536-4e74-a76a-8b893742837a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/cd/11/b9/5bcd11b9-0818-44ee-b8fe-16e4772e137a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/3f/0a/e2/5b3f0ae2-53e2-4276-89cb-9d5a7f383f3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/44/42/05/5b444205-d4aa-4210-b8d8-1b2d7774aaff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/f3/55/5f/5bf3555f-9a15-4f95-8883-a9c86430c56f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/9a/23/9f/5b9a239f-7cf4-4d39-bbe4-e664da0c8430\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/8f/a1/e2/5b8fa1e2-77f2-46fc-ba49-90c4af5657ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/d1/3d/63/5bd13d63-63b5-4df1-bffb-dffe8e2d52f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/72/1d/4c/5b721d4c-ca23-4473-8248-1e2447581fba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/fd/4f/e8/5bfd4fe8-ce66-4d18-ac16-ab3d5587ec50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5b/d7/56/4f/5bd7564f-5cc2-4dd8-9f5c-4614e8f7398e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/c4/37/c5/d9c437c5-9618-433b-9f16-b44fa0a520c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/1c/30/9d/d91c309d-bd61-4f96-a04f-851d275ec59e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/07/37/f5/d90737f5-f9af-4d61-bbb4-4e0985c5e0ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/08/d7/76/d908d776-44a1-42f5-9f69-44024db9ec7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/94/0c/b5/d9940cb5-6fc6-4558-ae1b-b136221d18b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/db/d4/f6/d9dbd4f6-6f51-4367-813f-3e88b4ecaeed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/5c/49/88/d95c4988-e6c9-4e4d-b948-7126ce2e73bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/22/ed/9c/d922ed9c-14d5-43cc-8872-9f4c3dcfc84e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/79/4e/65/d9794e65-efd5-4ec1-91c6-dd5c098d0955\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/5f/40/ad/d95f40ad-584f-4c5d-ad0f-8db5824e7f09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/60/8a/a0/d9608aa0-fa7b-4194-8a6d-cd93fec3a23c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/73/d7/93/d973d793-b243-4df3-aec8-04660467382d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/aa/d0/00/d9aad000-ea0c-4b83-8398-0ba581c029a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/d6/48/1d/d9d6481d-8281-4316-89c3-25babd538884\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/e3/58/50/d9e35850-033d-4d5b-b6a5-564df8560716\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/a5/80/48/d9a58048-b836-4770-8fa4-5de8850ae641\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/ed/5c/c7/d9ed5cc7-cff4-46c7-9924-c33499a4f1ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d9/54/12/b2/d95412b2-3078-4d5f-8e67-43027d626499\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/b8/d4/cd/89b8d4cd-19f6-46c3-aab3-454eef195ddd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/59/07/0e/8959070e-2274-430e-ad04-d5623ba441ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/0d/7f/56/890d7f56-19c1-4951-998f-d6f9fb7e7484\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/0b/6b/1d/890b6b1d-ddf4-4bde-89d7-4611d3ac8a85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/4a/22/d6/894a22d6-e81e-4ea8-9581-decf6a7dad22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/26/6c/50/89266c50-968d-4968-8ec8-f2e823725f87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/d5/fe/70/89d5fe70-af1b-4ff9-9d6f-ddf4681dd98c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/82/c5/a1/8982c5a1-550f-459e-a033-68c44c4b786a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/d2/f0/45/89d2f045-0361-46f0-b8d1-c6277f4df21b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/5e/a0/0d/895ea00d-6e4c-4024-b1dc-d2bbaa054576\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/1f/e9/40/891fe940-59af-4ffb-b2ad-28aeb60e1fe7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/f1/66/02/89f16602-5909-4343-96dc-dcce80994639\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/89/64/47/df/896447df-7bc4-4ea9-9363-62014542f7d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/05/db/98/f805db98-1cc4-452b-a0c7-2c14e5af1f06\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/1b/04/7a/f81b047a-eefa-406c-b04d-b3b5db775750\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/d5/0d/01/f8d50d01-9ea8-4f39-a840-ee651d3bda81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/c3/29/94/f8c32994-de79-4157-874f-ad906bc31182\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/91/58/fd/f89158fd-e407-42a4-9c83-10b715efbba3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/15/50/6f/f815506f-47fe-4b89-bcdf-736b72749c11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/15/5d/ae/f8155dae-7d3c-47ee-9b8e-24e8dad3a0a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/d7/e6/62/f8d7e662-5611-4fa6-bf9f-ef5f7964fa5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/2c/aa/72/f82caa72-e211-4b1c-9e01-e30c0f0dfc68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/b9/0f/2f/f8b90f2f-1bd9-47c4-8b4e-5736fc9c36d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/4d/e7/60/f84de760-4f6f-4e24-af35-e04f601d56d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/69/99/cd/f86999cd-ed81-417a-9de4-bcac29beb9d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/77/79/10/f8777910-6c95-4173-bb24-2426e788c4e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/86/11/6d/f886116d-e92a-4141-9e62-843fed498e89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/86/5d/65/f8865d65-61b4-44fb-8aef-9d9e90d5f07f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/02/e4/e0/f802e4e0-11b6-47ce-a433-1939aaffbdf4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/d9/95/d5/f8d995d5-24ee-44d6-851d-b961ab395f63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/e5/99/47/f8e59947-e3e8-4500-82a6-1aad710569d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/6e/b6/e7/f86eb6e7-4861-404d-a855-77916717579b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f8/b7/8b/07/f8b78b07-c30a-40f4-b996-082c6420c2ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/8f/61/19/c98f6119-395e-48e9-acc0-94fb9b859130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/02/56/c1/c90256c1-c14d-43f2-b413-81013bb1485d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/4e/2b/14/c94e2b14-1c13-461d-a320-dbf29c69ddee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/e2/cd/96/c9e2cd96-f300-4fec-a074-7f036c61cc5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/2d/cb/2d/c92dcb2d-3bf7-4626-afdc-7e17fed7a1d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/2d/9d/da/c92d9dda-f3e6-42cc-9b66-f3df74ac5601\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/e1/99/fe/c9e199fe-845a-4814-8d77-0a619f4173a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/77/b8/22/c977b822-443d-48bf-b9da-651704ef2e3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/fc/63/86/c9fc6386-ab9f-4c09-948c-7e4670464026\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/a6/70/f0/c9a670f0-f25b-4d95-83a3-159a67b1a296\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/0a/20/f3/c90a20f3-ce47-40d5-9808-9f8193fe7d44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/95/d0/6b/c995d06b-0e3b-4f5f-bcb0-bb8b6f66773d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/ab/e1/f9/c9abe1f9-922b-4982-9d40-3c42541006b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/aa/cc/e9/c9aacce9-7be9-4961-9b41-a5632de7185f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c9/b7/f6/5f/c9b7f65f-b7a9-469e-9544-af469b5d5e18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/95/42/aa/9d9542aa-1495-40c6-b1a2-c13507f9a247\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/fa/c5/45/9dfac545-0650-488f-8ac0-94471a411f21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/b7/fd/e4/9db7fde4-1530-4c77-bc0e-8b9435d9f09c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/4e/5b/a0/9d4e5ba0-e026-4aa4-b0f0-2c31c64020a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/25/b6/91/9d25b691-dd46-4064-9abe-6aa92b9791b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/25/2d/d1/9d252dd1-ab2a-4b65-9ea1-73072fb13aaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/c2/b3/c1/9dc2b3c1-b7cf-4406-9a8d-3b658bceb7b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/0d/7d/cc/9d0d7dcc-63b9-469d-b964-11ac573548c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/b2/4c/07/9db24c07-e615-4d6f-a160-607ddf7f2cf6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/3b/a8/89/9d3ba889-5535-470f-a904-7aaaab6b2af8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/3d/0f/02/9d3d0f02-fbe9-44ba-9b74-a3d05cbbc868\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/26/06/40/9d260640-7133-4b19-aa31-1137c024c424\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/83/b7/8f/9d83b78f-7243-4d4f-87fb-fd5e81509afe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/4a/64/73/9d4a6473-d474-4f66-a684-c064bd744c34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/d7/38/1f/9dd7381f-8b8b-46a4-baec-f4cf282630c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/f3/8f/00/9df38f00-240a-4921-835b-de32b33ccb69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/74/fd/b0/9d74fdb0-fcbb-495c-9518-3bb24d906140\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/0f/54/31/9d0f5431-4e84-49de-9414-73ad57084f51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/f5/84/fe/9df584fe-b3bd-4491-b3aa-2fa0f05b7a96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/3a/2c/6d/9d3a2c6d-fc84-4485-b4d0-68628a6a7b2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/82/1c/a6/9d821ca6-a1dc-4bb1-90e7-38be04ace63e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9d/21/6a/93/9d216a93-b710-416e-b3ac-297495dc346f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/89/29/5b/3a89295b-f462-42b9-b051-4c458ef3175b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/fd/da/ab/3afddaab-884b-4a3e-858d-d6d6090ad712\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/9a/aa/9e/3a9aaa9e-6681-4604-a2f9-1a699c7399f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/2b/ea/45/3a2bea45-1ec6-4387-a0a8-930b031f3ca1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/20/4b/e4/3a204be4-a460-4483-b07c-a5a7fd0fe747\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/f5/b8/f6/3af5b8f6-3efa-43e2-a261-e56f00144b03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/57/4d/29/3a574d29-a70e-4283-baff-1c6320189a12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/8f/12/c4/3a8f12c4-1705-4e09-b99c-f2a5519a2f25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/43/fd/f2/3a43fdf2-b67f-4eb2-93b7-2320330a38f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/ec/af/e8/3aecafe8-2738-45be-a207-718581c70119\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/ca/2f/fa/3aca2ffa-f4b3-45d3-8cb1-d5194c15ebda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/3c/7f/2d/3a3c7f2d-c84b-4c26-8bb2-28530d3d77cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/c9/6a/f5/3ac96af5-1406-41a0-b64d-ef8e9dd19b5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/79/95/67/3a799567-84af-4889-bdd7-03efd0c38321\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/35/3d/92/3a353d92-5d38-4151-87bb-18a795cee48c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/e2/d5/d9/3ae2d5d9-930c-4e34-8e8a-4d4ebc41b4dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/a1/35/3d/3aa1353d-019b-4370-9d34-790c77f92715\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/de/43/ce/3ade43ce-84d7-497a-ae29-4dff35d88f82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/aa/8e/a6/3aaa8ea6-cfca-469f-97e2-8977a9c0f5ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/aa/e3/37/3aaae337-086e-40dd-8e19-d0ad755811a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/b7/b7/9e/3ab7b79e-cdd1-4124-838f-c4584f61dba8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/1f/ae/e1/3a1faee1-99fe-4861-855b-45fb81dc1b2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/e1/40/56/3ae14056-25b5-4979-8977-20be24f17bc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/38/5b/c9/3a385bc9-9041-4f14-8087-5f83107c2f37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/b0/4a/2c/3ab04a2c-973d-4c85-a486-9318ca63e0fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3a/3a/52/2d/3a3a522d-38c9-446b-9ea8-51d2287e73ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/51/05/28/21510528-7dc5-43c5-bbf1-f6eb6144416b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/6d/15/9a/216d159a-c87e-4169-9fb0-b4672a30647d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/7e/f8/0c/217ef80c-ed76-4da8-a3c3-a57abde8d5af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/a7/a7/0e/21a7a70e-f68b-48c1-8ef6-ae46334f4f90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/ef/39/f0/21ef39f0-20be-4f3e-a6f3-6f938d962634\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/ef/ee/76/21efee76-27b9-4b58-a4bb-3bf217474a17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/47/a8/70/2147a870-5583-4916-8ac1-cd93e9e6d9ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/da/43/20/21da4320-c250-44ff-a42c-4fd4580c479e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/3d/01/bc/213d01bc-9726-46ea-8e1b-68bcfcfc23ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/01/de/d8/2101ded8-dcfa-43bd-b608-6b107bbbe61b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/9b/f8/c6/219bf8c6-fd2f-4847-bb52-8dccac2b61a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/16/40/6e/2116406e-615f-4a08-900a-69b214888378\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/60/7b/7e/21607b7e-85a3-403c-ab01-7c5bc8e3a88d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/09/ec/c1/2109ecc1-99b0-43de-98c2-5ac34917d70b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/3e/32/89/213e3289-8907-4c88-b951-bbad0d6dda9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/72/d3/e2/2172d3e2-c645-4a7f-b9b9-655b7b39dfad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/1a/93/37/211a9337-0222-47f9-abe1-bc54c0f43b9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/a4/7f/14/21a47f14-5df3-49ef-8f87-b52f389c2159\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/9f/4b/53/219f4b53-4448-41ad-bb63-2ce23f266f0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/d3/ad/86/21d3ad86-6a5a-41b3-aca9-7bd29ff5f3d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/d2/f2/a3/21d2f2a3-ffb2-490e-967a-120ebcd568a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/e3/93/b8/21e393b8-b3e1-4533-9eca-e7d58cd62f92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/f3/ca/7f/21f3ca7f-a110-45ba-b529-672a428ad88e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/21/f5/e2/8c/21f5e28c-4156-460b-b39d-a8ced1173532\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/8b/37/e9/478b37e9-f84c-4a77-98df-ab8a01402515\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/b7/25/15/47b72515-6dcc-4de6-86d1-af40f978f102\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/3f/56/1d/473f561d-8e33-44af-befc-6278c0053f63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/2d/1c/72/472d1c72-b5d0-4815-a165-a4ae3bac220c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/30/1c/30/47301c30-3fe3-47a1-a850-53740dbedf62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/bf/88/c4/47bf88c4-80f3-4cb3-8369-3e6fcf47a48b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/d1/a5/0f/47d1a50f-8fbf-410a-9f3d-1a11916ccb9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/0f/c4/6a/470fc46a-0d93-4c62-bd8a-4e7e4f6965c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/7d/b5/d5/477db5d5-b678-4b3b-9406-4cbafa469266\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/2b/0f/62/472b0f62-88e3-4c95-8950-33a4a12e8237\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/d7/b4/0d/47d7b40d-dd32-471b-a58d-dc3656e2ac3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/2c/a7/33/472ca733-4c9a-47db-bee0-e91fa5c161a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/dd/f6/56/47ddf656-d2b5-4b9c-9145-2b47acaf251f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/fc/a4/15/47fca415-fd2c-4f3e-8013-c8a776090a33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/74/67/bd/477467bd-6668-442e-940f-78e3575370d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/68/67/15/47686715-e0bf-480e-915c-2ab3499f7723\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/54/f7/a1/4754f7a1-7e27-49da-81ed-82d70fa7719c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/ed/0f/3b/47ed0f3b-c7ef-4423-af2d-fa89e43cf7cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/e4/5c/94/47e45c94-6c5a-49d0-8bd0-e253f0decc73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/39/30/fb/473930fb-defd-4cf4-9f02-d40cc67dd9c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/99/71/ce/479971ce-789e-4b03-a428-19fdaa80af1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/c6/df/de/47c6dfde-ab12-4064-83dd-4097e6b9c96a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/41/12/5e/4741125e-821d-4430-b4dd-95d0816a782e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/67/aa/6e/4767aa6e-bf4a-4ddf-878f-81f987dc5b5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/a4/c1/63/47a4c163-230f-4f1f-b49b-b74ccf74679e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/47/ff/ea/1b/47ffea1b-56c2-4901-a9a5-ae9d4a604da3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/6d/0a/a6/e96d0aa6-d90d-44ba-8c47-e46f52eb5e82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/64/2b/ed/e9642bed-f8e3-4043-9733-eaa6cc382ba0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/77/e8/5d/e977e85d-f637-4535-ab60-6808e8da4568\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/3a/70/00/e93a7000-0119-4008-ab52-4960ef93ebea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/ed/80/1a/e9ed801a-35ce-47df-8d94-9fc20a1e8c79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/88/28/8b/e988288b-f65c-42bd-b192-b4c045b08582\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/4e/23/fb/e94e23fb-70db-4a3f-941f-5d518b9d7d83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/f2/61/a1/e9f261a1-7b21-4dfe-9416-2c2c2f389e5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/65/eb/27/e965eb27-9bd2-407a-aa21-7c1d2ce59362\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/b4/dc/aa/e9b4dcaa-e148-4060-a8df-cb67cfe90976\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/b4/36/53/e9b43653-3d63-4ea8-a21f-964abf9c8d77\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/ba/a9/e1/e9baa9e1-d17e-4bdd-a3ed-f995c5cb45fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/1a/3a/57/e91a3a57-f3eb-4ddf-9759-ee64945b7a90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/4b/1b/85/e94b1b85-7596-4833-beca-2a03b7b50aa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/5d/71/59/e95d7159-ad29-4312-9c2e-5b2631f65cf1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/5d/91/c0/e95d91c0-86c0-46fc-b997-642f926f5e8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/b2/53/4a/e9b2534a-e7bb-48d2-88a0-34ecb59be855\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/00/fd/8c/e900fd8c-502a-40c4-9dde-ea46a19271be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/56/b7/a9/e956b7a9-6f52-40c5-b98b-53620ac3fe4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/6a/24/2c/e96a242c-c14f-42ec-8c52-4cfb13ca774b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/03/df/dc/e903dfdc-f92b-47dc-baf3-5a25a8f2d669\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/36/ab/1c/e936ab1c-046a-48a3-b0e1-70db346396ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/18/ad/ed/e918aded-d1f4-4b99-ae64-78497a397f55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e9/14/f6/11/e914f611-ac7b-4d02-b3e1-7097b3bc2497\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/e1/7e/1d/36e17e1d-d275-47c7-9eef-4e91984ad3c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/e1/58/59/36e15859-ac2b-422c-8ca1-935e5499a572\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/e1/4b/33/36e14b33-65f6-4dd5-bb58-b384b1dec202\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/ed/6b/81/36ed6b81-de7d-4aad-936f-e62fc732a82d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/3f/58/f4/363f58f4-1a31-4454-9a34-a8cc7cde84d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/3d/43/2b/363d432b-8dd5-4df2-b20d-c0b6c0877e6f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/0c/a1/9b/360ca19b-3934-4e31-ac99-e4bc18596880\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/3c/88/80/363c8880-1d54-41b9-9c06-075b48b71919\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/ac/ac/5b/36acac5b-87c3-47d0-b086-49b07c3a109d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/0d/42/99/360d4299-1f1b-41d7-a36a-162ab9064d75\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/8f/4b/ca/368f4bca-5aa6-4eb1-afc7-f636d16ef362\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/f4/6b/78/36f46b78-cb54-4185-94f9-b7e3fc62e2b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/7f/c1/ea/367fc1ea-8a69-4f97-b33b-1c1ca57e8c70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/d1/1a/a9/36d11aa9-1d12-4477-b5de-10bbedd60a1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/9e/49/e0/369e49e0-2737-4e2a-bb3e-6055f4da5683\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/af/a0/dd/36afa0dd-41b4-4f54-a5f2-f4848f66a804\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/47/70/8c/3647708c-ffdd-458e-a277-490677ec2139\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/5b/cd/69/365bcd69-29d6-4729-ada7-fd6c749c5148\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/b4/57/ae/36b457ae-a9a9-49c5-90e6-daac56cc7eb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/58/93/9e/3658939e-2c91-4bd7-ba45-69e46d05cd9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/f6/1d/fd/36f61dfd-9ff8-4504-a47e-f89c11c8cb86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/96/db/83/3696db83-3f12-4991-b117-836bbd3672b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/75/aa/17/3675aa17-55c9-43c6-827a-ed440f8f0e68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/95/9c/4b/36959c4b-923e-44d1-8e91-d5ec1d571a61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/36/57/28/ea/365728ea-14b5-4517-b117-be2710157b83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/08/3b/b4/2a083bb4-6ddb-4f02-a2f8-d31e1714fa7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/25/81/bb/2a2581bb-1008-4e13-a54d-a2aede97a6fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/3a/ae/3f/2a3aae3f-06b1-4c7f-9d68-fcfacfe5e916\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/9d/0d/2b/2a9d0d2b-3688-4c5b-8528-4a67386a4b7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/9f/bc/0d/2a9fbc0d-5115-47f3-bf7e-3dd76fce11bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/ea/45/09/2aea4509-1d22-4a08-87da-99d245d9e402\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/91/72/4e/2a91724e-b975-41eb-a5f2-8db2261636ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/dd/68/55/2add6855-fbe4-4a0a-949b-271f38c16df0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/2d/f3/48/2a2df348-ebd6-4dc7-973d-54f4fef06607\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/e7/91/78/2ae79178-26f4-4713-988e-2d4c341a4bd7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/d8/6b/77/2ad86b77-728c-4e7c-aea4-63729edb9ef9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/87/01/67/2a870167-b1c3-4f60-a1ad-9c7584c3a5e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/70/74/a9/2a7074a9-e1d1-4053-8f43-8e4145531da4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/9b/7d/c9/2a9b7dc9-07e1-4db9-9197-378ab716a69e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2a/8d/aa/66/2a8daa66-347b-4ee7-b6c9-5e1302e6a69a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/1b/84/ab/ca1b84ab-7006-4215-b8d4-73f331e26fb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/67/c2/61/ca67c261-bdae-47bf-b4e5-2d5da2895f74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/54/6f/19/ca546f19-b5ac-4462-8786-7836cc8fc43a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/bb/67/9d/cabb679d-e844-433b-881c-b4afaad876bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/bb/04/64/cabb0464-dce1-468c-90ba-7e6f2ca84c3b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/97/b5/99/ca97b599-992d-4d60-b613-249d6cdf7bec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/49/8f/e0/ca498fe0-2f37-43c8-8b90-10637fdcce93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/8f/54/45/ca8f5445-84c0-4a93-b989-c0e802526855\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/95/13/69/ca951369-00d1-4128-9306-16627ec9b8f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/2f/ef/d7/ca2fefd7-4fb0-4c14-9529-c9591b1d9d62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/47/a8/49/ca47a849-48d4-4ab9-b2bb-b9f9d3f1a1ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/4e/1c/29/ca4e1c29-855b-4653-af2f-5bbe06462df9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/ea/17/01/caea1701-c8a6-43b0-aff6-83954b08bbee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/ea/fa/dd/caeafadd-ee17-49a7-a9db-4e97df273cd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/17/7c/49/ca177c49-ae31-4468-ba46-0c752eb0577c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/ec/51/83/caec5183-b493-4910-9214-037f2b0104e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/d8/61/a4/cad861a4-7531-46eb-83e2-92dec67ede24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/b6/6f/a2/cab66fa2-455e-4a9a-bfbd-2eb4272a699b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/99/c6/a9/ca99c6a9-3773-4122-83ba-7149c2cd114f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/58/73/45/ca587345-91c5-4ecc-985e-cd708a5df099\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/9e/95/a6/ca9e95a6-a0c8-4e62-b168-ad60c4f66a98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/26/e8/35/ca26e835-187a-4445-8c0c-635cbffc4a35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ca/70/7a/b1/ca707ab1-6be3-41e7-bcb7-a26179ee2f6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/05/42/d9/a80542d9-38b7-4ea7-8fa3-bb747d507ad9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/67/ee/57/a867ee57-0ef5-4fd6-bdf5-46854a0c232a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/e5/aa/dd/a8e5aadd-2da1-4dbb-bd89-2dbab2da3ddc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/bb/d3/0c/a8bbd30c-8e1e-464c-a002-786650acfa64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/68/6b/90/a8686b90-400e-4b94-ba37-4c9656a29ae5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/a1/0f/ca/a8a10fca-2793-46ac-aedf-c41a558aec90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/f4/0d/de/a8f40dde-4826-435d-b4b3-b22dad8e47cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/f4/18/08/a8f41808-5adc-4e85-9acb-685adb635732\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/14/cd/21/a814cd21-f513-49de-a43f-eb189ec45c23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/6d/97/fb/a86d97fb-72b3-42c5-be53-d0a3279c8ef8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/cf/0c/7c/a8cf0c7c-0bdd-498a-97a1-069a616b35e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/97/06/8c/a897068c-84d8-4485-b0d9-0e85827ebcfb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/b4/a7/4f/a8b4a74f-5904-43be-b823-9ebd2c18aad6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/5c/a0/8c/a85ca08c-3e3b-4583-960f-b67675d1cdee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/4f/7b/14/a84f7b14-7330-4201-8bbb-e050b29b44c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/33/f7/ed/a833f7ed-cd7a-49a3-aa66-205eaf95f7db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/98/19/02/a8981902-0435-48b3-a1eb-bec7a6e5712d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/7d/15/18/a87d1518-dd6c-4718-8f51-4d57293ffdcb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/10/5c/f7/a8105cf7-5be4-40bb-a74b-620dcc0c1faa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/ae/9a/f6/a8ae9af6-88af-467e-93bd-3b84100b46dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/47/02/f0/a84702f0-7574-42d3-9109-132fc4ab546c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/cd/04/a2/a8cd04a2-d9ed-473e-b4c0-eb12104f4898\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/93/dd/c1/a893ddc1-cab2-4903-b2a3-9df4b9a4d466\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a8/b5/aa/fe/a8b5aafe-74ca-462c-afa2-9ac2d3820b45\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/c7/f3/21/fec7f321-bd0b-40e7-a956-41ab0c660eeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/c7/d8/dc/fec7d8dc-58ba-4d7c-98ff-dfda644aef52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/b0/17/6d/feb0176d-2ea7-465c-af09-e0732ee462f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/6d/09/9d/fe6d099d-8a05-434a-918b-8d22ce8b2226\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/49/51/11/fe495111-2a0b-47d3-88e8-72ec1163abf3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/94/f0/f5/fe94f0f5-a606-4481-ac50-6c8dca07b9f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/70/20/4f/fe70204f-052d-47a0-9746-4419fcebd33f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/70/a1/4f/fe70a14f-df00-4615-b1f3-a50a34436140\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/b2/6e/08/feb26e08-efeb-4614-9792-94dc46fd6bcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/87/91/dd/fe8791dd-12d5-465e-9922-8da18b66d5dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/14/6d/6c/fe146d6c-8d87-4086-9396-3e44af7e6862\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/c5/19/68/fec51968-08a0-4779-9e7a-fb01771a313a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/0b/3e/63/fe0b3e63-efa9-4c5d-a542-510db6b1bedc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/4d/5a/e8/fe4d5ae8-7a0f-46e4-8fd0-8272eb2919bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/22/8d/f5/fe228df5-16ce-4024-bac6-79b0686adf60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/35/f1/47/fe35f147-d79c-4709-88ce-9f2123703d91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/e3/b1/b5/fee3b1b5-479b-4f21-9115-b421a4aa5adf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/e3/09/5b/fee3095b-5b3a-4fa2-a675-73916282257c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/f5/9f/c5/fef59fc5-ea65-4949-b222-26714fb252b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/58/4d/52/fe584d52-3ac4-4382-9359-e96b8b0aa647\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/a6/5f/c8/fea65fc8-f0f0-4441-86e9-d9bd7e596945\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/07/c2/49/fe07c249-995a-4be9-83a1-e6948537c4b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/bb/e4/96/febbe496-88a3-497a-a035-fba81e1f0e6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/d3/ed/56/fed3ed56-490a-45f5-8d4e-4558c16a2ba8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/2e/7d/16/fe2e7d16-2c04-4fb8-9045-9cb68de2c4d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fe/59/25/77/fe592577-62e8-4b35-a0d6-a9463a43a9bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/c0/d7/71/18c0d771-b246-494b-9993-b40d43c09850\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/72/57/b4/187257b4-4140-425f-bd01-dabd505587da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/a1/47/7c/18a1477c-7ac6-49e6-9984-1088e5436d46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/92/6b/1c/18926b1c-abfc-4737-bbfb-d455dfe9a719\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/92/13/99/18921399-c0ef-450a-ba70-660081188367\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/ed/74/08/18ed7408-4eb3-4dd6-80de-d34d397b23dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/31/47/99/18314799-18ec-4378-9726-1569404776f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/de/a4/0c/18dea40c-5257-4432-80b9-dc518bd90e08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/17/8f/bf/18178fbf-e4ea-47b9-9337-c2fff21bde81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/d3/c3/da/18d3c3da-8e40-40f9-8923-061a45ec9d7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/20/64/66/18206466-b9dc-448b-884b-86fe2feb93b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/54/4d/45/18544d45-98ca-470d-adcd-5a963ea96d7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/ad/62/c9/18ad62c9-6aee-4026-ae5f-2af3db2fcb85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/3e/61/95/183e6195-869c-438b-baa9-35c9734a9669\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/be/72/09/18be7209-3836-4071-a8ec-e4d0ec0774f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/95/dd/04/1895dd04-402b-4e57-bbef-27e2251c69ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/5f/40/c7/185f40c7-d5cd-4940-ada7-03cc427aa5de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/53/2b/0b/18532b0b-1c57-4a67-a3fc-4c9e4a07099d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/e3/f7/88/18e3f788-8931-4d33-bcc9-e1d320e58ec9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/51/81/fd/185181fd-e59a-45f6-a50b-99b0140586fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/18/bf/be/8e/18bfbe8e-cb24-4da1-b7f6-5ab41fb3b50d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/c9/1f/cf/7ec91fcf-8a52-4aaf-8b80-dee21cfe38b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/d8/9d/6c/7ed89d6c-55dd-4701-9e96-6b8fb19b3d43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/5a/82/6c/7e5a826c-d0e2-41a3-acba-b8ef105d8503\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/99/0f/1c/7e990f1c-5748-4a99-946f-1e807a0861a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/7e/2e/f7/7e7e2ef7-3c79-4af6-9aef-71e3102e7a2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/42/54/a7/7e4254a7-5b82-4da4-85c5-a0b6246941dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/26/8e/ed/7e268eed-82ec-4d69-b415-f5b3f735c8c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/db/33/b6/7edb33b6-118a-4fac-8bb6-70cd66e2c17f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/e1/97/48/7ee19748-bb68-4a9b-ae64-0494ba226db9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/d9/28/ac/7ed928ac-29e0-4e2a-ad30-b8a287bf5abe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/6b/a2/3a/7e6ba23a-6812-4a6f-ab4d-ebad2b25928d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/f0/42/52/7ef04252-21e7-4072-830d-c103366d4822\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/f0/5c/52/7ef05c52-b630-4fb5-9243-ac500497ee01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/fa/f7/10/7efaf710-5195-4e81-bf36-d20de9f7a5e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/69/77/6d/7e69776d-b90b-40fd-8e0a-5044e1a46f7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/04/54/d1/7e0454d1-15e0-4f48-9da9-7fb496116591\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/0e/72/27/7e0e7227-9850-439f-b593-8e92c20858ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/6d/2e/9f/7e6d2e9f-a082-4350-8d04-36af1d666f02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/6a/04/63/7e6a0463-0602-4519-bd71-aa53e0030a57\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/f7/c5/61/7ef7c561-321e-44eb-8085-ce2ebe0a00f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7e/54/5f/5c/7e545f5c-680f-458e-ae7f-3df49d63df20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/58/64/88/dc586488-1b9b-4a9a-9767-5e5ead4e59a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/76/7d/d5/dc767dd5-c6a2-4fec-8d3b-d24a4c41097f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/e1/cf/de/dce1cfde-4b9d-432b-a595-d49479e7074d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/eb/cc/6e/dcebcc6e-0704-48bd-a212-ddade8a42a94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/dd/7d/3f/dcdd7d3f-05d2-4d5d-bc81-cac6895398ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/d3/54/8c/dcd3548c-9aab-4ca4-b6bc-c2ac6d371967\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/a8/6e/0d/dca86e0d-2a43-4d6b-8b29-dd6d581967e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/0c/e5/03/dc0ce503-7576-4edb-b6ca-0c5d5ac816da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/0d/60/87/dc0d6087-bbd6-43a6-805c-9d3212910937\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/d9/c4/0e/dcd9c40e-c6a0-4b1a-b553-eed2232dd481\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/14/4c/aa/dc144caa-6c58-4c4f-828d-5b116a0821c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/18/9d/ce/dc189dce-f98a-4b45-88f8-900810eea698\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/2b/57/63/dc2b5763-c018-4d49-9d15-fb3a0bc49268\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/4f/f8/5b/dc4ff85b-f867-4761-9b5b-ce94ad75c87a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/23/94/02/dc239402-3e97-4101-870a-338a26c17759\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/b1/31/aa/dcb131aa-fcfa-4494-b331-431448447a84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/dc/48/da/dcdc48da-1266-438f-a488-f863982c86fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/ba/87/90/dcba8790-856b-4b1b-8c62-f67f3c6e2899\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/08/22/55/dc082255-9221-4280-a4e4-d04061db5333\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/7c/2f/b9/dc7c2fb9-29c6-4324-b508-5085da0c4f9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/b7/76/9d/dcb7769d-0d95-48a3-922b-afa1dff39dde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/d5/b4/b5/dcd5b4b5-269c-4901-9898-2fac67f686e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/43/56/6b/dc43566b-4dac-4d91-8122-6e946ddcb30c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/7e/93/70/dc7e9370-043c-45ee-8d79-5391cead8699\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dc/19/05/47/dc190547-18f7-425e-b6b6-fe748d9d0e08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/3c/13/ad/f73c13ad-9317-4c5a-b6be-a523ac544959\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/b7/b9/da/f7b7b9da-8a8b-4808-981a-79b40a13feab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/8e/66/24/f78e6624-62fb-4005-af77-ef18fedb548c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/77/7d/ab/f7777dab-ca7b-4262-a070-d313e8e084ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/8a/7e/ae/f78a7eae-ae35-4bfd-b545-0079c1c88cb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/97/22/a1/f79722a1-e437-4a4e-a624-6af10933dac2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/27/9b/fd/f7279bfd-a659-4076-a840-712ac9a0a974\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/ba/14/6a/f7ba146a-6690-4f74-9ee3-d83d5d2679c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/ba/0e/cc/f7ba0ecc-c75c-4ee5-bd0a-f35b2187f4ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/ee/c6/a7/f7eec6a7-d120-4a2a-be67-179b035e6c02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/8c/dc/75/f78cdc75-741e-415a-b7a2-aa9393a3bf14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/73/47/5b/f773475b-be4b-4a38-8452-3c467b8eac24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/98/67/19/f7986719-3a26-4a1c-824e-6561bf272035\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/52/29/2e/f752292e-f794-41ea-bfa6-2d3c35f00150\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/7e/7c/6d/f77e7c6d-1035-4d66-aa06-b1fa78abfa82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/e2/e4/0b/f7e2e40b-78be-4ea1-ad18-3a704492a7f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/ea/ae/b0/f7eaaeb0-4423-4ac0-b9f8-2afab8fbb1e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/4b/b3/3e/f74bb33e-4495-4d4d-8a0c-514ae36e1ba9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/ef/2c/ae/f7ef2cae-93e6-46bc-922d-b34842849a55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/50/e4/9d/f750e49d-f8bf-48cd-a24b-f517803c9468\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/fe/61/2e/f7fe612e-150f-481d-8daa-2c9bdfd264cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/34/5d/01/f7345d01-2eed-474c-ac3f-7f3903a90d36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f7/df/56/64/f7df5664-fefb-4a36-b7be-b7fe557f9c6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/91/05/f3/439105f3-e0af-434f-8a62-8020d6b9148e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/14/b6/29/4314b629-2338-41cf-9fa6-131951e8b2d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/0b/97/e7/430b97e7-06b7-436d-a027-2898198d41de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/a3/e7/46/43a3e746-645a-4f12-9be9-65da1bb2a35d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/06/c0/1d/4306c01d-6ced-4860-81e2-d50dc54c430e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/06/32/48/43063248-5cd6-4925-98dd-23683156f5c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/ac/7c/a3/43ac7ca3-0119-4da0-b826-a8483cd4ae2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/ac/18/e1/43ac18e1-6609-4edb-ac52-f2c2fdf9c41a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/65/ff/8e/4365ff8e-0349-448f-b9ae-d487ad6ed6cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/32/ba/17/4332ba17-c27e-4fdf-8184-9f4598b6e1a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/a4/59/4c/43a4594c-ecd2-4bf3-a1c8-8987b86718db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/2c/4c/3b/432c4c3b-cfce-4efd-851f-739652f9382c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/d9/7e/97/43d97e97-53cc-4343-b8aa-deba8232bd25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/59/54/e9/435954e9-7f60-4504-95d4-7d6bef75be28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/43/28/78/e6/432878e6-322e-40b1-9301-f7607b00cea9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/80/66/ac/308066ac-5e6e-4a5d-af5d-ddd2ec7e87fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/38/52/06/30385206-eacc-4921-83c9-ddc4d7f02311\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/f3/5e/2c/30f35e2c-c3a9-4621-95da-cecb33274330\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/0f/24/f0/300f24f0-608d-4c5b-91c9-d6881654235b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/14/b2/ca/3014b2ca-8935-47a4-b4da-5e7582d32d17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/75/6b/a0/30756ba0-86d2-4774-b5b8-ba7e2d628264\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/44/f2/3e/3044f23e-a5c7-48f3-b1d4-afce60e79cad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/1c/b0/52/301cb052-de85-4420-9b65-2de9fb927161\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/7c/80/a5/307c80a5-9186-44e0-a2ce-db71e82268c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/c2/f8/00/30c2f800-d3e3-434f-bbc2-e02e0f651c84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/72/47/48/30724748-e45a-4703-b0a7-3eea958d8ccd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/2b/59/f0/302b59f0-b73d-4396-a521-78f77f19ad6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/a9/ce/d7/30a9ced7-609a-47e3-b565-c27dec1a7b79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/12/fe/a2/3012fea2-6e41-4e5d-b6ff-582d65c365ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/8b/74/61/308b7461-453a-42dc-88a5-7aabd1079757\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/aa/c3/5a/30aac35a-d3da-4bfb-a90c-2dc18987e83e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/ab/bd/3c/30abbd3c-9086-4bc8-a668-24c780b2c37d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/78/5d/43/30785d43-b5ec-4200-b45e-d5bb802058a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/9f/f4/68/309ff468-8429-4e17-8188-c27041887179\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/56/71/7a/3056717a-a0f4-46b9-a288-1dfd43c908f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/2a/d8/a1/302ad8a1-5fe8-427e-a526-c474d58b0130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/4a/c6/72/304ac672-b91d-4452-b080-a444e103bb13\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/4a/19/8a/304a198a-b1ea-4d06-a39e-447b8f0894de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/ce/6b/b8/30ce6bb8-afba-4b3e-810a-e9f6e489e9a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/6f/9b/46/306f9b46-eb81-4401-a016-7395b5817aa7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/6f/7d/53/306f7d53-041f-497d-941d-fa51bb837f91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/05/a1/b2/3005a1b2-82d8-4861-bdbb-bffd7b348ba9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/65/e9/4c/3065e94c-ab0a-437f-8db9-4757fd0e9bc5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/9c/b9/e2/309cb9e2-1394-4746-9c5d-c0614c8c4340\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/c7/19/6f/30c7196f-6596-46cf-aa56-ae1d1ee905e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/dc/ae/78/30dcae78-31a0-4312-a885-629a7e24bb76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/6b/51/0a/306b510a-1dfb-422b-a5f5-e9d959388900\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/53/71/f8/305371f8-0402-4c75-a660-7bb7226a6f23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/30/cc/73/6b/30cc736b-5ceb-43d8-935d-7f03399d6e6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/f0/8e/80/38f08e80-e145-489f-a1eb-ce1a66858551\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/5e/76/07/385e7607-01d0-43e7-9e53-b4b3ee6e6aa7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/1c/15/50/381c1550-31d4-49b3-9e8b-9d904f4e742f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/1c/4a/1a/381c4a1a-a1b0-4d7f-9cb4-6b56a708a0b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/87/c6/da/3887c6da-8b31-4937-80e1-a9779776d46a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/8a/a8/7d/388aa87d-6bb6-4b56-8411-42264dc248d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/57/29/78/38572978-e3d5-4154-8fe2-18881e3b0f02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/ba/77/15/38ba7715-20df-4394-90b7-482e29db7beb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/ba/5f/f6/38ba5ff6-22c1-4712-8cb3-ceeca39abd6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/81/05/7e/3881057e-6760-485c-82bd-b7bad24dc4a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/34/df/c2/3834dfc2-638c-476c-9bbb-bf79cef1457e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/4b/bb/bc/384bbbbc-a210-49d5-9d09-866e192764fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/e7/94/17/38e79417-28fd-4837-830d-9031a217e536\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/8e/b5/43/388eb543-c778-4b7b-93db-782a574172c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/5d/82/ff/385d82ff-f87f-48bf-b378-5f1b1a835efb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/16/c8/9a/3816c89a-90d3-4e01-ba39-a635192774bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/1a/7b/f0/381a7bf0-749a-4987-884b-df270e077f17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/af/bc/3f/38afbc3f-e27d-44d7-a4d5-db2e47757d5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/94/90/79/38949079-6169-476f-aeab-e97a331f8bdb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/f1/96/0b/38f1960b-44f8-42ba-8c2e-2cfcdf78971d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/14/d3/4b/3814d34b-b4fa-4a89-82b9-db9d55371f41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/e4/b9/11/38e4b911-884f-41ed-9559-62e5b2433989\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/ad/fe/2d/38adfe2d-0fb7-4e09-a29f-2975d670bed7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/4e/bd/2a/384ebd2a-9a69-48a8-b5a8-9a9cb7321e1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/38/0d/ac/8e/380dac8e-9ae6-4ca6-99ab-d4163f3a2ad1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/31/11/49/d1311149-5611-409c-94ba-d23d041581b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/70/b0/f8/d170b0f8-f986-4717-8933-c02b285c9e12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/af/fa/a1/d1affaa1-d953-4370-bfd1-5843ed82c30d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/ec/e9/3f/d1ece93f-7d69-476a-bff2-2aadb2bffcb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/96/0c/e8/d1960ce8-be6a-46bc-822e-9c5f541904d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/35/bd/de/d135bdde-13be-485e-a2f4-6cced2bfb167\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/4f/ee/13/d14fee13-c82a-4f8c-b65b-6c3dbbb75034\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/29/03/33/d1290333-bb15-4974-81ce-96b75829444c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/1f/5f/28/d11f5f28-cb13-4ff5-a80d-ca5619f2264c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/d1/3a/e7/d1d13ae7-3db2-44f2-a94e-4e5b4b5474ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/24/10/49/d1241049-ab02-464f-bc10-63f74a66b26b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/a7/bd/15/d1a7bd15-f335-4126-a6cf-8d8329878826\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/ae/0f/03/d1ae0f03-6f9c-40f9-957a-8016bbe53c72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/23/7e/78/d1237e78-849e-4359-94b0-38a52ed39e3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/c0/ff/1e/d1c0ff1e-d9ff-4a00-b583-054d34792c29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/0e/48/8b/d10e488b-1de9-446d-88d5-6a921f11584a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d1/d5/01/5d/d1d5015d-c09a-43d6-8d92-762ebb34dc8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/9a/ec/e5/b29aece5-df02-49e6-b86e-ee350a97770f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/15/fa/81/b215fa81-6109-4511-8457-c9e5eee65122\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/2b/92/e0/b22b92e0-25de-4f27-b33c-9881a13eefd9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/e8/52/30/b2e85230-151a-418e-bc81-3ecdfd68d044\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/9f/c9/29/b29fc929-8a56-4b95-b777-8f1d6c7726a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/9f/c1/ac/b29fc1ac-81e8-4608-aaab-4b7de424f005\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/1d/53/df/b21d53df-ef5d-4c6a-82a6-c0bf0360f5d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/42/6f/70/b2426f70-4c46-46ad-ac47-3c2007ed96a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/80/59/14/b2805914-3dae-42bc-86df-dcb6f1e4a992\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/5c/9f/01/b25c9f01-eff3-41a5-808d-a9234c94182a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/fd/68/8c/b2fd688c-4ca3-4720-aae9-f4e9776ba066\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/b3/d3/53/b2b3d353-02b1-4c22-9b29-9541e5e30ac1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/b3/dc/6b/b2b3dc6b-429b-47bf-a56a-ea91fa3c6a32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/ee/de/4f/b2eede4f-84e9-4b40-80ae-0b6280d6ce35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/45/69/19/b2456919-3ec8-4316-b37e-6cc249739f07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/6a/73/6b/b26a736b-df8f-48d3-a4f6-d9c3474f0842\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/3b/4c/11/b23b4c11-bacd-4854-b844-1069863e8fa6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/6e/80/54/b26e8054-da9e-4e4c-a1f9-5f3974474872\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/83/e2/b8/b283e2b8-7531-4762-b6c5-8a063db3465c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/f1/66/2a/b2f1662a-ae31-4542-a740-c191451856b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/54/d4/3b/b254d43b-a5ba-444c-be83-aaed2f4bdfe4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/3a/fa/a7/b23afaa7-98da-406a-ad89-acdacccc5c7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/37/16/2c/b237162c-4626-44cf-a5f5-d130cc257824\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/47/51/da/b24751da-9f4d-43ce-a559-432c4551885b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/96/94/b2/b29694b2-f79e-4f72-9788-0d9de4f116cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/ec/47/49/b2ec4749-c1fc-47bb-bd68-da9659c8bbeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/26/60/cd/b22660cd-d710-41ec-b2c7-e3101a51fb8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/99/a1/f9/b299a1f9-328d-4bf7-a0cd-d49142ac998e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/a9/18/29/b2a91829-ae90-46e5-a588-dff66409db51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/0e/5e/e8/b20e5ee8-38ba-46ee-81e1-bef0c1489532\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/98/90/d7/b29890d7-8bf7-471a-ab93-2f0d692b1c81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/c7/f0/59/b2c7f059-d504-4e2c-a0c4-99ae8bb4d268\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b2/c1/ac/96/b2c1ac96-b333-4f68-852a-6e82d83a7599\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/f0/55/1e/64f0551e-5c4a-4a6c-8f73-49c22bb5dcd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/eb/ee/dd/64ebeedd-6254-4818-80f8-0ff30f7c9553\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/56/41/46/64564146-940c-4c1f-897c-e7f8d506d6c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/49/cf/10/6449cf10-3287-4f87-a1c3-a2df8e67e104\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/0a/88/3d/640a883d-cbdd-44f0-85dc-b876983cec50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/d4/af/0c/64d4af0c-7f9a-4298-b707-773941a1ee1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/a8/f8/60/64a8f860-ed3f-46a9-95a2-b05ee8135778\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/19/30/3c/6419303c-011f-48ab-b5fa-e894cbf281f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/c9/9e/90/64c99e90-26a7-4428-a130-d8aba32782ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/0b/11/3f/640b113f-7938-4ce9-856d-c08e54cdd497\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/cc/6b/1d/64cc6b1d-1014-4460-9af2-9b38f2116b4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/0c/b7/9e/640cb79e-49cf-4147-a347-f0a37722ef74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/3e/19/b3/643e19b3-86bb-472c-9ac5-c29d9e43e68b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/24/55/eb/642455eb-c06b-4a4c-a470-4f68e3599e8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/4d/e2/1a/644de21a-ee14-4654-930a-3e90d6134ffe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/4d/d5/89/644dd589-c935-4ea0-9faa-8d226fdf3096\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/4a/19/9e/644a199e-7a37-401f-b7b2-c5a355ff8521\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/94/4d/91/64944d91-57c9-4c20-b5ee-0718b3bc4d4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/b6/3b/85/64b63b85-a26d-42be-a0b0-26259c60798b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/fc/bc/03/64fcbc03-07d6-4d2b-bf94-6d628e1aa815\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/98/36/45/64983645-5bc3-4df4-9609-9683bb7ab02a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/64/3b/d9/96/643bd996-9c6a-4055-8350-eef8e0e14d68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/d1/3d/e3/7bd13de3-f9f0-40ad-ab2b-4b84aeeddd8c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/c9/9a/46/7bc99a46-ad54-4652-8cf6-43cc7721f021\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/78/7b/64/7b787b64-1aa8-4eec-854f-81a19524199b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/d8/a7/34/7bd8a734-c88b-47ed-a033-3c9c3b3e493e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/d8/9a/60/7bd89a60-9658-4fe7-920b-c582eec8f277\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/59/c4/bb/7b59c4bb-32da-4520-a6c7-bdcca7759455\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/d4/39/fb/7bd439fb-c627-4923-887c-eb237e5cfa1f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/44/dc/96/7b44dc96-779b-4404-abb8-ed34dd2c8996\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/47/32/a3/7b4732a3-1d67-435d-b2ef-45e40c09f89f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/20/36/14/7b203614-6464-4ea5-8043-3b48c0fb9368\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/2a/b6/dd/7b2ab6dd-d653-455d-99f4-9e05755fb4d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/a0/1f/a4/7ba01fa4-edbd-4482-9117-5fa918856819\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/27/9d/29/7b279d29-e39f-471f-a316-f4f967b7572d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/8d/9e/7a/7b8d9e7a-ffc9-419f-8717-d9d3cbf4005c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/cb/a9/5d/7bcba95d-84c7-41b4-8bef-9f1d89002d35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/04/77/96/7b047796-ebbe-4200-80ce-6a8c590fdbfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/3a/78/e9/7b3a78e9-8aa5-467f-a011-d730857d6c54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/e1/f3/ea/7be1f3ea-c929-406d-946b-2b0810333b8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/65/c5/46/7b65c546-81f8-4c32-8345-9ae49b9bc2ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/b0/93/3d/7bb0933d-ac67-4e54-91d0-36eaada45fab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/81/ff/94/7b81ff94-e8b9-4d66-b61a-fbab859185f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/9c/05/f5/7b9c05f5-b765-45d2-99be-165c2c1c4683\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/17/8c/e2/7b178ce2-b47f-4952-8bba-846ce313e869\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/5f/33/3d/7b5f333d-bc2d-4701-b425-1a88dd728b93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/6b/73/18/7b6b7318-e66b-4044-85ab-43b689211bd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/70/84/15/7b708415-b7c8-406e-8fb0-939c936c4e5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/16/c9/4c/7b16c94c-db51-43c0-b62b-f60e6bd5f510\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/26/13/32/7b261332-70ed-4699-97e5-232878272ae4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/f2/3d/0b/7bf23d0b-e2d6-4c9d-ad7d-3bb58ef7483b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/0d/57/6a/7b0d576a-eab5-4fd6-a7a8-00cfe43114b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/4a/46/bc/7b4a46bc-3ed7-4044-b82c-a6723e17e780\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/32/c4/a9/7b32c4a9-588d-4abb-8dbb-191115aba541\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7b/b1/01/5f/7bb1015f-2a22-4ebb-a1fc-3bab405edce9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/83/ed/7f/ed83ed7f-e143-4f9d-aedd-112dc38f8cb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/af/cf/0c/edafcf0c-a251-4536-a04c-c34cd6568795\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/de/33/c0/edde33c0-7789-4e10-8dbd-87bc6718f2de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/ce/24/34/edce2434-e338-4539-aacd-4361e020f6a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/bc/00/8d/edbc008d-643f-40b2-8473-60d9f8823b03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/9b/66/38/ed9b6638-1c2f-4878-8a10-8a23a8d13708\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/1b/53/6a/ed1b536a-eb6b-46a6-a43b-36c757d603f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/4a/7a/d4/ed4a7ad4-e830-46f3-9bbe-5c19052a8924\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/c7/77/f3/edc777f3-4dcc-41e0-9bac-d4373a1e76cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/d8/e8/1d/edd8e81d-cb4e-4087-9293-38ffad5b7eaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/40/e2/22/ed40e222-0197-4b35-bcf8-ddcacc8e199d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/fb/53/66/edfb5366-bb96-4142-a6fb-43cb58779633\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/e4/96/48/ede49648-e6f6-4547-8bd1-117e703cc0a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/0a/66/d6/ed0a66d6-8bed-48b5-b9a4-908fe784d8df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/63/de/b3/ed63deb3-ce8a-4aaa-afb2-e246511445c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/0f/e1/9b/ed0fe19b-7e17-4624-9627-2739fc66f2d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/54/e4/8b/ed54e48b-4761-4379-b23f-7497b4c4f7df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/54/12/d8/ed5412d8-586a-4931-b3d8-28e4dcc5e2a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/9c/52/f0/ed9c52f0-b17d-4069-b8f4-1d433291c8cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ed/8e/40/fb/ed8e40fb-3642-43a2-bcf2-83cae5d4a892\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/12/76/06/f6127606-6e01-45bd-ab89-afc36a3031b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/d9/78/86/f6d97886-dbce-4c1e-91e9-d10d917deaae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/8a/80/f1/f68a80f1-49fe-4525-8d5d-f6dfa493cd56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/ce/14/4c/f6ce144c-e317-4184-946d-b8e6338a3e50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/f4/c0/99/f6f4c099-2648-467b-a0d9-b468bbd3f05f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/f1/09/5a/f6f1095a-bd52-4e89-b674-c959e002390c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/83/54/59/f6835459-8c80-4d98-8c30-0ca5821b825c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/43/ac/a6/f643aca6-f271-4310-807c-bc781f6efaab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/a1/a5/4f/f6a1a54f-e9c7-49f6-ba0d-4b2d6b33943d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/82/af/b7/f682afb7-8c37-44f9-936b-7d41ff6581cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/82/0c/04/f6820c04-5fdb-49d3-86f5-9b130952d20c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/a2/ac/7e/f6a2ac7e-0431-4c28-9b9f-bdc2c90e016d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/16/cf/6c/f616cf6c-b88e-4b97-996d-0dcfc95b8544\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/5a/e6/50/f65ae650-bd2b-42fa-8d08-4c4292b0ac34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/f2/40/31/f6f24031-603b-4686-aa77-1eb864a28612\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/05/aa/99/f605aa99-009e-4b37-9e34-3fce5601204f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/2b/d9/a5/f62bd9a5-6d74-49ad-86a4-6e06ec03b733\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/c1/b4/b2/f6c1b4b2-fd41-48ab-a108-ea53a1ac2025\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/d5/ad/ee/f6d5adee-bfc6-4a3c-ade9-26ee50886a93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/c7/d6/4b/f6c7d64b-0d6d-4e43-a120-50ad0e059a73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/52/cf/ec/f652cfec-3ff4-45fd-9323-09f61121f19b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/d0/cd/de/f6d0cdde-7ee4-482f-8476-2eb6b903f7ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/ae/86/46/f6ae8646-caad-416e-9c3d-7ef443db689e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f6/dd/8b/7e/f6dd8b7e-eaf7-44aa-9849-85fe5890a9f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/9f/c5/ba/8f9fc5ba-62a6-4101-bbd4-74a0bc9d0e70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/07/36/8b/8f07368b-50d2-4691-bf0c-f06932ef4c24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/29/64/80/8f296480-b0c0-4e05-b6c3-44c3a58bb8bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/27/af/29/8f27af29-8124-4e23-b72a-0e276342ad3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/f9/36/80/8ff93680-461b-44c2-90b7-199a9a9c0abf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/6a/24/1f/8f6a241f-528f-430b-b792-e0056c02d0a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/da/04/3c/8fda043c-b00a-4174-9b55-5b2cf89de602\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/1f/27/9c/8f1f279c-5bb5-4596-a6b5-7031aec6b6bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/47/c7/5b/8f47c75b-6675-4c6f-ad1b-baceee631017\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/94/d6/a8/8f94d6a8-3767-47f6-83db-ea920025a873\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/36/af/92/8f36af92-9977-44d7-88c8-a6434a0105b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/d0/30/ca/8fd030ca-b96f-4ac0-bbe1-e9a9162fe5ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/67/7c/fa/8f677cfa-a2a8-43ae-8fa3-4a3c2b34da2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/ef/59/c6/8fef59c6-3492-46b5-acc8-eb6c98075463\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/30/76/c2/8f3076c2-3271-4ed1-b05d-ddb731a0688f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/05/50/71/8f055071-3675-4842-8dd4-655b570259ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/cc/62/a0/8fcc62a0-905e-4574-816a-fd27a62e05d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/91/5a/f4/8f915af4-1477-4f6d-8abe-52fb841f7dd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/0b/dc/d9/8f0bdcd9-9a6c-441d-9abe-bf3999388913\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/0b/bb/ac/8f0bbbac-24bc-4095-b956-35cf88bb80b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/7f/7c/84/8f7f7c84-e2e0-4ea5-9ce4-3cd48254c91d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/e0/97/60/8fe09760-d53b-4c98-88d2-49bb82563926\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8f/5a/d8/cd/8f5ad8cd-5be1-4b2c-b8c4-ae59a63bd305\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/6c/2f/d0/246c2fd0-fa96-403d-85cf-8e29339cb371\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/6f/2f/c1/246f2fc1-31c1-4d91-908b-323b8f218237\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/24/43/af/242443af-b040-48fd-879b-6a82d403d509\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/94/84/35/24948435-c469-4e89-b9ad-695de9fc7957\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/07/d2/4f/2407d24f-3338-41d8-b3bf-8a9e60dc617f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/e5/60/7c/24e5607c-7f2a-4203-89b7-3af570ee7ad3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/05/4a/12/24054a12-ecce-462b-835f-704d46d42c89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/a3/dc/17/24a3dc17-549b-4c78-887e-15ea191d2f9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/f8/51/ea/24f851ea-d92b-4e79-90bb-ed315bff84cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/10/5d/a0/24105da0-4a04-4f4e-a28e-60eb740aaa2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/26/be/d1/2426bed1-b23d-431c-93be-36fc3630b1c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/ba/32/7a/24ba327a-0e66-4501-8347-52c4323b7c60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/1e/4e/c2/241e4ec2-5ec7-42ce-a0a2-02306fd4bb4f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/48/49/90/24484990-ebe4-4cd2-ae9a-1a6ef9a0879c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/64/76/ad/246476ad-4c0b-4224-bbfd-bf4d631426d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/5d/04/0b/245d040b-9256-48db-b937-b7875bba0761\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/4a/d5/d7/244ad5d7-2f4f-403c-a306-655d001d31e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/f2/83/cc/24f283cc-a02b-43c3-8917-e0c499f33803\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/ed/cd/64/24edcd64-7568-4f5a-b11c-ef9c315b6be9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/24/29/d6/b8/2429d6b8-0329-4f9b-a07f-5b2f0b8ad9d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/8b/db/1e/7f8bdb1e-ebe8-49e2-8df3-804f8b1cb640\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/08/0c/0b/7f080c0b-0ae8-491f-a7fe-6075d907b6e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/39/c5/ef/7f39c5ef-a5de-45a2-94b8-d9dfbb1b7612\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/04/61/f9/7f0461f9-4d41-4aae-8968-17b3c1f983d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/04/e3/d1/7f04e3d1-5cad-4334-94fb-7838522b021b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/44/9e/62/7f449e62-3fb4-444e-b842-27a4929f6e4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/b8/b3/37/7fb8b337-63b6-4d7f-b2f9-25d81c0b1554\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/24/82/6e/7f24826e-e5d1-457f-b23f-ff55a8f2e05b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/10/76/08/7f107608-b397-43c2-b899-a1c9e7176a63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/ee/fa/1e/7feefa1e-6948-4c57-a8b8-e833fe1220b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/72/61/83/7f726183-53fe-4c54-9627-ab6a64421df7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/f5/7e/40/7ff57e40-3b9b-4c1a-b7e7-b0e53a965773\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/ff/26/8d/7fff268d-2094-4155-8b7a-4814b006e469\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/92/7d/a7/7f927da7-3a8f-4d9e-a964-08930b77b6dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/d0/08/ce/7fd008ce-bb40-43f9-bac1-d5bec0460c8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/d0/12/0e/7fd0120e-0add-4951-a797-8031daff9615\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/a9/5e/e1/7fa95ee1-83c8-4b06-8b4b-0eef0929a585\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/35/2d/41/7f352d41-68a0-47fe-bd6a-4f8ed10766fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/f0/3e/a8/7ff03ea8-f110-4991-b05c-b05968c92c24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/5e/ae/1c/7f5eae1c-155f-46b7-a9b9-db28840f2b34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/98/a1/1e/7f98a11e-ba74-46f2-b223-c31758dc884d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/0e/81/c4/7f0e81c4-b5f8-493d-81de-4c5f2efb29fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/62/1b/32/7f621b32-958c-49d8-b032-2867faba864a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/f3/d2/cd/7ff3d2cd-1c5b-4349-88fa-32ff50513666\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/f8/eb/72/7ff8eb72-7d56-4e99-98a3-58b742cea80f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7f/41/87/29/7f418729-dcb7-40d1-8321-07d4f666ad9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/e8/9b/16/4be89b16-756d-4e97-a281-58686f47deba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/e6/b8/c0/4be6b8c0-4490-4414-8e58-51c67d73eb55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/2d/38/72/4b2d3872-2d20-477f-8167-fbd4eb3247a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/55/d0/0a/4b55d00a-7eba-4feb-aedc-5c066ebe96aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/7b/83/b2/4b7b83b2-897c-487f-99ee-af7567993fa2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/10/80/da/4b1080da-8762-46a5-ac12-6591cec0aa71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/38/07/c6/4b3807c6-b95f-4c09-a239-7028c3d5518f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/9b/34/70/4b9b3470-a011-4b46-b0fa-e1f8620b8552\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/62/03/b8/4b6203b8-346c-4821-978e-b55e51fd4ff6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/01/9e/11/4b019e11-1746-46a2-b7e8-b61b7b2794f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/75/1f/9a/4b751f9a-ef98-4d02-81fd-6a2fcff54968\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/81/29/21/4b812921-3d7f-483a-be17-b53df38549f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/aa/6e/b0/4baa6eb0-da23-4c9a-9639-10f6844697d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/20/34/63/4b203463-40d9-44d3-8b21-f230b8f68713\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/20/8a/8e/4b208a8e-ff08-47ae-b881-562947541cf4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/c6/91/79/4bc69179-1cfb-47fb-8573-6c110535eee8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/0e/5e/53/4b0e5e53-723b-4848-beca-91faf3c2be7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/2c/3c/13/4b2c3c13-2915-4918-ba95-fae0d4b75867\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/1e/e7/3e/4b1ee73e-d6ce-4518-ad29-a8561ad7b770\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/c5/c5/cb/4bc5c5cb-6de2-421a-8c6f-153ce3f6b565\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/7f/4d/7e/4b7f4d7e-ac20-4d90-975f-2103108478e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/df/91/ee/4bdf91ee-0cb3-4be7-acfe-1b97dbcf17e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/fc/79/21/4bfc7921-fb8e-4c9e-bc3f-c86627522af3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/e1/08/55/4be10855-cdfe-4b5d-9fa1-efd83831cf6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/0f/6a/ab/4b0f6aab-c94b-4156-9b11-cb753d6d30bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4b/45/9f/54/4b459f54-73c9-4e85-9c66-9a0cc7240cc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/72/fe/45/5672fe45-f772-47b8-81ce-b72efb6c0345\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/72/e2/f5/5672e2f5-7bd0-4428-8201-c87db94a9369\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/53/b3/29/5653b329-1982-4319-ab03-eb4f264862c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/d7/09/39/56d70939-3c88-444f-ba0a-490c09722e21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/5e/78/70/565e7870-b019-4491-982f-86c00241f2bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/c0/b7/58/56c0b758-e1a0-456f-8645-3c70c1d00fe1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/6b/6e/24/566b6e24-c2f3-4abc-96f3-2300c6e04509\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/cd/6b/76/56cd6b76-c635-4eb3-88f8-1a339113f6ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/db/63/1e/56db631e-99fa-4a18-a4a2-090b5f3bb103\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/eb/0d/49/56eb0d49-d65e-4767-8717-0bbf52190120\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/eb/70/14/56eb7014-8d68-44ec-b3c8-99184681b2bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/7d/a1/da/567da1da-a728-44ce-89ee-c42f2a28fb1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/e0/42/66/56e04266-2d57-426d-9906-148d3e7ff516\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/77/04/e2/567704e2-a959-4982-ad0c-26e714b2e9b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/38/8d/a5/56388da5-42bb-4c8f-ad1b-3ee19fbc4507\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/c3/f2/6f/56c3f26f-24ba-4195-96ea-b8446891245e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/e4/d7/a3/56e4d7a3-2785-4d60-8f98-aa75a62eece0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/6c/85/ed/566c85ed-5761-400b-880e-0669ea64176e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/56/55/53/b8/565553b8-61dc-40bc-9d22-b73edd91c707\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/40/09/22/00400922-411f-44fb-b2f2-f7d96172ba6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/21/ca/39/0021ca39-9b02-434b-982b-f76e1b80a042\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/fe/26/d7/00fe26d7-4b3d-42f2-80ac-812c62bc78d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/68/61/7e/0068617e-c4b4-4435-a314-c111d3f9d9d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/e7/44/f1/00e744f1-b711-4131-9215-a49953f17b8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/61/92/5a/0061925a-612f-4ce6-adc9-8e066e6e9ff6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/70/c4/c0/0070c4c0-e9ef-49e2-aeda-0ac3070a6442\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/74/6e/e8/00746ee8-c61e-4700-94fe-b3e0717cbdc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/e0/bd/85/00e0bd85-123a-4252-9ec5-ce62bec06b12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/38/34/90/00383490-fc43-4991-96e9-7ef1a7d5ab20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/24/c3/91/0024c391-f685-48af-85fa-308027bd2a78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/9d/00/ee/009d00ee-7b62-4368-ac06-ba5f33de5c85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/cc/6e/e5/00cc6ee5-ae9e-43e4-a595-cfcfe7ee4c34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/23/1d/c3/00231dc3-9358-425f-9606-5366884aa3a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/00/12/da/54/0012da54-755b-4c6e-bdc7-7306e8b93e48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/74/1d/d4/72741dd4-416f-4772-94da-b7338c3d3887\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/64/fd/0b/7264fd0b-d990-49c2-bbb1-2cb4bfeedd20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/e7/e9/24/72e7e924-edbc-472a-a5ec-51dcc6999dc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/f5/f4/35/72f5f435-835e-4a59-b329-4f2479a95278\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/38/38/9b/7238389b-cf33-4548-84f0-79e5a37f5a39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/6c/e7/d8/726ce7d8-716b-4db7-b406-393247c8521e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/97/50/86/72975086-a9e1-484f-94af-daa846364fd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/90/17/23/72901723-ec12-4e34-9a3f-4dfed8dc65a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/84/85/ee/728485ee-5308-4166-ac9d-5bb976a1fc9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/bd/ad/92/72bdad92-a7c8-4e81-8a18-d7cad234a665\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/ae/d5/e4/72aed5e4-5c9e-4453-bdff-068c64a714ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/a8/72/27/72a87227-d648-4b7f-9270-14516fd1056d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/7c/1b/df/727c1bdf-4f77-4b80-a156-6db6a7ec1ffd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/9c/7d/f5/729c7df5-dc93-42b8-b888-f30da8bfbf6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/e6/eb/b2/72e6ebb2-004e-4475-8ef2-75c3f096edd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/c7/80/2f/72c7802f-6f46-4567-a187-69e9377f7eb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/7d/35/67/727d3567-36c0-4133-833d-24b347b48c91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/08/58/f9/720858f9-01da-4806-87c6-add832bd9bab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/d7/b7/b5/72d7b7b5-4f78-448b-ba6a-4c4a6c44c86a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/c9/d4/3a/72c9d43a-f131-490f-a7f1-31a3b4254bed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/52/91/f7/725291f7-967f-43b8-9e99-d78cb16af264\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/e9/ec/86/72e9ec86-0d76-411d-9329-9db45d130a5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/72/36/75/72/72367572-4fd2-44e9-bfbd-73e8f05b2c94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/a0/85/79/d3a08579-7819-4359-bfe3-4a45aca4fe2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/df/e3/e2/d3dfe3e2-307d-419d-9c0b-1bdababdfd73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/ea/b1/87/d3eab187-9720-4dbb-850c-508c989921c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/65/3d/79/d3653d79-94f5-4721-af59-46fdfc9ed819\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/10/c5/ab/d310c5ab-21b5-4b57-b62a-1084f234c1ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/d4/ab/c0/d3d4abc0-d724-496f-88fa-39c7356cf67e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/fa/18/a6/d3fa18a6-ea04-4f85-8b6e-c2347882b12c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/0f/9f/98/d30f9f98-2126-4251-92c1-6c9e9ca75820\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/0f/90/80/d30f9080-41a7-47f9-a701-341ce648a6df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/7b/c5/70/d37bc570-b95c-4f46-94c5-64731027f8f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/bc/e1/8f/d3bce18f-2854-404b-aba2-8fdfdec31f2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/f1/df/50/d3f1df50-7352-46d9-81ad-ae4c6b674758\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/32/5a/63/d3325a63-a828-4d4d-99a1-6a7f0e358bd0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/a2/5e/4c/d3a25e4c-368f-4a91-a12d-a1e408cee4c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/0b/9c/ff/d30b9cff-5f79-4b52-aabc-d504109d46b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/5c/4d/b3/d35c4db3-47f4-4aee-84e6-4fb158617182\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/fd/3d/f1/d3fd3df1-46eb-4d27-bcc3-cba94fe49c10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/91/c0/1e/d391c01e-3712-4f02-8f83-fba1cd468b11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/ac/c7/33/d3acc733-bfab-444b-b218-0c31f6399143\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/5f/f4/5d/d35ff45d-f525-48ec-826a-f3d604c81eb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d3/76/c9/e7/d376c9e7-9222-41c6-be5f-6ee692a05b2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/c8/4d/ce/12c84dce-0f66-45a5-8239-a3895b257173\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/30/e7/1e/1230e71e-c69c-4e76-b887-e8275212217a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/5d/ce/4b/125dce4b-4746-4b22-a813-b5e3114c993c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/26/bd/cf/1226bdcf-a91c-4296-99ec-f8e284816f3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/d8/b7/61/12d8b761-0d70-436b-9ad3-e2d4683c892f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/6c/e8/69/126ce869-8326-484d-9e31-2ae3631780d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/1e/8f/59/121e8f59-b7ef-4571-b96b-4691ac17451b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/fa/1a/13/12fa1a13-4980-4f30-96e6-5aa947661fa5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/a5/a8/05/12a5a805-2b95-49d2-b85b-8a8abf0700c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/91/fe/49/1291fe49-9d7f-4b03-b033-bd584dc1191e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/0f/d4/18/120fd418-c200-471c-849a-0cb4f5e82a42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/a9/f1/19/12a9f119-a633-46ea-b262-98aa0342d26e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/52/bd/82/1252bd82-c186-43cf-aeec-95248b8f02e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/1c/9f/89/121c9f89-9355-4963-b2aa-8067226eb1c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/b9/4e/b6/12b94eb6-697f-44d4-b7ac-2e35d354f180\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/7c/51/64/127c5164-4cdf-481c-95a7-a5df556b45f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/10/83/3e/1210833e-8e4a-4d82-9d40-515b7abe49c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/2d/50/87/122d5087-3cdf-4017-a555-2e67cae3c889\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/5a/c0/21/125ac021-bc76-4c08-b6e7-bc1591ce60f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/49/f8/37/1249f837-bd36-4ab3-8df5-83f44d116853\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/39/2f/ff/12392fff-88a9-49f7-918c-c0d67180c479\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/e2/d7/a6/12e2d7a6-1c70-4805-8f23-30a83862922a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/05/52/55/12055255-3e83-401a-992f-01d11061e179\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/bf/5e/bd/12bf5ebd-3549-44b0-9e71-bbcaf265e726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/12/fe/87/49/12fe8749-86e5-4f57-b16d-a1e7ace9d11d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/a6/06/ca/86a606ca-4303-4611-86bd-c21aeea2903e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/fd/ab/ab/86fdabab-3a3a-465d-bf3c-94390d1e8666\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/19/0e/ca/86190eca-416c-4490-9a0f-5d7c3cde4e1f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/c6/c1/55/86c6c155-1920-426b-9f90-61d2a00aef34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/30/b5/89/8630b589-b9d0-4855-89aa-3f10442037b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/47/a6/b9/8647a6b9-13b8-42fc-bded-eede4b62d0b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/6c/57/b1/866c57b1-bb97-495b-8480-56c96692cd4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/f0/96/95/86f09695-6495-433a-b13b-dd04aa93df39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/f0/a6/7d/86f0a67d-a0f2-4743-876c-9d9def8bfbbd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/3d/f9/f0/863df9f0-53aa-427d-aa87-7b35876d0db7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/8a/d7/18/868ad718-4750-40ad-a74d-9eb840794ec9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/c5/d7/69/86c5d769-8647-489d-950e-2bb67a18738d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/4d/7e/d3/864d7ed3-0ccb-4ddc-952e-d929c8931611\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/a9/2c/a7/86a92ca7-5452-46e2-a652-ab606202c34d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/63/5c/3a/86635c3a-cd40-4b75-aeea-ad507b9d2c3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/e5/d1/31/86e5d131-7f4c-41d8-ae2e-8594016cb59b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/1c/2b/22/861c2b22-d5f8-4154-a275-df83f657d952\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/ab/cb/c5/86abcbc5-3932-4be3-9953-b020d5fd2e52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/bd/41/a8/86bd41a8-4e21-4bba-a621-39f3710a990f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/bb/d7/b3/86bbd7b3-7cf0-4f8e-87de-0b5a63bc2cd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/8b/66/b2/868b66b2-7d08-4fc6-9ced-50d36e48ea48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/58/60/0a/8658600a-e712-440b-996a-d5a6aa068e18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/86/fb/08/89/86fb0889-13b6-4124-84cc-5f0b367c7339\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/83/1d/59/6d831d59-641f-4d8c-a283-932c980db82e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/e0/03/58/6de00358-dfe4-49f1-90fc-e0b83d65101a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/e0/08/ef/6de008ef-dc50-42ab-842e-424bff1ac33a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/e0/c4/c2/6de0c4c2-94e7-4090-9acf-89c0e269a1f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/79/94/4d/6d79944d-ca6a-49ab-97a5-7a4758c24289\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/43/b1/11/6d43b111-3592-49bb-bffc-54315eff6880\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/43/b0/9e/6d43b09e-0168-4028-8f2f-fe33b903b2f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/9f/48/fa/6d9f48fa-360b-4575-a3f6-67e0ba425b65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/c0/23/50/6dc02350-8b5d-4ae9-8801-e4ee3401ea6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/9a/27/2b/6d9a272b-267e-4255-8b3d-bb7dc0626a2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/3f/bd/8d/6d3fbd8d-9b24-409b-92cf-c5199fd8d30d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/b0/22/6a/6db0226a-6f86-4168-8e2e-c51ca378e297\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/d8/98/10/6dd89810-7d59-4602-8428-cfa744fa0b3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/15/1e/ff/6d151eff-bff2-45bf-ac29-73c7aef0909d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/36/19/3b/6d36193b-7391-4f39-93f1-5fe3364a4928\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/d1/3e/f1/6dd13ef1-4095-462f-bbc7-039b12cd5bdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/2a/b5/a0/6d2ab5a0-07a6-4ea0-8185-440a75fce9f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/2d/d6/08/6d2dd608-72d2-4bdb-b15e-94ccd8dd766a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/32/1b/0c/6d321b0c-6199-43c2-806d-11330a45b831\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/04/d3/04/6d04d304-f308-419a-b20e-1f6e432e5f30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6d/85/75/50/6d857550-9419-4563-abeb-5d786c60383b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/de/d5/99/74ded599-5df0-454d-ad28-6b965c49527a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/9a/bf/da/749abfda-08ad-4d0c-9ea0-cc495da0e9b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/d1/62/50/74d16250-0fa0-43a2-aaa8-6262a24cb95e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/58/cb/b6/7458cbb6-db88-4031-9593-829e4da074ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/78/6b/c6/74786bc6-2c6a-4a41-8d2a-fd81abd8f1c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/30/ae/1b/7430ae1b-d13b-4696-9eaf-94860518a045\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/8a/44/c9/748a44c9-54d5-4013-bffe-47883ae67da3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/25/c5/04/7425c504-6024-4459-9013-008017156877\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/06/d6/dd/7406d6dd-a431-4710-ae2f-c020044598d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/53/1f/b1/74531fb1-d0e5-4253-8122-a6635a8d6316\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/6b/f7/e4/746bf7e4-f34f-416f-8990-a3d23e23c266\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/80/29/17/74802917-87a0-47dd-a84b-8112927a38dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/88/e9/66/7488e966-207c-4284-adc9-995c38d76e55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/61/9d/dd/74619ddd-7fff-4a30-82ec-593af55b818b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/e6/5c/79/74e65c79-16fc-4b02-9ee4-182f4b5e6219\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/39/b1/f7/7439b1f7-c42e-4493-aecd-b5fc9a6788a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/f0/15/07/74f01507-b1da-4cc9-b15f-6a83d8a3b148\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/55/0f/cd/74550fcd-608d-4ab2-a143-9994cb83f37f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/e4/a2/12/74e4a212-718b-47f8-aa6b-464e2d0ee6b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/03/2a/dc/74032adc-d74d-4838-9542-5b3d723c2a01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/75/68/dc/747568dc-b371-4861-85c1-625829e9ee07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/e1/6b/9e/74e16b9e-b5cf-484b-a499-ebb44fb4c645\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/74/23/44/f3/742344f3-046d-42eb-a25b-bc7f572ec918\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/f6/c9/9b/49f6c99b-b64c-46eb-a43f-e5812ec8771b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/14/c6/1f/4914c61f-b17a-4d0a-bbfb-e388adb00f25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/e2/c9/d5/49e2c9d5-1af9-4974-a1b3-8906e3004778\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/e1/5c/9e/49e15c9e-6592-4f4a-8811-14038de97607\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/52/d8/1a/4952d81a-5691-40ca-aa39-59e48a2fb5fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/6a/9a/80/496a9a80-d68b-4ff6-9481-23634209ac66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/6a/44/a0/496a44a0-6d00-4145-b092-9292f00f57d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/07/00/c8/490700c8-6ef7-46dc-b5f1-19b8b6de314f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/4a/c2/68/494ac268-38af-47e5-8112-5b2d65c1a96b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/25/6e/11/49256e11-6664-4b9e-9b39-a475673a3611\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/9b/31/cf/499b31cf-7a9b-474b-bba9-fc873ffd03e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/f0/6a/d8/49f06ad8-9b4e-40de-9b14-f5c8bedd18f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/f1/8f/d4/49f18fd4-7ce8-4937-a345-f38af07a7b64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/53/48/78/49534878-0ce8-4d9c-bad3-da6084fe3ab7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/5c/1f/b8/495c1fb8-cfdb-4cbf-bb38-b896ce4980e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/04/e4/eb/4904e4eb-33f7-4dd1-8de8-3fad700ba872\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/ff/b4/e3/49ffb4e3-b15f-4b92-b9be-96f28ef6c9df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/ab/b9/fc/49abb9fc-e44a-4642-a553-22628c7ac696\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/c1/cb/7d/49c1cb7d-54d1-48f5-b29b-1c4a88bcd8e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/4b/4e/49/494b4e49-4b63-4fea-95a2-10b576599ab6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/98/e5/0f/4998e50f-862d-41ad-b1f2-34ac939392e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/32/88/c4/493288c4-ce8d-4e49-ac4a-50c49aa8977e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/79/54/64/49795464-995f-46c8-a65a-f69bd8717c1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/2c/63/af/492c63af-6076-4806-9640-3089b913f04e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/06/53/5f/4906535f-7b00-425e-8952-595bcd7a9444\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/7f/90/b0/497f90b0-806d-4ffa-9a6f-ee2c92247b69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/49/ea/46/f7/49ea46f7-c727-463c-8d23-c593f476fb62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/9e/7f/4a/1d9e7f4a-ad6a-4dae-8bb4-c605488d5c8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/31/d2/8f/1d31d28f-5660-4fa5-9bc0-5e3b061c3c9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/66/24/02/1d662402-4424-488b-87b7-05998935bcc3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/d6/9d/89/1dd69d89-510e-4765-856f-c57d099ec3bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/d6/d9/70/1dd6d970-3251-42b6-9ae5-8e709d69b835\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/34/5f/de/1d345fde-5729-42e3-80df-5bb8392c75e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/09/52/dc/1d0952dc-1a9b-47cb-8f9c-d9c814fdc4cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/87/3f/80/1d873f80-1335-4ee9-87e5-2f6f2cc611c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/f7/3c/07/1df73c07-bb7b-44ba-850d-68413adbcc42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/fb/c6/fd/1dfbc6fd-3650-4d20-8d79-033ba6aa0939\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/0d/e6/ac/1d0de6ac-aef5-404d-8177-b87ab39856b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/64/bd/c0/1d64bdc0-85f0-48b9-835b-5870ecbf6e56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/37/ff/27/1d37ff27-1632-4ffc-9c50-bd1ba80cd791\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/37/df/34/1d37df34-f8cb-416d-9340-2319a22a80d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/e6/83/bf/1de683bf-580e-410b-8400-b4cc3f81f03e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/4c/e1/cb/1d4ce1cb-80e8-47f3-bb59-875f6629ac52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/33/39/17/1d333917-7d93-472c-80df-e2f12895e4cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/b8/de/7c/1db8de7c-a852-4a10-b506-28ed455f0edd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/23/33/c7/1d2333c7-291a-4245-9bba-ed45516d0e07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/fe/7e/04/1dfe7e04-2126-4d31-a566-89f635ba3c66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/7a/25/2d/1d7a252d-92f5-4bcd-b50c-0ec15dba4ae8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/f3/f0/ca/1df3f0ca-cff0-4329-a015-a00f3e4783ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/73/e7/16/1d73e716-ff9b-4d22-8ca0-21938fb173f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/4e/56/21/1d4e5621-5dd4-4244-a265-f76197105b2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/45/a2/3d/1d45a23d-14b6-4bd0-af19-bd37bb601c0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1d/03/4d/76/1d034d76-8849-451f-836f-a73ac7e99dce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/94/54/60/4d945460-93bb-4ef8-bf33-9a62eb720d2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/94/c5/88/4d94c588-ebbd-4a6e-84ba-c796be256e8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/7d/af/93/4d7daf93-89a1-42b7-b417-ac259fa8b2b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/7d/f3/b3/4d7df3b3-83a8-42b3-9f2c-7cdf3c212335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/f5/ec/ee/4df5ecee-5362-47a0-89ff-967f4791b95f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/7b/fa/fc/4d7bfafc-7733-428a-b538-e806da666afc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/5c/12/4a/4d5c124a-9467-48bb-bf33-6961c0ba06a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/5d/fd/f0/4d5dfdf0-abba-43da-866d-07713145192c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/69/21/16/4d692116-6e5d-4e19-a8ae-9987a7738bfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/18/58/fb/4d1858fb-1cf6-4616-9e79-0ee2a826c4d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/b1/5d/a5/4db15da5-2af8-45ee-9d09-fd3529ef7e4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/30/39/b1/4d3039b1-27b3-4866-8bdc-64d4b89cb5b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/10/6f/34/4d106f34-15c7-4d3a-b323-319cb7568304\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/39/8f/9d/4d398f9d-b557-4427-9a5d-aa9afa075088\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/87/af/e1/4d87afe1-5f34-4687-896b-58d15b32b4bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/9f/75/26/4d9f7526-16ce-408a-a377-597a444884de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/e0/f0/27/4de0f027-5198-4bae-8a61-549bb5ad8962\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/6a/80/f8/4d6a80f8-3778-4136-a27a-bd647bccf534\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/a2/5e/ea/4da25eea-e8a9-4154-a723-50b9161630c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/9a/ee/86/4d9aee86-3de3-4783-b9dd-5ae53c1638e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/14/c9/44/4d14c944-60d3-457e-bc5b-25e5888974da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/c6/28/e7/4dc628e7-ccc7-4b3e-af60-e3fc9447afc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/ac/1b/23/4dac1b23-2b13-45ca-a9b1-7571b3bf26bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/b3/8e/02/4db38e02-da98-437a-9e63-43975a7b990a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4d/9b/e4/40/4d9be440-8d3e-4530-856b-78b4afc1697d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/ac/2c/29/e7ac2c29-7b79-4c62-a0d3-b44a509ed1e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/3c/55/6a/e73c556a-3a6d-4c02-9a17-fe278015f4ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/3c/9d/c5/e73c9dc5-93ce-4f2f-9a7d-9817e659e8c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/66/6c/9d/e7666c9d-5ba2-494f-9d4b-0423e95851e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/91/04/dd/e79104dd-0261-43d3-8c9d-d75e121b56f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/38/25/3f/e738253f-df16-4200-be2b-c658831b69a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/6e/bb/d0/e76ebbd0-72c7-417d-9292-487f47254d90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/6e/cc/00/e76ecc00-423b-4f16-91d8-23c99c140ffc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/a4/3c/8a/e7a43c8a-ea87-42bf-b576-c88954983485\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/c7/5e/f6/e7c75ef6-d0a7-434d-82e8-3af31f68da8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/e6/68/37/e7e66837-fb42-4449-aeea-5aaba6e8992f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/57/16/f5/e75716f5-fe24-4148-bf85-6639fe3f8f44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/93/ca/cd/e793cacd-ca78-417e-9228-c502e97e4202\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/b6/65/07/e7b66507-c585-451e-99e0-ae681715f81f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/2d/3a/01/e72d3a01-9a1b-4b20-bc5c-f5477cad3733\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/43/62/47/e7436247-d5b5-4c5c-98e5-b197723f9ce0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/74/66/16/e7746616-a512-4d7d-8993-f2262189c7d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/6a/69/e1/e76a69e1-2f90-4324-8002-0f7110b001db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/65/c4/12/e765c412-699a-476f-9468-31187dc556da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/30/bd/4f/e730bd4f-87dd-4123-a5d7-fed867996d2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/48/fc/37/e748fc37-b237-4e77-9ce4-3684525382a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/23/16/07/e7231607-615e-4c13-96d9-b5ca90386d0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/33/e1/66/e733e166-fc81-40f5-874a-79401a26194b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/62/cd/ae/e762cdae-93a4-4410-ac16-ec84ee1363d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/61/af/c6/e761afc6-44f5-4bcc-a9ef-f6046dd76670\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/34/d8/55/e734d855-7d2d-4581-bdcb-21085a18df3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/26/68/cd/e72668cd-0ea7-4758-982a-9afc14a9bef5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e7/45/69/6c/e745696c-d3ba-4820-abd7-8a2462b336d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/86/fb/81/c186fb81-fc9b-4443-91dd-54d694b32566\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/ab/09/c5/c1ab09c5-f60b-4844-a34b-3815a500db26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/35/b4/3c/c135b43c-e97c-44af-b8f3-c3cdfbe54e6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/a5/7e/02/c1a57e02-a277-4148-9ecb-bf7286911aa9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/50/a7/60/c150a760-9cb9-4f14-a64a-60bfedb39774\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/50/fd/29/c150fd29-252a-4222-a931-d3ef7451148d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/87/4b/00/c1874b00-91bc-48b5-8b6d-36f266a9e065\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/cf/ca/12/c1cfca12-15d8-43b6-8d7e-391468cf53ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/bf/17/18/c1bf1718-8708-47ab-8da9-6ad3de25af0d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/5e/7e/e1/c15e7ee1-c7ab-4a1b-bf3f-cb347d447e48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/66/d2/07/c166d207-f285-4e04-b32b-6cbd50c116d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/e8/f0/d4/c1e8f0d4-7bba-4b5f-9178-26781e84d6af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/53/f4/5c/c153f45c-b1d9-4844-a747-2e674ce0ac1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/83/b9/24/c183b924-23d8-4efb-a933-734ba06ea57b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/c8/3b/a3/c1c83ba3-f654-4414-8e80-c2090258de68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/a1/12/71/c1a11271-7703-4e00-9d68-88989c8cfeb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/d8/79/b1/c1d879b1-d30e-4600-8f7f-09c3aea882c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/c0/5e/7a/c1c05e7a-335a-476d-88a6-9b470e65f3ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/76/78/ff/c17678ff-5924-4391-8d1a-97da0a47ac79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/8b/9c/5d/c18b9c5d-3b39-4f4d-a5d3-45cf0a77b6fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/e5/7b/0e/c1e57b0e-55eb-49e5-af9c-29b3aeabaeed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/38/f8/24/c138f824-2e53-4602-8cc4-03aeec3fbb8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/3a/c9/d9/c13ac9d9-3ea7-4a2f-8206-ad923fa703ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c1/e0/d1/c7/c1e0d1c7-cbfb-4d49-a93f-2508d9f17523\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/8e/9b/af/f18e9baf-44d5-4095-a60f-81a555a70737\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/00/52/ee/f10052ee-bdc4-42ee-9da1-da0c71172bdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/00/02/5b/f100025b-b40a-4539-a029-10c4d54d7076\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/4d/bb/b2/f14dbbb2-e53a-4e3b-8035-b43356a08d9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/ee/f6/f6/f1eef6f6-2bde-48ee-a794-823838d86025\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/fe/5b/8b/f1fe5b8b-24ad-406c-873c-fe36a2069215\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/ab/ba/60/f1abba60-34c9-4b96-805e-dcbac6eb0ee2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/68/4a/dd/f1684add-3653-45fb-8a9d-260220c8b709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/64/6a/b7/f1646ab7-6b41-486d-895a-8614273adcb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/30/a3/7f/f130a37f-2c1d-4e85-abc3-adc0be64ce56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/bc/f7/5f/f1bcf75f-1d83-427d-a79f-75db66a75e88\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/94/a2/7f/f194a27f-7d8a-4b90-b9c1-f2d4a3cb9cce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/ef/83/a1/f1ef83a1-b5b2-4b9d-9489-720e1ea33da7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/d3/c1/bb/f1d3c1bb-5fa1-4125-a152-965c1377b32f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/f7/a8/10/f1f7a810-a041-4c92-a797-7cb0a5e87f62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/39/6f/a1/f1396fa1-a7fc-49a9-9228-da15f4339675\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/a7/4e/6c/f1a74e6c-688a-48a2-ab25-de4fb04ebf36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/b3/4b/71/f1b34b71-bcc0-4dc5-82b2-6055cb652e93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/51/d7/23/f151d723-9fd4-4b89-aff5-740e1dbb5aba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/fa/e3/ce/f1fae3ce-9c0b-4d85-a395-05be2ec8e87d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/16/81/27/f1168127-c773-4c41-9b48-331a985e0994\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/69/d1/8e/f169d18e-52d0-475a-a410-9805379afd39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/69/7f/cc/f1697fcc-4b84-42fd-a5ba-17f3570aa8e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f1/f6/d7/14/f1f6d714-5bbd-4c32-9ddb-a367026782a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/48/eb/60/6e48eb60-1403-4ca2-9709-b8907adf92ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/73/d8/3c/6e73d83c-b456-4d2b-b799-8d3822f6ec3b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/72/9d/54/6e729d54-bb09-4707-afc6-962bb880fedc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/6a/85/b1/6e6a85b1-e955-4282-99a5-0fe47fe7c5ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/b5/ed/ab/6eb5edab-4872-40f3-8145-15a8def2a559\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/f8/47/a9/6ef847a9-13ed-40ee-a164-9f8ba33dd2f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/07/10/43/6e071043-3324-43b3-af14-43468ff68766\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/4e/3f/c8/6e4e3fc8-d419-4152-9447-de466120467f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/99/42/61/6e994261-283a-40d1-b1bd-30b55877c2de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/67/28/8c/6e67288c-badc-49a1-b2d5-151686851c0c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/65/b9/f4/6e65b9f4-eaf5-4aff-9d39-f8f4b6860207\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/d3/2e/31/6ed32e31-fd66-42f1-a3a1-9c0747b27808\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/83/2f/34/6e832f34-3612-42db-8e3f-cba17fd9b4b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/aa/9c/ec/6eaa9cec-613a-4369-9255-bdca1aacac24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/87/a1/a1/6e87a1a1-1b60-4cfe-951b-771cf83e7ed0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/11/5d/72/6e115d72-4761-413c-b87f-5d36e141fdeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/c3/62/87/6ec36287-a69a-4310-84ed-9722128cd512\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/70/0a/eb/6e700aeb-9632-40c9-a5dc-fae8ce3e05e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/49/cd/e8/6e49cde8-ea22-4f19-b500-c311800622a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/93/77/07/6e937707-668f-428a-ac76-7b4bd4ac01e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/6f/41/07/6e6f4107-92ac-48af-bde4-fbd99c495aaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/33/d2/66/6e33d266-eba8-471a-8971-d69b5785e6c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6e/3a/c5/b0/6e3ac5b0-5f40-4425-8687-eaffb4222b4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/a0/f4/1c/6aa0f41c-d4c5-4b58-92ca-7d2180da6915\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/4d/fa/16/6a4dfa16-2567-47e9-aa74-15130ddaae91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/f3/dc/31/6af3dc31-baa3-4824-8502-7f59c9b450d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/d5/f4/e6/6ad5f4e6-a2e0-4aec-a30b-7cc7d4f5ec07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/09/cc/fd/6a09ccfd-c94a-4a8b-9632-bb2c61d0fcd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/09/31/17/6a093117-bf10-4f06-8fe6-52db310dcfad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/2f/20/42/6a2f2042-b125-411f-b70e-3478341851ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/1c/08/89/6a1c0889-435b-401c-9dea-4ad919865305\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/ac/be/11/6aacbe11-4d65-49a1-ac68-605fc86105e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/2a/0e/01/6a2a0e01-6d09-4f5b-82c4-eda3852f8fe3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/20/e1/cf/6a20e1cf-ef60-4807-aa02-e1cc6bb0fcde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/19/f5/4f/6a19f54f-30cd-44a8-abfe-8cd9c0e034dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/ec/23/32/6aec2332-bb48-448f-9782-98026012c795\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/58/15/0d/6a58150d-3b31-493c-8dbe-88adf0a70d35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/32/a8/6e/6a32a86e-5056-4f79-b6a3-6109f9d90565\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6a/38/9f/6c/6a389f6c-5c74-4aee-8363-0b3f8fb6109c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/52/4e/b4/52524eb4-ac71-45a3-9269-3cf357169efa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/52/1e/2a/52521e2a-0e2b-4fe7-af18-9aa68280f8ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/9c/40/0c/529c400c-0b28-43a1-b191-fb2704438fa2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/38/21/17/52382117-5663-4492-86d8-9fbfcec578e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/51/a2/25/5251a225-c194-4608-91a8-f55ae530220b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/90/83/db/529083db-f6fe-4849-986a-491fb9d5ccea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/a6/29/f5/52a629f5-5797-48e0-afd5-f8cccccf0f41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/2b/e7/98/522be798-44ee-481b-9374-786431914c6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/b7/29/6d/52b7296d-48b5-4019-a682-85b6b5d87659\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/b7/ec/25/52b7ec25-19a8-42a1-92c8-908280eb29dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/1e/9a/02/521e9a02-0a4a-407c-96fb-9b7f32cd51b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/1f/54/db/521f54db-c830-485b-a0f3-d24fedeef3f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/ff/1a/1e/52ff1a1e-5199-4640-8bf2-e8e672d030b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/8d/21/ad/528d21ad-e05c-4886-9e39-8dd5484ad977\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/9f/8d/cd/529f8dcd-1d5b-4635-a5d7-6c1ebc330c7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/9f/84/42/529f8442-18c3-4726-b8ab-ac8c36a5039b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/54/03/b9/525403b9-7299-4af4-b7d3-c526424ad187\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/af/4d/43/52af4d43-576a-4210-9763-f73b088e383b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/af/4b/fe/52af4bfe-27e1-4a4a-ac4d-eac56b7efa2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/21/f4/26/5221f426-ff11-467d-a702-13911ddf77f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/10/6f/c9/52106fc9-4ed0-4f55-97c5-8d7b2f9b57ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/39/1a/89/52391a89-bcca-4a7d-bca5-cf3059c5e87d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/50/1d/4c/52501d4c-6e8c-4ab2-a13a-a831c15335fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/52/f6/a9/c3/52f6a9c3-ef83-457f-b270-94b2497098d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/a1/e4/af/b5a1e4af-14ad-43d9-a19e-18d0501c6059\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/53/f9/e9/b553f9e9-6e73-4c89-99bc-6a380c4c6422\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/f5/be/78/b5f5be78-73e1-4f2f-ad91-d6940148e933\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/ee/17/ed/b5ee17ed-078b-4aa9-a644-6cc047ff528a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/ad/38/25/b5ad3825-1e34-469c-bca4-2c5139293cdf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/0d/a7/e4/b50da7e4-1c4b-4189-9a31-c4ef49a137e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/ac/cd/42/b5accd42-19a4-443a-973d-551652102d3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/4e/cc/ea/b54eccea-8b87-423a-9ccc-65500b8ca1cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/e0/77/e0/b5e077e0-df04-443a-9df0-2a430baf2516\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/1b/6a/b0/b51b6ab0-636d-4791-9f50-dd90a08560e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/1b/c9/5d/b51bc95d-fc6a-48da-bfd2-550d4ca0a4ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/1e/7e/22/b51e7e22-97f1-4f97-a967-7382e9b305e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/42/79/2a/b542792a-9d7e-4a4e-b18e-9dfaad51a066\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/95/03/28/b5950328-0c4d-4378-9d3a-8bf5de8829da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/5d/52/77/b55d5277-6f9d-4040-8de4-eff2a0e73847\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/15/4f/40/b5154f40-1d26-4975-a1ef-d85cf624b129\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/f6/8d/b4/b5f68db4-8b1b-4fad-b979-72cdbd8604e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/a3/d5/88/b5a3d588-0d48-4a51-bde1-4b7aa734dbfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/9a/9d/27/b59a9d27-53c2-4f6d-b673-a71713389709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/9b/76/3b/b59b763b-4ba6-43cd-9278-76b7e665c1ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/80/44/33/b5804433-2f53-4897-8874-7a2902ee2e65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/a2/fc/5d/b5a2fc5d-d85b-44e4-8e1a-adf2217624b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/e2/f4/f1/b5e2f4f1-8c0a-4928-91fa-73ae156827c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/6f/0e/fb/b56f0efb-48cb-4d5d-b9b3-d8baaf538990\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/9c/2a/dd/b59c2add-dede-488e-b833-2de651752304\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/58/1b/d4/b5581bd4-a7ec-4ef1-8eb8-68f128b97f7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/12/d4/c4/b512d4c4-4667-46d9-8822-c6027f1fdfac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b5/f8/dc/4f/b5f8dc4f-36d8-42bf-8906-9b0b5e9029a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/eb/3d/6f/11eb3d6f-bb55-4f22-92c8-3190f3307ba1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/13/29/78/11132978-97f9-4074-a056-e85054db567d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/17/9f/2d/11179f2d-2492-42a8-b7f6-b6be9fc75f60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/81/ae/f0/1181aef0-0df5-4251-8037-5b049f67f05d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/18/40/bf/111840bf-fee7-47df-9b2f-530940cb4f7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/c3/6d/f6/11c36df6-1b28-419e-b6b7-4f1acd7a318c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/de/f1/51/11def151-636f-4abe-ae74-d70d615c13ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/68/fa/72/1168fa72-66b7-4565-8734-ddd5a33015ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/3a/c4/aa/113ac4aa-9d65-4806-9dde-cfab7b96e4a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/e1/2d/c1/11e12dc1-496f-4890-b8a0-82da6b6bff1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/5a/0a/7b/115a0a7b-f0bb-404f-a461-0c6af343df35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/06/24/49/11062449-0035-4e53-a4b0-2640dc4db488\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/9e/e8/21/119ee821-926f-4eef-b5f7-e658b01f4037\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/ca/57/00/11ca5700-f8d3-454b-b61c-e876b65218c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/ed/99/c3/11ed99c3-89fc-4dd0-9d84-b2f58c0b9db4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/43/95/21/11439521-3945-42f9-b1f1-2f7c3d2eccc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/59/ee/2a/1159ee2a-d521-49bd-8912-e4ac978f2210\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/df/43/81/11df4381-35ed-47c6-a4bd-6caeb7621dbb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/f2/dc/26/11f2dc26-8d94-4ad2-b9bf-ab261dcbfcef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/98/01/88/11980188-177c-447c-91d5-b24320f68f32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/11/2c/49/65/112c4965-aa15-4c7a-b81e-88d14e88de44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/3b/4a/5a/683b4a5a-4ee3-49da-b52d-548d737205b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/1f/8f/b4/681f8fb4-c369-4a05-a3e8-04e5c244d7f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/80/2d/f0/68802df0-3a24-40cb-98bd-86a95b4c4a27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/3c/a3/99/683ca399-5e3e-4c60-90f2-8b70d689cf87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/9f/53/c3/689f53c3-0616-4d9f-aa14-54af687f63a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/85/53/64/68855364-100d-4bd1-8372-f24ba336f9bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/d2/6f/8d/68d26f8d-adb0-48c4-bb47-987fee8425cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/78/0d/9e/68780d9e-7172-496a-8cff-c9daeac1223f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/e7/12/92/68e71292-57fd-4a12-9bb2-a999455d8e9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/90/c7/fa/6890c7fa-29c3-4bce-b483-b2953af46bb6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/03/84/0c/6803840c-a931-4cf4-9627-d628e8e9d8a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/f1/21/ca/68f121ca-266b-4d1a-8263-1460839e2ba0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/fc/a4/53/68fca453-59c0-4fd4-ada1-831309943dc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/47/a3/04/6847a304-d662-4d7f-a750-14bdae4fc637\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/65/d4/11/6865d411-2632-430a-a6c2-c525148baebc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/bf/30/fc/68bf30fc-e565-4b36-9d1e-f5652c7f840f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/b0/0a/e4/68b00ae4-6ca8-47bb-a194-b6012f336066\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/5a/10/c6/685a10c6-7a74-4960-b4dd-bb472ff9a890\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/4e/08/a2/684e08a2-eedc-43fb-97b5-b928775abf7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/43/79/75/68437975-7ee2-4bcd-8b7b-5c276c6f175b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/27/b5/8d/6827b58d-554c-4626-85be-5cdf4963e87e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/58/c8/da/6858c8da-5bcf-4891-bfbc-a9989da8d1b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/c0/72/8e/68c0728e-cee0-428b-97ea-5f71caa742c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/32/4e/0d/68324e0d-1e5c-45a6-97f6-3cb177725893\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/8f/55/1f/688f551f-c1ad-4611-af5d-dcf2f2a7e388\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/68/df/ec/53/68dfec53-5d8c-47d8-b741-e9d4a770580d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/4e/30/d8/c74e30d8-ad9a-46bb-ab41-7b05076c1c2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/4e/50/f7/c74e50f7-d103-4b10-94e4-5caef7bec15c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/3d/19/4b/c73d194b-8e96-431e-8c59-a2870cbebac9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/f6/99/3d/c7f6993d-ff20-41c1-bbe1-79e62ca17b4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/95/fd/e2/c795fde2-5925-4a6e-8e25-ac9b3e228e56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/67/51/c5/c76751c5-b2be-4604-99fc-4ea97799dca6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/b4/be/ba/c7b4beba-3281-49ed-972c-b6fd9621c54d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/87/79/c8/c78779c8-b88f-4418-b2b9-ba119eac236b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/87/21/b1/c78721b1-d1e3-4a47-9940-9e87af04299c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/74/f6/70/c774f670-a956-43a1-a712-d432f4fd7a31\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/74/ff/45/c774ff45-4376-400f-bfe9-8ca17155d9f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/43/54/90/c7435490-06e5-4410-8168-af2ad0a2bd0b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/7f/8b/1f/c77f8b1f-5a9b-47cb-87e8-50955158bb94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/64/26/a1/c76426a1-a253-4b77-a034-eee6ef43a050\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/b7/fe/6a/c7b7fe6a-2f56-4ee7-9bfd-5a704935b519\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/3b/70/88/c73b7088-5399-4dc5-a0cd-68f141dd3b5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/ba/69/ee/c7ba69ee-f69f-407c-b594-1f2849756fa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/ca/22/c6/c7ca22c6-adf3-42f4-b948-1c8407e8e34f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/41/22/e3/c74122e3-c350-4c06-b296-ae704af9e3a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/91/49/15/c7914915-6284-42ef-ac1f-65ba1c1030de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/14/c8/ff/c714c8ff-1323-4f13-9b44-84a8d9dac36a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c7/0c/c1/75/c70cc175-e0e3-44b9-af5c-5f5d517208bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/69/c3/9b/e869c39b-6121-4dcd-abf6-142f419635ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/69/a0/f8/e869a0f8-a500-4b91-85cf-e384cfd02564\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/85/eb/74/e885eb74-24a3-476b-a452-582fb4933c54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/88/d6/98/e888d698-3c6b-4333-aaaf-a486ce8038ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/ca/6b/84/e8ca6b84-16da-4a13-98bb-57b98e5ed0ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/66/0f/4f/e8660f4f-abe5-4bce-88d7-ec7d3e7bd4e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/46/c3/2c/e846c32c-0e05-4038-9fb8-a361108a98de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/dd/15/1d/e8dd151d-a1c1-427a-97fd-01b3f2a94368\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/11/53/b5/e81153b5-5030-4df6-b092-ec88ed36ebaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/e9/4d/80/e8e94d80-a4fb-4b2d-bc6d-59376975031a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/b6/54/e2/e8b654e2-0148-42d5-9e30-f105ad3b78be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e8/92/cc/1d/e892cc1d-952a-45ea-8ec9-4c25eb50501f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/f5/49/43/40f54943-5338-4bc5-9181-b656ee5dd521\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/b8/e6/7b/40b8e67b-bb93-4fdf-9c81-3f2ddfa96d9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/0a/35/3b/400a353b-7259-4b8a-ab02-e79b02affd13\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/11/e1/7e/4011e17e-0584-46b1-b39d-6b655d5bf9dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/76/c5/b2/4076c5b2-b8f4-4914-ba00-be8258bb4b39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/80/3a/9a/40803a9a-7154-451e-bab4-7769da55527b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/9d/7b/37/409d7b37-430e-42dc-aba2-3696fac329d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/5f/e2/81/405fe281-aba0-4641-bf90-a88b636fbc29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/83/62/41/40836241-e2a5-4d46-b87a-4f55327c33a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/e5/1d/11/40e51d11-20c3-45c0-8523-793e77037c81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/3d/70/c9/403d70c9-460f-4a64-8be2-adbd645c0fac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/9e/3e/5d/409e3e5d-f93f-4b63-84ad-eae8c0f5a352\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/13/67/91/40136791-9eb6-47a2-bfa2-cdd4c86890ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/47/f4/f8/4047f4f8-d9a6-44e7-a080-a4f632bff233\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/aa/d7/31/40aad731-641b-4db2-9591-ac7bb358743a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/fc/b5/a8/40fcb5a8-0d51-4b81-be6c-818a016eb085\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/ab/b2/bb/40abb2bb-d820-49ca-8672-580609b767aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/fb/34/c7/40fb34c7-d05d-49d2-bb7b-93040e80342c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/40/c5/fb/bb/40c5fbbb-e9ae-4915-865b-3f46ab306da8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/6e/d1/e2/df6ed1e2-af2b-445d-8593-744f4dc02fbf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/80/5d/a2/df805da2-1403-4def-b679-0de08d589ea5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/7b/ec/cb/df7beccb-a669-465f-ad03-33d8e59b17d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/41/57/13/df415713-5ecb-4486-bb3d-7ef9d92d7c77\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/ea/af/93/dfeaaf93-bea2-45e8-a547-e635706dbe6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/fb/ab/f9/dffbabf9-64fe-432f-b79e-e13a3b6a28fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/3c/e5/df/df3ce5df-8b0d-434e-93b4-06d3cf841b09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/5c/62/be/df5c62be-474b-432b-89de-4df57662236f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/3f/39/45/df3f3945-3ef2-40e1-a8fd-b031d27b9095\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/54/ee/77/df54ee77-7b30-4c33-9a5d-8d9f72d5e4d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/d5/00/4c/dfd5004c-9bc5-42e4-b096-8e27bb324370\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/b5/d0/ac/dfb5d0ac-a088-4270-b4d2-6079da4ca8b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/0f/a7/5e/df0fa75e-af11-4978-b408-1e595eebce02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/e9/80/1b/dfe9801b-3a12-4680-88ae-1f13b1f6db58\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/57/4a/d1/df574ad1-8a2d-49f5-9278-ae3397acd3f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/58/ad/af/df58adaf-ad40-4370-b29c-a4ac0aa2d73d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/bd/35/4e/dfbd354e-3691-4938-8c41-dc3f8c352b1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/d1/18/c1/dfd118c1-a435-4d3b-bf73-d5283f139f46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/35/72/fc/df3572fc-9dc0-4f8f-b3d5-26d0b877c771\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/02/b9/85/df02b985-9d6f-4419-82c1-3d07db0c4f7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/22/f9/4a/df22f94a-2f51-4168-80e1-56a331a25dc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/5d/64/e7/df5d64e7-65ef-4eec-a3c3-eaf899a4edbb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/8c/7f/ea/df8c7fea-09ee-4bf7-9521-a94bfd0b87ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/19/18/52/df191852-77b2-4e95-a7fb-5e553e923201\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/df/77/a5/f3/df77a5f3-4c2b-4f17-8663-9341eb61eeb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/2b/a3/4b/e52ba34b-b860-4055-9d1e-de817f52c490\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/2b/8c/57/e52b8c57-1d51-46ae-b2a7-035459ebcb39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/98/6c/61/e5986c61-99d3-44cb-9ade-fe25d1dc9c3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/e1/44/64/e5e14464-018f-4f25-a6bd-b7f9d2835087\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/56/4c/4f/e5564c4f-5931-4a39-8bce-d9f53adbf8a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/32/3b/57/e5323b57-9f7a-474d-b3be-f3f1a843d415\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/b0/31/9b/e5b0319b-289b-4d10-b6f7-4cf3e0c79407\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/79/42/07/e5794207-d588-4b97-b0b9-32f5c1281594\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/1a/f6/9d/e51af69d-0feb-4ddb-8c65-d5cdb54ca995\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/df/20/f3/e5df20f3-c945-4493-a590-4697526d04f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/d9/1b/c9/e5d91bc9-fdea-4f0f-ba72-7f5d85c9fac0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/ed/6b/01/e5ed6b01-a809-473f-8c60-377dacaf2cf5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/ed/3b/cb/e5ed3bcb-f917-4e0e-9dfe-5c587b7c4457\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/4a/ad/14/e54aad14-946c-4354-8cdf-5f11b253fa5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/4a/4c/8c/e54a4c8c-c639-4103-a98a-4fe1f9b72fcb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/92/5b/10/e5925b10-d6e5-4ffb-8d92-e2cfb1b15ae1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/d5/6d/ae/e5d56dae-8247-4fa7-8db5-5a190891223e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/44/6b/7f/e5446b7f-0136-46ff-82ce-5e9c699f8ea1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/3e/3f/63/e53e3f63-4f36-4ded-9b5a-9cc8f975ec05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/bd/22/95/e5bd2295-7c38-4695-9f3c-81bb05370939\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/27/3b/5b/e5273b5b-a13b-44b3-8976-c9a7d03616f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/6d/d5/b0/e56dd5b0-b789-4f25-8aea-058802349825\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/39/2e/d8/e5392ed8-2ddc-4086-8c9c-b2bb364447c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/1f/0f/e8/e51f0fe8-c758-4d6d-bfce-4e72f5b7166c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/43/39/51/e5433951-7aed-4d16-bb47-034c0ba9696e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/fb/e9/07/e5fbe907-6424-4935-86d5-3b898d44bc68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/50/7e/50/e5507e50-d54f-44da-b787-608a2a40b5e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/25/97/a8/e52597a8-6c10-416a-bc17-00098d747bd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/60/62/68/e5606268-77f8-4f53-a654-d5c7b4f83b53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/b3/4b/5f/e5b34b5f-8a80-45c7-afc1-58b8e88ab0c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e5/55/82/0c/e555820c-bec3-41d9-b17f-60a025a0ad4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/23/f1/61/1023f161-74a0-405c-b346-8f38a20fa2b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/98/d9/d5/1098d9d5-7c29-41b6-9e5a-28928a2c6a41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/88/a1/25/1088a125-1783-405d-acab-0040e0f65354\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/6e/8a/25/106e8a25-7964-4d3f-93f1-53e625293527\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/6e/a5/c6/106ea5c6-0321-4be1-a553-57f66b91d5a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/9e/67/72/109e6772-aa3e-4168-aad8-75259dbd5cf4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/ea/75/78/10ea7578-d90c-438b-b3f8-a29c6678a968\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/50/5a/de/10505ade-d898-4b08-9159-5d3691bf50c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/0e/5e/de/100e5ede-ee8e-4cea-8470-a013682d9577\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/e6/3c/39/10e63c39-5707-4cd7-8707-e534ec34f19c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/63/20/43/10632043-5cf0-4810-b77b-cfd4c67bb01a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/75/31/fd/107531fd-199f-494f-af4c-cb31b533375d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/60/32/0f/1060320f-5ed4-4a4c-8522-80e54ed2ba02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/a3/34/f7/10a334f7-706e-4d7a-af68-330b1e827726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/45/ac/fc/1045acfc-7318-4f19-90df-b52176cc0cda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/d2/ea/1a/10d2ea1a-43df-41e5-840d-2d04fb81f45f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/3d/83/45/103d8345-2170-48ed-a02b-981bd5c58d2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/d7/09/b9/10d709b9-26cf-4cdb-b5f8-5d9e575319ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/f8/c3/0d/10f8c30d-f6c1-4dfb-8a5c-c1d0eafab0f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/2a/65/9a/102a659a-5a55-43ea-aa63-b8473c091539\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/8e/8b/30/108e8b30-0756-4235-83fc-9ff51dc52918\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/ba/c8/53/10bac853-d3d7-4d5b-984b-86ecd7d55697\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/1e/aa/dd/101eaadd-b21a-4828-a735-4d494edd9d8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/a6/7e/bb/10a67ebb-6b75-47cc-a9f4-393c45cb9d46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/a6/13/80/10a61380-2334-4cd5-9037-a46081481269\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/e8/c3/07/10e8c307-b2d7-4436-b3a4-2bc35c7e8d79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/90/9c/98/10909c98-6e5d-467c-ac81-bedd8aa38623\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/10/5e/70/8f/105e708f-fda8-4f0e-aeb2-9dca28a50163\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/25/f5/2e/eb25f52e-5162-4857-a9d7-7d6f3d4c0685\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/79/7e/b9/eb797eb9-1894-4afd-be48-fddf8384f9c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/da/dd/29/ebdadd29-ca05-4b40-bfdb-b338f1363b64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/31/16/66/eb311666-55c9-411f-b31e-90390f89db12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/34/f3/54/eb34f354-55b2-4095-bbd8-8b129a06513e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/e8/18/32/ebe81832-3612-47cd-b42f-7c2fc1f74eec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/b9/94/a1/ebb994a1-d103-40f7-99e7-21ae8624e6e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/e4/bf/fa/ebe4bffa-1574-45c7-aaf4-48baddab9eb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/ba/b0/bb/ebbab0bb-9f1f-4879-b697-7153998c3253\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/c4/49/dc/ebc449dc-65de-42a4-af60-c1dae20a849b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/e9/24/1a/ebe9241a-fa55-453b-b5c3-5041ae087b3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/cc/7c/b8/ebcc7cb8-7473-4a50-be0e-5888b1e6ee5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/ff/9d/6a/ebff9d6a-d9fa-4cd2-a38a-1d113db3bdea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/fb/ec/ec/ebfbecec-599a-4898-848f-acf9e2982625\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/91/f6/9c/eb91f69c-f73a-4677-87de-2188645a7a4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/f8/66/d1/ebf866d1-87ba-4045-9322-a856142499c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/9a/9f/78/eb9a9f78-d541-41be-a563-14f00269f73d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/de/0c/73/ebde0c73-586e-4bb5-a79f-f6a8016f4eaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/c5/a2/e2/ebc5a2e2-fbb7-494e-9b49-683e4670cbd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/df/45/8b/ebdf458b-a6b9-4d9d-bcb2-3831aa1190a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/0c/e4/e4/eb0ce4e4-8028-433f-ac27-4f11044aa2df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/d4/fb/ab/ebd4fbab-4e73-435c-b327-368313b213c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/eb/8c/73/d3/eb8c73d3-2759-44ef-b9df-622dbd6702a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/87/96/f4/4f8796f4-68ad-48ed-b006-2ecc003799f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/43/d5/68/4f43d568-f74e-4c7c-ae61-8623941e3c18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/50/23/4c/4f50234c-2123-4de7-a15f-ed3c8e5de358\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/37/41/52/4f374152-1e5e-4fa3-a915-4134bced2d7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/8e/d4/54/4f8ed454-0fa5-4e15-b299-5ee40228ebd3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/9d/ec/6d/4f9dec6d-0897-4e11-b6e1-153c22a06b48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/f1/c6/41/4ff1c641-7f84-45b6-a336-2e11b22a3d74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/e8/c5/90/4fe8c590-1074-4e16-9ed7-8fb0c1c02792\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/61/e7/b6/4f61e7b6-2f8e-4654-8c84-ce9f63f173f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/42/d7/07/4f42d707-7bf5-41a6-a96a-2ced7c93d5ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/c4/bf/f9/4fc4bff9-3dd9-4dfd-9a5a-f39d3529ee94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/06/f0/20/4f06f020-1bed-4e97-8ea6-1fff3b22e05c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/93/33/b4/4f9333b4-1da4-41fe-90fa-def4d2ee2e74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/ab/d8/6d/4fabd86d-9b5f-443d-81e2-6023f9070d00\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/b5/2d/2d/4fb52d2d-fc40-44c9-8644-87a9a5b62686\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/3d/05/5b/4f3d055b-3e71-4b5c-abe9-b5ade549c518\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/52/12/f3/4f5212f3-5809-4d6c-a186-8601d132599e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/ac/0c/59/4fac0c59-5dd1-4463-9802-420b627a13ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/59/a0/a7/4f59a0a7-d42f-4ed8-9fb8-577b0faae2f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4f/e5/e4/34/4fe5e434-5f18-4b7a-b75b-232cfc2a79f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/23/3e/9d/04233e9d-40c5-4f5f-b324-89905def9812\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/71/5f/4a/04715f4a-923d-44bb-849e-1e9da43bf589\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/0c/aa/9a/040caa9a-6e8d-495d-bb8d-055be04d896f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/bc/24/5e/04bc245e-8c64-4aa1-8b5b-e4553885dd11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/e4/ef/78/04e4ef78-ae2e-4897-b159-ba94d9aa9a17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/58/63/24/04586324-33f6-4519-924f-572c016cf126\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/3a/71/02/043a7102-12d9-4cdc-8d5a-58c621e7ea8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/ba/20/36/04ba2036-6037-4fde-a7bd-b24d4b4f17f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/03/77/08/04037708-3c9a-479c-b075-07b94cd8a406\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/5f/b6/65/045fb665-110b-4041-94ff-5bae563cb8eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/1f/ab/88/041fab88-87cf-4f0d-8018-891d4fbd4d4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/63/e0/8e/0463e08e-293a-454a-9e1c-314cde3f45c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/81/85/da/048185da-bfd3-4072-b581-836218864dbc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/f1/84/56/04f18456-f841-441a-9720-c537dd4d09e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/c8/ca/8c/04c8ca8c-6f0e-4d17-8ced-90c6b0f2a081\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/04/16/f3/df/0416f3df-a423-487c-8d87-881d163f5aec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/c0/a8/b1/a1c0a8b1-ecac-4935-b3bb-25a548ccb002\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/27/be/3e/a127be3e-0eb7-4c12-a9f8-8a024e207a02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/18/fc/85/a118fc85-3f38-41a1-848b-7de64b50b068\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/8e/97/9b/a18e979b-4628-4c3d-a47b-c026cbeb0f2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/b4/c4/c6/a1b4c4c6-cbfa-439f-ada9-b4e952127c3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/24/72/45/a1247245-913b-441d-a4fb-32d2b367d002\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/a2/e9/be/a1a2e9be-f4a9-48a3-88aa-995ed7bd66a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/a1/f8/13/a1a1f813-dc39-457e-bded-0ea3c8be0aca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/98/3e/68/a1983e68-6e3c-4245-a4e4-a222ee8da74c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/b9/36/c0/a1b936c0-7838-46c9-a0f9-3d955e3514cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/8c/20/ba/a18c20ba-f2fe-4b5f-9912-2be177b22ca7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/09/67/c9/a10967c9-fb75-48f9-839e-7f109850713f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/3a/01/4b/a13a014b-9f25-4a6e-9d76-4580e455ce80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/3c/de/9c/a13cde9c-ee20-4978-9483-ab3942236bc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/19/18/a9/a11918a9-fba9-4469-ae5d-d428a123cbe9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/40/d9/9a/a140d99a-067c-48d8-8814-1d0afecd4b56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/0e/a1/8b/a10ea18b-1356-4870-b82a-477a15364edd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/ce/12/7d/a1ce127d-23c4-4ea0-9c69-236e54485dab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/86/4d/5f/a1864d5f-c4b2-4c86-bdff-c3f016cff9c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/53/88/58/a1538858-694d-4ac8-8cef-551889e6534c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/bc/a0/d0/a1bca0d0-29c8-4c6c-a88d-724609f1b0aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/d7/b5/94/a1d7b594-9719-41ed-a184-8b7fb957f83b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/d9/fe/c1/a1d9fec1-b8d9-45e3-a53a-238278b55f3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/a4/ea/32/a1a4ea32-4db0-42de-9953-c04c775b92f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a1/93/f8/2a/a193f82a-3d52-43ea-ac43-3f8f56961eea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/7d/a5/4c/907da54c-0224-42f3-9ccd-9ea7f887f180\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/3a/05/38/903a0538-cf42-4aab-8eaf-ae10efe1665a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/b3/54/a4/90b354a4-2085-44a1-8371-5ab337892c63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/be/19/1f/90be191f-c8a2-4fce-b9b2-f33d93d3aefd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/bd/19/10/90bd1910-608e-481c-af3e-86185b705d79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/a4/b0/fa/90a4b0fa-5e8c-4042-a82c-d468c825cf6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/51/a7/b0/9051a7b0-3689-46b2-aa6b-55129a1aec22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/5a/0b/97/905a0b97-bc02-49e0-9f51-99ae41d2882e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/39/8c/dc/90398cdc-79e0-43ab-bf83-12497bec6d9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/dd/84/c4/90dd84c4-206a-4b6b-afeb-064cf9efea02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/7b/53/ad/907b53ad-f316-4a0e-b044-15c7b851fef8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/f2/45/fe/90f245fe-e00f-4e41-9f83-8d868ac410ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/f2/9d/93/90f29d93-b43f-4646-b733-dc7045f91b71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/71/69/70/90716970-42fe-4ec7-9d0e-1b00aea3062a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/2b/be/f6/902bbef6-6b71-46db-a352-5f86bed418d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/a6/0c/3d/90a60c3d-34d7-4c65-a2cf-c02064b2688f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/1b/ae/39/901bae39-b50a-4bdd-9081-330d7a91664d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/0b/94/37/900b9437-7796-4ceb-b764-19057596135b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/73/81/81/90738181-3c4f-4bed-a3ae-834482b1aa8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/eb/89/b6/90eb89b6-7544-453c-8976-45633bc80650\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/62/c5/b4/9062c5b4-be26-48b0-aa69-5eb554ee2a38\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/7c/26/f6/907c26f6-ef72-4b70-b9d7-08e2a1423e1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/e1/95/1f/90e1951f-31e2-4136-b3c4-9cec7d6abce4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/ec/38/e6/90ec38e6-87b1-40cc-b206-d1af5c4fac2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/52/23/77/90522377-6709-4026-a91d-7731f85df843\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/90/87/78/d7/908778d7-9511-461a-9723-fef23d48f3d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/b2/8c/8a/55b28c8a-59c2-47e7-bdd1-f1972523ba52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/6f/c5/71/556fc571-5a16-4b48-ad11-4702e88df205\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/10/86/02/55108602-d61d-4656-8f50-97fa84c790a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/d7/e3/84/55d7e384-fd31-4c7f-b782-93e70a645dd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/bb/d0/92/55bbd092-0a7d-4508-9f05-93bc2236b0fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/8f/0e/96/558f0e96-4f82-4c2b-a092-d72fe83f88c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/d0/dd/30/55d0dd30-4340-48ab-9348-c9fc94ffbdb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/98/c2/53/5598c253-0a18-435a-b0dc-b32ae973ee5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/1b/5b/e5/551b5be5-589e-40e8-bfcd-658a8ca9369e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/19/72/21/55197221-d048-439c-a9a6-417c0b7117bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/30/94/57/55309457-c455-45d7-ac25-a3c081c0abd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/76/89/20/55768920-8d6c-416b-b9d0-e7e852fb3f76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/76/ff/d0/5576ffd0-b1b7-41d2-aabf-e3f3bb393f4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/6d/1f/09/556d1f09-aaa1-48f2-a0b6-acdefb904058\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/c4/57/59/55c45759-16a0-47a2-a610-d57a37bffc8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/85/46/40/55854640-611a-4651-ac40-55e1f4f2c738\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/f4/56/2a/55f4562a-6fdf-4562-a3c1-daf358ae5023\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/64/23/b8/556423b8-32f0-48e8-b2a4-a547f12ae763\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/64/af/20/5564af20-dc5a-4843-bfff-4ff8a4aaa033\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/ee/d8/9c/55eed89c-f60f-4b63-921f-c83e0ac51bfb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/0e/ef/31/550eef31-2f36-436c-a112-8a37a9a11bac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/55/9d/b7/b4/559db7b4-af21-4b33-8b78-b8e2d1166595\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/ae/4e/55/34ae4e55-715f-43b8-a922-26417536bfda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/97/47/72/34974772-fbe1-4168-a992-e1d70168a4e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/a9/69/35/34a96935-cf90-4977-9fda-0ae75a6f9e12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/82/6d/3b/34826d3b-58b9-4854-9af2-55d13fd73e6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/24/01/31/34240131-d48d-401c-a316-24d776aad9cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/19/91/54/34199154-d1c2-43e4-83b6-eb75a17b26f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/19/14/1a/3419141a-d745-40f7-9c42-6406aacce2aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/8d/3e/0c/348d3e0c-a984-43f8-bcc3-69bf59570f3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/23/a2/dd/3423a2dd-66ce-421c-a040-acec7f25699a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/7b/1c/a6/347b1ca6-a969-4f34-a3af-a6c9a5de4bd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/b9/0e/94/34b90e94-c9ef-4717-b8bb-c6ba9a379c32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/94/b1/4f/3494b14f-8e7b-4976-9d15-e809ebac2d3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/a1/d2/5b/34a1d25b-d3ca-48c2-9a7a-422bb61fb369\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/ea/b9/6a/34eab96a-eb1c-4289-8d7f-24cb9e70014a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/b5/33/e0/34b533e0-5a83-4017-a7df-40e5ec5870b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/ec/a1/15/34eca115-2171-4a13-94a5-b09cd245cd99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/b2/a5/95/34b2a595-be6a-4828-932f-951d9937e4e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/78/86/73/34788673-8c8a-4ba1-86ca-402bb02051d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/c5/4b/ad/34c54bad-b8c9-48ec-9763-0d1ec266a8fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/41/63/4c/3441634c-d6cd-415d-8145-dd3737579bfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/3a/e6/07/343ae607-f8fb-436f-a2b8-c399c36e3fa2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/92/54/16/34925416-390a-44ce-b221-c47e52f28b19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/04/25/5b/3404255b-b069-4adc-aa8c-55ee6875b934\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/1b/88/86/341b8886-1d10-40e0-af76-0e29464541a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/cd/4c/8e/34cd4c8e-2967-4dbf-9224-14df19f19aa8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/14/6c/0f/34146c0f-5def-4f35-b6b5-91f7e4d9d37e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/0b/9a/44/340b9a44-bb32-4532-86e0-ffdcfc63e130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/44/c8/97/3444c897-2da7-49b3-bb95-863132b8ab94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/8e/05/8e/348e058e-56e1-4ab3-95b4-564f0d35a62e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/f3/be/4c/34f3be4c-e2b0-4394-b32f-d22ca6a5ae6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/9d/4b/a4/349d4ba4-dfca-42aa-bd78-079ed8792083\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/16/55/72/34165572-12c1-4e34-9e4c-0b23ad6e1caa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/34/2f/9a/33/342f9a33-8005-45b6-b688-7dd53693f416\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/30/df/69/f230df69-8ed0-4c61-9551-7694246b353f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/df/59/c2/f2df59c2-6a11-4bed-8442-068d97c9c3f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/62/87/e0/f26287e0-f9bb-4ba3-bcae-4e9f8eaa62cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/51/01/3f/f251013f-5146-48fb-a2a6-1511c2ffca66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/59/b3/0e/f259b30e-060f-402e-93e0-a0d5882cbbc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/13/66/2c/f213662c-b0c7-4d4a-b258-32f765b79264\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/4a/73/fb/f24a73fb-3329-4a89-9958-8e028f3e3fd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/15/1f/38/f2151f38-749d-48bd-a0f7-ff6650ce34c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/79/f5/3e/f279f53e-e279-4a21-9fa1-08d9e51fe5f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/9a/dd/7a/f29add7a-987e-4876-b833-e2c8ab687d8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/7f/4b/0e/f27f4b0e-0620-4653-8bde-33e7f18294be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/82/54/fc/f28254fc-d016-4f54-baab-e4c1db6018ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/4d/dc/1f/f24ddc1f-514e-4526-b045-30d94ec79419\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/28/41/62/f2284162-6f6e-4522-9d3e-a42cb76d598b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/6b/12/3e/f26b123e-42e7-4d23-9f4e-6d29adc2dd71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/90/c0/a2/f290c0a2-465f-45ab-b2b7-efe2eb0506e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/5c/99/13/f25c9913-3c9e-4aab-9508-4fd048cdc9c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/d3/c5/f1/f2d3c5f1-e43b-4326-9db1-e00b89b1db8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/5f/a1/4e/f25fa14e-f9b4-4e57-97b8-9a88622ce6b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/c4/45/84/f2c44584-f5db-4844-877e-ae0ab4a6b8af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/f5/2d/db/f2f52ddb-3168-47da-a948-849db7cf82d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/e3/89/4f/f2e3894f-cf24-40af-bffa-f0166e1f2ac8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/95/21/4d/f295214d-c390-4f34-953b-d3fe2b3045cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/95/19/38/f2951938-a80a-4c28-904f-e65eda12edc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f2/61/9f/46/f2619f46-b21c-4a45-8efb-534bd8f24e0b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/e4/ab/a3/61e4aba3-a387-4600-9c72-943a2552187d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/4a/89/8a/614a898a-6d87-4c1d-9473-3d2e2814ff30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/4a/81/76/614a8176-9420-496b-a0dd-a40996f2232e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/e3/ac/68/61e3ac68-c1da-4cda-b709-9f01ea44175f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/9e/ef/b1/619eefb1-967b-4d6e-b19a-201883b3b51d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/f9/f7/57/61f9f757-56c3-4db6-b78b-e2fa10bb914f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/1e/5e/dc/611e5edc-48ec-481d-b120-e85203431509\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/92/ee/95/6192ee95-1ef7-4a43-b75c-2c31abfcc2ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/2d/89/82/612d8982-b655-43ee-bb9b-96ea64c679a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/b9/22/01/61b92201-3ea8-4964-9e2f-4f7c34fd0743\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/8e/9b/28/618e9b28-e688-4f83-8476-066c4ad935df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/05/ff/93/6105ff93-cbd5-4952-8ca8-166b4fb8a693\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/1c/05/69/611c0569-095c-44cc-8c03-014c58412472\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/95/d1/86/6195d186-8d51-4303-9599-d418bd705b2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/81/bb/5d/6181bb5d-0958-4184-8b76-34410d8a63f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/99/80/e4/619980e4-baf4-486c-96b2-c79c185364bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/23/70/2f/6123702f-20ef-4980-afe6-44ecb12c1efe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/c0/8a/39/61c08a39-d414-443b-b97b-7a90825c7281\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/b8/40/f3/61b840f3-d7eb-4e9e-83e8-20375f61a625\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/83/3a/70/61833a70-9f7a-4a0f-b71e-76dd80561f0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/61/7b/34/76/617b3476-9067-4fc1-827f-41b4c492ffef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/28/bd/3e/5328bd3e-c622-4c1f-b613-ba2e9b655cd3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/f6/be/52/53f6be52-8940-4458-b2d9-ce13c486dd4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/59/1d/0a/53591d0a-8fe9-4c91-b99c-dd88cbf86cea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/ec/b2/cc/53ecb2cc-3ad1-48a7-84a3-cc704645a6a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/5b/f4/4d/535bf44d-1e5a-4505-bb0a-f30883c78ac6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/cf/70/b7/53cf70b7-41ed-4839-9403-a124cedaa1a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/d6/f6/2a/53d6f62a-4cfe-438a-9cce-b4d58c8cbacb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/fd/df/91/53fddf91-def6-4103-8c05-3e7fb3cf66d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/6b/b7/02/536bb702-1621-4c54-ac7d-00557f6920a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/e5/3b/a1/53e53ba1-367e-414e-a65a-81a8b2b912f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/e5/76/89/53e57689-d954-4237-8862-d4b765cf54cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/05/55/9e/5305559e-b0f8-43c4-9257-c5237203ce6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/8a/09/3a/538a093a-cb5d-4491-bf4e-27cb82c72eb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/2e/e5/1d/532ee51d-4a36-48c7-9a51-3f5db17e3795\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/96/75/0d/5396750d-08db-4c65-a9df-a7f71724f0a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/2f/e7/4e/532fe74e-68bc-4ae9-bdf3-12a16c208fda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/91/53/e9/539153e9-6c7b-40fa-839f-6e2136fe8452\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/66/8f/34/53668f34-f3ca-4605-ad19-26a9fede1dea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/ee/46/70/53ee4670-bbc8-44f5-bcc5-da0250a49ea3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/53/7b/c9/dc/537bc9dc-f55c-47bd-9679-d5070f60fc68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/fc/17/74/dbfc1774-b359-4d48-b224-3d79a258f427\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/f0/2a/01/dbf02a01-1aab-4e44-b9b9-96efbdd626c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/fa/b4/21/dbfab421-49bb-4fc0-ab7c-7ff1715e2ed5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/cb/d9/47/dbcbd947-03ad-487f-8fba-7614f14e7fd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/58/bf/a9/db58bfa9-782b-4946-9bae-52cd7a886fd1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/55/99/61/db559961-ad02-47c0-a988-17dfc961f46b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/55/e9/00/db55e900-fff9-48bf-948b-4aaafc2ad1e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/96/93/e6/db9693e6-8e54-4f7d-8863-5bfdadfed2f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/a0/95/8b/dba0958b-d1a6-439b-a4ea-686d68e6bf63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/ef/e5/0c/dbefe50c-4168-428f-9fe0-0e87380339e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/ea/46/b6/dbea46b6-c12c-4240-bb29-2e62642e6de4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/20/82/42/db208242-bf35-4321-92d5-ff9a1cde5127\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/15/12/78/db151278-631d-4367-beca-f29bd0852d9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/15/80/b4/db1580b4-c3dc-4a16-bf4a-408feb8fbeda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/1c/8d/a3/db1c8da3-7ef8-441b-9af0-61b0f7f414af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/2a/0b/87/db2a0b87-bc69-4aaf-8a96-f26e4a7b7745\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/3c/4e/ea/db3c4eea-5895-4b92-975d-31e1cf3391ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/af/18/15/dbaf1815-c10a-4f20-a14a-a58df1d54bd9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/de/17/94/dbde1794-62a5-409c-9e1a-02c2ace5bf26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/22/f7/3e/db22f73e-587f-46be-a805-8a0f2eb63247\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/e5/cd/fa/dbe5cdfa-2b7a-443a-bc29-9bb2e4c8b600\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/a2/50/95/dba25095-9bd7-4a94-9b33-dec7c1e1797b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/12/1e/ac/db121eac-de64-415a-84a0-689bb29502c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/6e/41/d6/db6e41d6-59dd-4aed-a591-34e864b11532\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/db/9d/f6/4c/db9df64c-a370-4726-b4cd-ec32da663999\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/1b/74/a9/8e1b74a9-2818-434c-bf7c-4c818214a330\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/1b/97/c5/8e1b97c5-c1d6-4a1a-93c8-e950b9e1f92d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/82/1a/fe/8e821afe-5fde-4dcd-9871-cc340149104a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/5c/be/14/8e5cbe14-ffa0-4e72-b46f-03542dd0800a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/f5/47/b0/8ef547b0-4c9f-409c-91a9-bcb2cf170cff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/3e/d0/52/8e3ed052-d6af-4cac-93a6-c6817b8a99b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/e1/f2/97/8ee1f297-2a87-4f1f-aa79-d51dafe84ec7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/d9/b2/59/8ed9b259-1472-4565-b914-7a8dcfeb00e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/20/67/2e/8e20672e-4d8b-4bfe-8645-7ae9022e2dc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/22/1d/51/8e221d51-0813-4c6d-985a-70253db20e54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/32/14/08/8e321408-23eb-4250-943d-a24742e84362\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/37/ed/3d/8e37ed3d-faed-4dd7-8973-ed8f228e9301\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/10/46/40/8e104640-d388-4ca3-8fa5-dd2a014be8e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/6e/cc/b1/8e6eccb1-5ca1-4282-a5dd-0abb94da3a20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/f9/b2/d8/8ef9b2d8-4388-458b-bdf1-91eab7eb8767\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/ad/50/c9/8ead50c9-68c4-402f-8214-8ad5fbf49d4f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/4c/a7/67/8e4ca767-d280-478f-b952-24edca6a73b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/00/45/02/8e004502-61a8-4a3e-8c84-510373179f21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/f0/6a/95/8ef06a95-9453-4660-8b0c-0d8f6798fa56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/90/21/9f/8e90219f-198d-4aa3-82a3-80a661a41ba0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/31/8e/90/8e318e90-0467-4c0e-b7c6-a7290bc48848\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/6f/65/91/8e6f6591-f97e-414c-ae4a-4d0df917a02e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/97/92/07/8e979207-a036-4399-82e3-2133497dcff2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/94/ff/88/8e94ff88-e505-4498-a12d-c9ba781feac3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/5e/10/9a/8e5e109a-7c56-4c4e-ac9e-977b768845d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8e/50/a9/d7/8e50a9d7-e390-41e0-944e-0028544012bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/8c/b7/31/288cb731-4850-4b26-afa8-21fa1c5a246a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/08/b5/6f/2808b56f-2528-4dce-9814-c3bfa4eef7c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/7a/e7/6c/287ae76c-4bb3-4878-8eda-86ef7d3d9e91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/17/ba/c4/2817bac4-1eb7-4f12-a166-cedd7c1b7c7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/17/1e/4d/28171e4d-4ee9-4d35-b06c-39ebbc16889a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/93/27/b7/289327b7-d7c2-4a9a-94be-41bf991ad8b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/fe/6f/5d/28fe6f5d-e786-45f5-97cc-9d13dc31fe29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/55/fb/9e/2855fb9e-509e-4fda-b5e4-f89d30162028\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/55/d8/27/2855d827-c86c-48a8-877d-fa2ee8affa17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/11/9b/d8/28119bd8-e849-4b5b-99fb-88c8ff42c2c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/6e/e5/5c/286ee55c-94cd-42da-ac5d-477f641e9964\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/94/1d/22/28941d22-da34-4e16-9bf2-6dbcd611d33c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/84/db/1c/2884db1c-fc8d-46d1-b58b-9b8384246cff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/23/11/62/28231162-42f6-4e31-aeff-4e03f232d578\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/58/d4/1d/2858d41d-46fa-48b1-b92a-066d3a3d5a1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/05/2e/e2/28052ee2-ff89-4616-a9de-4cb30423ab16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/b4/36/d8/28b436d8-69a4-4f06-aed1-7ef184740dcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/2a/2c/e0/282a2ce0-4ae6-4cef-840d-8fd7482791f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/a0/d1/16/28a0d116-8236-4f0e-a422-09f9cad4cba3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/b0/fc/18/28b0fc18-dc87-4da3-aadc-4903b0f6c9d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/28/35/60/aa/283560aa-bc67-425a-96cb-8c2ac25a4412\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/1a/c6/3d/791ac63d-a65a-4ac5-b344-49af6a9c9e87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/84/21/f8/798421f8-fd36-482c-85f3-a4f567160a3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/a9/b6/f3/79a9b6f3-b7a0-49b0-90f3-f47c0b80e8d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/a9/55/95/79a95595-044a-4793-9661-982cf8e7c54f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/0d/ac/bd/790dacbd-6203-4e8c-86ba-bb37b32cce8c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/79/7c/21/79797c21-f96d-41d1-878f-c498bd3b7587\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/c2/11/e9/79c211e9-a3e0-4083-93a0-fc7258a55317\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/52/94/1c/7952941c-0524-4157-adaa-ce97b425f217\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/ef/5d/94/79ef5d94-e068-4019-82bd-c599e9df0747\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/03/f2/0a/7903f20a-62b9-41d2-bf3f-510d52dae231\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/97/53/8d/7997538d-8172-444e-ad05-64ef123509e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/4a/f5/6e/794af56e-c407-4f83-a1fb-892566d59ff1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/4a/8b/92/794a8b92-75f3-4171-897c-47e2d1a49f1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/38/7f/6f/79387f6f-36fc-4f78-8361-d3bc343fa71f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/12/0f/10/79120f10-bf25-4778-88a9-8ec334947a78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/e0/1a/2e/79e01a2e-78ff-4c17-99ea-daec4c4ee7d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/06/55/f2/790655f2-e69f-4a13-be6b-957dccd98312\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/14/8f/c5/79148fc5-7f51-43e6-aba1-08893e0076ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/ab/6b/ab/79ab6bab-91a5-4fde-b23d-a385fefd3ba6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/37/9e/49/79379e49-18d2-4875-bb84-7c154bb5d0ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/46/c2/91/7946c291-5610-459d-80e2-c83a976ed09e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/4f/07/97/794f0797-b03b-452f-9bc4-ddf037a10880\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/d8/cd/15/79d8cd15-a414-4b36-930f-35d754bde744\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/99/e4/ec/7999e4ec-c67c-48e1-b43f-983cfc971f5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/f3/66/a7/79f366a7-33e1-4be3-b989-efee296295c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/0e/48/cd/790e48cd-8b7e-467d-bea5-e8387acb93bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/0f/58/07/790f5807-3fca-416c-9d8e-5215ff17bcb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/35/58/ec/793558ec-4c18-4dc4-b357-d8fb055e541c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/70/5e/c6/79705ec6-4486-418f-a74f-174651d2e23f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/60/ff/59/7960ff59-9bf8-471d-b58b-80943398e4cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/4e/31/c2/794e31c2-2c6a-4582-8c39-1fbf4a75eb3b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/68/b2/e6/7968b2e6-5897-4bfd-a968-0a9df8c29113\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/55/d4/b4/7955d4b4-f079-4e5d-93ac-de2070bede5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/f8/5d/4c/79f85d4c-80f3-4536-977b-c2ab559b67ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/79/6d/1c/ff/796d1cff-950b-4e70-a834-2c8b2686bea1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/75/a2/2f/0975a22f-48d0-4a0e-9e0c-2027c1eebffa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/88/d0/61/0988d061-e498-4e2b-9703-b0c13f64c5e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/6a/7e/c1/096a7ec1-d93d-4530-bb08-57c30823d385\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/57/5b/b3/09575bb3-0f04-4c13-a8a1-56e536c676cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/14/9f/78/09149f78-278c-4cf2-aae3-ec6fdf0678f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/14/a1/df/0914a1df-af9b-4ce4-9640-888ae5848223\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/cd/76/10/09cd7610-4450-4c9b-baa3-932bd9a4dd48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/cd/c5/c7/09cdc5c7-c4a8-4317-bb1e-aac7ae296b91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/42/57/2b/0942572b-c46d-43d4-a5f4-c8a32e9df63b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/b1/ab/88/09b1ab88-642a-4057-ba3f-c4986e4a2e5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/8d/a9/c1/098da9c1-3137-4114-9817-9ba1c34fda2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/bd/f9/86/09bdf986-0b77-4673-8d5f-0045eede23c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/60/5c/73/09605c73-b91f-4d96-8879-0b989ffc4256\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/15/4f/83/09154f83-6421-4f22-a512-1c310fac7285\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/ce/c8/47/09cec847-13b8-4875-b0be-1d1c6587f2a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/cc/42/fb/09cc42fb-1ea2-4d93-a866-18159aaca497\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/97/2b/c2/09972bc2-a66c-456a-83fb-b4e17cd56881\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/95/2c/45/09952c45-a370-4e8c-8a27-3e9c97d9f72e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/c8/22/8e/09c8228e-c100-4285-b2b8-e359a40be9f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/20/64/41/09206441-76b3-4f3a-8d95-43541f7eb851\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/ea/a7/e1/09eaa7e1-438b-4d9a-9d32-b82deede5b31\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/09/07/28/0b/0907280b-7f19-4ac2-99d7-eb7dd166d734\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/8b/57/cf/338b57cf-aff3-40fa-a1f2-d022d141ba1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/4b/61/e1/334b61e1-5a33-449c-8175-c26de002ab1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/a3/08/57/33a30857-87ed-4949-bf93-0c09d9d5d535\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/2c/0d/a3/332c0da3-128d-4147-b822-8c43524ab235\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/89/12/a5/338912a5-a548-4608-a972-6436771cd32d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/17/0f/2d/33170f2d-0820-4aa6-90b2-eadd6dac8582\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/76/db/27/3376db27-bb5f-4f18-bb6e-4bc9395125a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/1c/22/de/331c22de-6f8d-44ec-9469-d04631436908\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/3c/c1/b8/333cc1b8-492f-4d44-9af4-65d74bb531a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/4e/dd/52/334edd52-4b7d-454e-bb17-214fdfdb6a05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/50/9f/a2/33509fa2-3d5a-4cf0-9837-fccd5dd9d708\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/35/99/c9/333599c9-bbd3-4cf7-9226-1da56813bb9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/32/9f/49/33329f49-8060-4eb4-9558-fe1655606bcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/84/58/a4/338458a4-cfe1-41fb-b620-98a42293360a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/6f/98/5f/336f985f-422f-4d8c-a943-20a1e336cf9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/66/86/94/33668694-8132-43ea-ae69-4728275e05be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/e1/90/df/33e190df-e5b8-47e5-8cd4-fb4c38d40951\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/f4/2c/26/33f42c26-865a-4cc0-bdf4-6273941e1156\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/3f/ba/34/333fba34-a685-4154-814c-17909c36134b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/15/03/7a/3315037a-b7dc-454f-ae98-bc045477f933\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/15/3b/d0/33153bd0-06a2-4a29-859e-34bbdd6915af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/7c/67/8c/337c678c-783a-40f1-b53c-edf3667284d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/51/e2/7d/3351e27d-234f-4480-84fd-dc8fb3533f70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/7d/aa/02/337daa02-0dae-43c2-81f2-d1cc0608496c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/bc/c7/42/33bcc742-d155-42f7-9a2c-53f5e5f0d636\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/33/04/80/0e/3304800e-0047-4f5a-98f5-faeb32aac843\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/4d/8d/79/d84d8d79-9c8f-4145-811a-342754724587\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/4d/f8/39/d84df839-48da-44f5-91ba-e8efa9650b46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/3a/58/5f/d83a585f-7413-4de4-8315-63aa4c1c799e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/2f/8c/37/d82f8c37-d387-4b00-9fb7-002c2a335850\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/70/75/1e/d870751e-e31b-4fe5-b19c-4059f5f0e088\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/60/74/f6/d86074f6-1362-4f9a-964e-daa2ae25da5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/93/de/cd/d893decd-97e0-4317-ab20-d472d2221182\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/ac/d3/ab/d8acd3ab-6390-4ef3-b49a-a1cefb704760\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/4f/1f/89/d84f1f89-a77b-4a85-b760-9b4792e9d239\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/0d/8d/14/d80d8d14-17b4-4bbb-8de0-e83776c7c5f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/0d/f5/9a/d80df59a-a9c5-468d-a20d-380487fe831a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/14/52/c3/d81452c3-eee1-451f-9627-504720f2d194\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/b6/34/fe/d8b634fe-62c4-4dff-a41e-aa40b3841a47\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/e1/9f/c3/d8e19fc3-e30c-4672-bc50-3d1df940c8ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/46/0a/07/d8460a07-9c3b-4356-a4a0-7ce0885c5d8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/bc/76/5c/d8bc765c-c320-440e-a331-a67ee2baf88e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/2e/bc/7a/d82ebc7a-035c-48eb-9d79-112ed7ccbe95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/f4/23/12/d8f42312-1bd2-4569-aecf-d231775155ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/0c/e1/8e/d80ce18e-8f38-41ee-9053-a2b5051acdd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/d3/ff/0d/d8d3ff0d-00eb-4fd4-949e-d93c398ee849\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/72/59/e7/d87259e7-f2a5-4dec-a27c-f236329a51da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/b0/4b/cd/d8b04bcd-a660-4ab2-b3aa-e420d6aa0154\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/c9/fa/8f/d8c9fa8f-3bab-49f5-994d-e76e211ce59f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/3d/a9/6b/d83da96b-a50b-4359-8154-b2256b8ba1ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/01/d0/5d/d801d05d-6052-447a-bfea-87bd37998775\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/83/de/b5/d883deb5-82b6-4f13-b82a-8b8cae92487d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/55/ee/25/d855ee25-497d-44d8-b3f2-50dc1fb41f45\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/ce/c0/79/d8cec079-51e0-4103-ae96-b64481871948\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/00/96/ec/d80096ec-e585-4e40-a97a-2ae5bc116121\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/91/32/8b/d891328b-e590-4ea6-8292-11313ed548fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/ad/70/f6/d8ad70f6-192a-4309-8cb7-2e1250aa795b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/21/f7/bb/d821f7bb-8263-4c7b-beba-1777c62b7883\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/a1/b1/c9/d8a1b1c9-a845-43d1-a39b-5a6e03f54bcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d8/ba/02/ae/d8ba02ae-bfcd-4a78-9a82-0a8e2939705c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/4b/4e/f0/504b4ef0-4b6f-4ea4-b6a7-762103a6ae21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/9e/c2/c5/509ec2c5-d2a7-4af5-913f-17e4b31587ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/51/17/ff/505117ff-95ae-44fc-bcb1-26c447f36492\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/49/75/c5/504975c5-7a06-4625-8b7e-212533d356b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/7e/86/58/507e8658-66e0-4d18-a9b2-7071ea65c5ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/9c/6f/93/509c6f93-0bf9-4818-8c31-9c44eb2a2f26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/0b/75/ee/500b75ee-a6e7-416d-9545-90478720da67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/15/ca/50/5015ca50-1610-4956-a45f-3d9437abf584\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/23/37/5b/5023375b-417d-4e63-9edf-95314422348c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/75/8e/7f/50758e7f-2bbf-466c-8761-af46f7193214\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/2d/d8/17/502dd817-bf97-4f33-b54b-aa27a5d0022f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/10/92/d7/501092d7-8039-40c6-8133-efd3ecce8092\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/d4/7a/fa/50d47afa-dd4d-4e65-9655-96911fe45074\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/78/b7/2a/5078b72a-17b7-4fd1-9e85-c57d2645cbee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/77/d5/42/5077d542-dfd1-4731-98fd-c4d3a9eaafdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/77/b9/b9/5077b9b9-4a3f-468c-9c2b-37cc2651fe25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/71/27/84/50712784-d081-4e3d-a09b-e15694fde894\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/c5/e0/e9/50c5e0e9-96e3-4bbf-9eb5-407ea7610e61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/4c/20/aa/504c20aa-28e3-4151-b97f-bc6e52fffa80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/83/00/9a/5083009a-32e1-456b-ba6b-3e4781791289\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/e1/be/e7/50e1bee7-4717-4d30-af12-c990341b6103\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/9b/a6/62/509ba662-58b6-42b6-8769-c50a4bd2e63f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/a1/29/97/50a12997-4c78-427c-8231-39f20f560613\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/3b/cb/20/503bcb20-6acb-4330-8072-2690e2868de3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/65/e6/2f/5065e62f-d6c1-4671-8d8a-fefaeb07314d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/d0/60/84/50d06084-1195-4116-9d08-3411e16426eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/e6/a1/18/50e6a118-9478-4233-9fab-8a91941d2f1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/9d/a1/69/509da169-8268-4162-965b-2d507c5c8c29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/ac/a5/c3/50aca5c3-3821-4914-a546-bdb941008076\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/6a/46/08/506a4608-0426-4dc6-907a-c46fccad828c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/3d/c5/8b/503dc58b-f942-426a-bfc6-950bb1d43741\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/17/7e/c9/50177ec9-9487-4d81-b97c-420458501bcb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/50/0f/d5/db/500fd5db-13b4-457c-8482-b441507ed03f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/55/48/d9/945548d9-64e6-4e92-9810-58188441e857\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/bc/86/00/94bc8600-c088-49ac-b5ed-f49c22ad0ff2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/9f/86/17/949f8617-9d4a-4959-8ba1-d6a6a1b5ab94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/89/51/35/94895135-298e-4b9c-bcb6-388b42546fce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/63/aa/b3/9463aab3-dbc2-46ae-be24-6cc4b07b5000\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/c2/7d/8f/94c27d8f-85e3-4d2c-be53-ae73e18b341a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/85/28/e4/948528e4-78ca-4a98-a71e-dbe0d8481eb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/d7/67/81/94d76781-2cc5-4408-9809-45b73e750ee7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/a9/2e/28/94a92e28-75c2-4f94-8b10-045b52798a73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/40/ab/aa/9440abaa-2a75-4e1e-a987-14fddda47480\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/40/a5/a5/9440a5a5-60c1-436c-b9bd-7aada8ba90f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/5a/39/bd/945a39bd-52cc-4c22-b3b9-56b63e193c9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/3d/61/de/943d61de-8493-43cc-87e0-808c803698fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/87/0f/7a/94870f7a-9c8e-4f91-ba82-75343d3d048c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/f8/ff/fb/94f8fffb-7b68-4606-9696-080745289c14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/6d/b1/98/946db198-c47c-41fe-9924-39cbf53800c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/7f/dc/3b/947fdc3b-7c04-41c4-b967-6cd58870f15d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/97/de/95/9497de95-6ad4-4aee-bbb9-9bb8fc7f5ae8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/bf/c3/25/94bfc325-4e45-426e-9f12-a357d6b54384\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/91/db/f3/9491dbf3-e0c5-47d7-8fa1-52e6c58d981f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/91/27/2c/9491272c-d948-4aa1-ab63-9b2a2f5e3dcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/94/d6/c6/5d/94d6c65d-80f6-4895-a6d2-c7ec70ea6c9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/f7/4c/02/2ef74c02-12a5-415b-bdbd-07fd63c1564c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/f9/34/1b/2ef9341b-1008-4f05-8475-ddf144f07cd9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/ce/0f/95/2ece0f95-4c8b-4a8e-866e-0f13f6ea0d0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/33/73/be/2e3373be-f1ab-4637-a56f-a1020a960863\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/a5/06/e7/2ea506e7-a3c7-41d0-9241-b324cf868536\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/b2/4a/a9/2eb24aa9-e80d-4dd0-a68c-57a2bcdf8202\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/b2/d1/d1/2eb2d1d1-dfae-4c00-9fe7-fb929433682d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/93/6f/9b/2e936f9b-6a53-463e-89af-bf8db931e19b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/0a/71/81/2e0a7181-6e8f-4a21-9ac4-492217b7c711\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/bf/1c/84/2ebf1c84-9fcb-419d-bcc0-b9d7968994d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/60/fa/c8/2e60fac8-9918-424b-938a-9fee8c83210e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/c4/05/67/2ec40567-8c0c-4568-8272-b2e94deb7bd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2e/fb/6b/aa/2efb6baa-a633-4f12-acb9-14bc8b63d228\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/45/70/29/bc457029-71d5-45fd-8702-03e010608403\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/84/74/ca/bc8474ca-9bdd-4855-8883-87dcb6f1ddca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/06/b4/c7/bc06b4c7-660b-49ef-99a1-58b243b1feee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/0e/98/a7/bc0e98a7-7364-43d2-b2bf-4fc767a62adb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/35/d7/35/bc35d735-97b5-4da7-8c05-190045390833\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/b0/ab/0f/bcb0ab0f-86b4-4cbb-9d50-1968e5561d44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/e0/3a/ed/bce03aed-522f-4172-b6c0-5b403e5e1807\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/36/56/39/bc365639-68b2-4be1-8073-2605f978f716\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/3d/6c/d3/bc3d6cd3-15ad-49d5-832a-e0657e731ead\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/f5/21/52/bcf52152-c00e-4a17-9b7a-a281ce185555\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/be/45/f1/bcbe45f1-ed37-4780-b32c-9807059701fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/97/36/f1/bc9736f1-5f54-40ec-98b9-767656758e19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/8d/0d/b6/bc8d0db6-7dfd-400a-ae73-02eb9bc971b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/13/2a/36/bc132a36-ff27-469e-afef-45235a489c6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/80/f1/cd/bc80f1cd-b49c-4854-a321-18f5cb9a8daa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/02/de/af/bc02deaf-6f37-4f43-ad33-73c4d7f43d40\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/b7/22/b5/bcb722b5-ec3c-4a74-a7fa-607aa90f9f4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/5d/45/db/bc5d45db-350b-4e90-b613-8671db459f53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/11/97/a1/bc1197a1-545d-4205-b56c-76da9bf266e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/83/38/d3/bc8338d3-8798-4aa7-b4c5-9eb360ea57c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/34/79/25/bc347925-d404-4fe6-b8d8-314039774344\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/ec/ca/3d/bcecca3d-8bb5-42d9-ab76-ceb301f71540\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/63/f5/c5/bc63f5c5-824f-4839-88be-fec88887161c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/5e/fd/28/bc5efd28-38b9-4012-b4f1-1969f9c7bf04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/52/a3/cb/bc52a3cb-1e11-48ab-968e-18b87b9de5d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/5a/4a/b0/bc5a4ab0-2ae5-4279-9a64-bc160fd91e0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/a0/8b/b1/bca08bb1-c9c5-4c53-8968-840b8739b54b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/e8/0d/13/bce80d13-a229-435c-951d-9feadf602bd0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/2c/20/35/bc2c2035-8c46-4752-b533-b9d379c826a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/6d/e9/5e/bc6de95e-8fd0-414b-bf80-0583096204d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bc/49/13/85/bc491385-8c5d-40aa-8d7a-781529ba5b5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/96/26/54/ab962654-bdab-4638-948c-ed9a3576a47f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/2b/2d/67/ab2b2d67-41ec-42aa-b060-7d6b806c5f4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/d4/71/d1/abd471d1-420f-42a9-896d-b6e6986a5506\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/9d/e0/4e/ab9de04e-eb25-4ec6-b044-1af17903e311\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/59/46/a3/ab5946a3-efbe-445d-b396-063832c373e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/92/73/68/ab927368-d259-4be3-8b5d-adff461b3df7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/74/5e/f0/ab745ef0-1cf3-49ca-87a5-1606db6265e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/ed/31/6c/abed316c-0788-4d4f-8775-6e78ce1c857d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/0f/86/b9/ab0f86b9-d7f7-41dc-b52d-51ea3ad05199\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/45/73/3d/ab45733d-85e6-480c-8ea4-d75a6ae384a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/4f/9f/4d/ab4f9f4d-6a09-41d9-86c5-6d0a4b505c02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/1b/64/a7/ab1b64a7-3514-4c42-8883-dda932630258\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/50/76/a5/ab5076a5-fcec-4ba9-9b08-1e16f15e3ce5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/10/4d/b7/ab104db7-9c4c-4c65-bfc3-55c1e15cdfc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/5b/37/fa/ab5b37fa-398c-4a7a-a9d0-a14d0e843211\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/3a/f7/df/ab3af7df-e48d-43c2-af7b-bc090b58993f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/cf/39/d2/abcf39d2-5b4c-4cf7-a84e-0e488ee25607\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/89/e9/e5/ab89e9e5-4210-43af-a8c4-5dd455d1da56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/cd/0c/a3/abcd0ca3-d1a6-49cf-a285-c54ef1351d30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ab/ad/1e/86/abad1e86-4d2d-4aea-aa13-3d90c7fb841e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/54/93/f0/cf5493f0-d101-43a7-87f4-ba6096d78c95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/36/1a/50/cf361a50-252e-4f19-a93e-262a625e2ff0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/cd/7b/0f/cfcd7b0f-5067-4160-af74-e7165b8ff160\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/87/9a/7d/cf879a7d-d628-4030-82ed-9b5d3a1c1257\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/1b/fa/05/cf1bfa05-228b-40fd-a364-125a9ead7ae6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/ec/9a/21/cfec9a21-2755-44da-99af-7a031843d6f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/ea/31/cd/cfea31cd-3d06-4651-960b-70f10ee03b5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/c0/71/9d/cfc0719d-5914-4aca-8483-491340da707c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/6f/66/c7/cf6f66c7-a75b-4773-bb38-833e09047d5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/27/29/90/cf272990-f8d0-44c9-acbd-a060872dc994\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/41/2d/3d/cf412d3d-9439-4a19-8ad6-4512a41334e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/b8/65/e8/cfb865e8-99d2-48dd-a889-bbe19bde90c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/e1/6b/e3/cfe16be3-ec0c-49ee-9303-43ff294d00c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/64/48/b2/cf6448b2-8aa6-4bf7-9d9b-af4969666f73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/ed/b6/f6/cfedb6f6-1463-4e81-ab59-b2355cf13dee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/96/c2/8a/cf96c28a-7df1-42f2-ac14-a151b1e1ad35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/70/15/8c/cf70158c-f1fe-4e1a-b707-a08c53214cee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/06/d2/42/cf06d242-d5a5-49b9-8f9a-8192302d5692\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/ba/f4/38/cfbaf438-1152-47df-a7bb-a770f0cfb300\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/9a/fc/53/cf9afc53-df21-4d61-aba6-540363a2cb0b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/f7/2d/85/cff72d85-8650-4717-b378-8bb2eb9fc361\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/c7/d0/a7/cfc7d0a7-b094-49f6-8cb0-57097ba0f4fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/b7/1d/72/cfb71d72-b13e-45d5-8cdd-aa803b1afea7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cf/5d/6e/6a/cf5d6e6a-93bf-4c04-a88a-567c92246225\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/aa/18/bb/16aa18bb-8651-4845-9f23-8c6074818546\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/42/ed/72/1642ed72-6389-4bbc-aeef-1f4b55ed87c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/c6/af/4c/16c6af4c-2355-4a91-997c-838e070adc4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/ca/22/89/16ca2289-f459-41e4-b708-fdeea7257393\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/0d/cb/ad/160dcbad-d9be-4412-a270-2f87ec546805\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/13/50/9e/1613509e-3ad7-4621-a691-3a9ca8465b76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/14/95/a0/161495a0-a345-4878-9174-2cfbe4d0c8ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/20/e4/8e/1620e48e-b04c-47ec-8d3a-4c327f6de631\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/30/7f/94/16307f94-8af5-42b3-8a78-f10e71327911\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/93/a3/51/1693a351-db7c-496e-b23b-f8f38de1b536\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/91/e0/e9/1691e0e9-9b2d-4e9d-8245-22a4171bd850\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/00/be/1b/1600be1b-c977-4498-bcc3-54ac6e2837a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/0e/c8/69/160ec869-75ad-477b-b2a8-54bf18748ac2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/df/0a/4c/16df0a4c-c9d8-4e75-af40-957bdc79b612\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/b6/2d/00/16b62d00-6998-4cff-9dd0-e8e3b6f68911\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/4d/16/4c/164d164c-a26c-40ed-93b3-75d40469c38b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/4c/2e/f9/164c2ef9-f021-4984-aa20-002289728cc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/41/81/64/16418164-6041-4cf0-a2e1-8e36f59dd2b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/79/40/f6/167940f6-e28b-4216-86cb-314f40907ab6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/cc/32/ea/16cc32ea-4a04-4437-8f5f-0d25f51ef91e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/af/2a/6e/16af2a6e-a187-43cd-abbe-894a47393022\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/28/44/d8/162844d8-b28c-4bbf-b1b7-95939674843f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/86/60/83/16866083-8b9e-4e1f-8189-ae6dcc617066\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/16/ac/1b/fa/16ac1bfa-256f-4ffe-aa88-2b13ff2c1f2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/c0/08/c5/73c008c5-7e16-45c3-a98f-d53e908d9e78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/6c/69/7f/736c697f-0756-427c-b1db-b93c44d63453\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/7e/6c/d6/737e6cd6-a129-4dce-ab05-ec077e332245\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/08/98/05/73089805-d217-463c-8df5-522571503181\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/9b/e4/4a/739be44a-c8bc-4581-b341-899a1416c4a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/29/76/b8/732976b8-b85e-40a3-a9bc-529cb9d88f8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/4a/bd/de/734abdde-cde0-481a-8ff8-2ec24fd82216\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/05/b3/bd/7305b3bd-ac31-46db-bce9-a669c8a4faa3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/a5/de/46/73a5de46-4d8c-4e0d-a2ff-5f87e464fe01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/fa/66/61/73fa6661-3cb9-433b-ae52-97a7f8f8840e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/68/da/70/7368da70-d474-43e6-97a1-8c7a5c987b7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/68/04/18/73680418-3afd-4f4e-a1a8-e927cc9da705\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/45/c0/80/7345c080-7879-4545-a2ec-e23f5d4d2ec5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/45/2f/d3/73452fd3-f48c-4457-808b-242048b60f7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/b0/bc/a3/73b0bca3-5cd0-4f02-8e2f-7d298e204fa5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/16/2b/27/73162b27-178b-41fc-9333-5c23744d8d6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/9a/9e/96/739a9e96-600a-4edb-a38c-d6e6226f59fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/3d/eb/dc/733debdc-e5ba-498e-8b16-4d84f871739e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/53/68/52/73536852-f606-46c2-bdd2-c301bc95e4f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/9d/51/ee/739d51ee-32a1-4458-bd8c-f126b465375e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/ea/1d/95/73ea1d95-f635-4464-b30b-0930811deae1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/2e/7f/08/732e7f08-9741-4feb-bb9b-94e93aaa97bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/80/f7/f2/7380f7f2-c64c-42f9-aebf-72f9ac1fab9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/91/01/27/73910127-7f96-441b-ac0a-622e15d46020\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/c5/78/99/73c57899-d59c-4401-8641-884fb4e57589\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/8e/bb/f5/738ebbf5-f839-451f-9c50-f70694bc3bd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/4e/9b/cc/734e9bcc-1323-46b4-8d46-8853ea10e493\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/73/d0/99/8e/73d0998e-9443-4ca7-b1f2-e9ffbdd92815\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/ee/11/64/b1ee1164-70a9-4d96-9987-38221411d145\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/3e/1e/84/b13e1e84-5eb7-43c4-8015-6873f91bd5e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/62/38/71/b1623871-ccc6-4bbd-81e7-5e2aa8a18d7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/2e/5a/c0/b12e5ac0-4c08-4f44-a62e-09775980fad4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/fe/17/ee/b1fe17ee-ae27-4a28-8308-d3fa8fb69e98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/fe/02/00/b1fe0200-7222-48f3-a5e5-b9bf40e0f52c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/13/a1/59/b113a159-401d-4d8d-bbd4-50d049772563\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/f4/13/9d/b1f4139d-34b9-425e-b751-a13b0a070a46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/5b/d1/3d/b15bd13d-d5bc-4931-b808-00aeed3e2a59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/58/a1/5e/b158a15e-8722-40ef-b09b-a8c813bcc59a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/69/77/52/b1697752-d9d2-4453-acd1-a6fbdc5a9481\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/c7/ce/c6/b1c7cec6-82df-4265-bcb6-87041243b71c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/1c/d7/0b/b11cd70b-a6ca-484b-9f14-aab7a163eb18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/b9/75/d9/b1b975d9-20ab-4507-860f-13733357c1a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/bb/19/04/b1bb1904-7432-40c3-98c0-0e8ee9eed22b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/e5/a5/2f/b1e5a52f-2d83-4300-a837-dfba1d873d73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/f2/f8/53/b1f2f853-c410-47c5-90a9-921ac551e8ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/e4/51/d6/b1e451d6-f886-4e77-973e-38b233e6a966\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/87/16/6d/b187166d-816a-4df9-bda8-c4532083f401\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/87/46/f9/b18746f9-5500-4186-82d6-15e3aa761c45\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/82/ad/3e/b182ad3e-9c44-414e-bfbb-5af4615cfc51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/b0/5b/e8/b1b05be8-768d-4baf-a10a-53d14f7d0751\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/05/82/28/b1058228-65d7-4af2-b068-77f190e46717\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b1/9e/4c/e7/b19e4ce7-f39b-4b87-8ccb-f7fb2c36a143\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/72/00/82/e4720082-0553-4c44-b567-750835c0824b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/0c/82/be/e40c82be-fe70-451d-a3ab-148bc8e63228\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/84/af/37/e484af37-8305-4572-9be2-fa7d75b2cb3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/df/01/cc/e4df01cc-6623-4b65-a069-d2e5d2f0c44c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/4d/72/ea/e44d72ea-af9a-481c-817a-89921fe97fea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/22/a5/5f/e422a55f-2574-4bb6-8633-9269688de601\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/0e/12/48/e40e1248-afe2-44a2-99c8-2710fdfaccf5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/d2/4b/ba/e4d24bba-3c0c-46ba-8907-5a56ed611f89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/f9/75/b1/e4f975b1-3b26-4bbe-b932-0f8bc5890015\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/ec/b6/3c/e4ecb63c-df87-4845-8841-4920291aa244\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/fc/03/4a/e4fc034a-7f7c-4267-9592-2a69da107ad8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/47/76/75/e4477675-0ad9-4fbd-b859-b4004fd9289a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/64/98/d7/e46498d7-5afc-490c-aedd-7e6a1cb21d34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/c2/27/67/e4c22767-5089-45e4-915e-664bbebd9109\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/2a/cb/e1/e42acbe1-76ad-4e44-be1a-085e4b164c8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/d8/bc/96/e4d8bc96-10b6-4061-8f70-602abcbe628c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/98/a7/ed/e498a7ed-9e20-4c19-acd7-8c8a725491b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/91/15/19/e4911519-0b71-44c8-8374-65433803748d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/ad/ce/10/e4adce10-79f9-49d5-8a8d-ed6832a5533a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/c8/70/f6/e4c870f6-b91d-4539-82f2-77bc3e2e317e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/8c/0e/52/e48c0e52-a564-4f43-8cef-52c46da2fd52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/9e/34/f7/e49e34f7-c296-4e4f-8587-5276bf7ada27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/20/67/54/e4206754-4249-4dfa-a973-d8881880effa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/af/16/db/e4af16db-3ecf-4e91-bca8-6ac0c664e03d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e4/89/06/15/e4890615-585c-48fe-b97a-9d86947c15f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/08/bf/44/a508bf44-4ae4-4164-ba78-88f7785a92f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/5e/c5/4b/a55ec54b-2f90-4601-a6c8-64b68edf52ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/eb/69/1f/a5eb691f-157e-41c3-961c-05207115fba6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/a1/3f/ea/a5a13fea-f1d8-47f5-a753-836b504877b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/bd/7a/9f/a5bd7a9f-3d7b-47c8-a9d3-46fd7ee0dcb0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/f9/4a/bc/a5f94abc-9f7e-462a-8156-556ebcad9071\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/a0/96/47/a5a09647-314d-4901-971b-0c618a26dee0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/89/02/40/a5890240-0151-4d92-8987-9376f5e03059\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/50/b6/84/a550b684-1025-44e4-a126-c5f4e491541e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/50/80/2a/a550802a-1ad2-451c-af80-819d83ad96a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/6b/87/90/a56b8790-89ab-4438-9309-4692398a738c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/61/06/25/a5610625-b618-4b2b-8949-14256b62dc79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/04/91/e9/a50491e9-284c-43f0-ba97-88a63a5434ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/98/f5/8f/a598f58f-59ec-423d-8beb-c0ebf112e79e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/8a/24/ec/a58a24ec-b272-46f0-8509-a4eb08059014\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/95/26/1c/a595261c-b16b-43c9-ad94-7a96b8f16b0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/bf/a6/3b/a5bfa63b-a8e7-440f-acaf-80088512cb78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a5/0e/e1/b7/a50ee1b7-536c-4fc3-bacc-8054bdb809a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/74/4c/ac/2b744cac-830e-4357-a01d-24da6557d341\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/74/4e/f3/2b744ef3-1f2e-4ddd-94d7-51571b78d4d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/7c/87/96/2b7c8796-e19b-4d58-a3ca-9c16655632eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/e8/ec/d8/2be8ecd8-58e4-4883-9b03-4f07c9dd228e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/b0/87/ff/2bb087ff-1226-48b6-acfa-9a2b5c29d9cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/0f/69/a4/2b0f69a4-b1a7-4ab7-9b75-676fc5059d35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/41/1c/f8/2b411cf8-4a8f-4594-9d36-6317d41a49ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/92/a0/01/2b92a001-97d7-46d3-a1e0-e92e3b3feff2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/d9/69/8d/2bd9698d-25fa-478c-8adc-0cd49800ad72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/52/97/2c/2b52972c-66ef-4a21-b3f1-c51f65086de2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/cf/24/a0/2bcf24a0-1af2-456d-b08d-e6045f5e22e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/9a/82/a1/2b9a82a1-34a4-4343-ba20-1c8862474b64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/01/1d/a4/2b011da4-473c-4399-bdde-660355a1f402\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/01/0c/bb/2b010cbb-5a53-4220-8735-4dd4ae22314e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/5c/82/ef/2b5c82ef-2b01-486b-a99f-4174aa343ffd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/1f/6f/33/2b1f6f33-dd59-4888-bbef-5f8a6cd8e2bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/37/df/a1/2b37dfa1-ad49-4553-8400-eb0b376e67bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/bc/76/ff/2bbc76ff-dedd-4fec-b5fd-601ad6328e43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/34/5c/f5/2b345cf5-fda7-4002-98ca-13016f0b0c23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/f7/ec/01/2bf7ec01-c638-421d-952f-18f49cabcf39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/18/b2/ad/2b18b2ad-ce67-427d-8f05-87fc97a00bac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/cc/36/e8/2bcc36e8-f244-4e97-b036-65881f3ace25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/8f/f2/fa/2b8ff2fa-b35e-4969-bbf2-80dc94ac4b2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/f9/52/9d/2bf9529d-8727-4b62-902b-20a93b19ef47\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/d8/b2/91/2bd8b291-439f-465f-a023-c4131ae6149d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/95/55/1d/2b95551d-7705-457a-931d-222178e357c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/a8/1a/87/2ba81a87-f294-45ee-b51e-d47eef266b7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/15/80/db/2b1580db-36fa-4177-ac2b-737692f81028\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/f5/39/0b/2bf5390b-55e4-4a8d-884e-9a3da89f4f6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/ea/74/66/2bea7466-d89f-4f50-805a-ae935bec6d5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2b/f6/47/09/2bf64709-baf0-46b3-b542-4b9adf73730c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/e7/44/59/d7e74459-5b10-4f84-9420-ffa166fd5f81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/38/18/fd/d73818fd-3134-44f8-881a-077b453379af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/bc/b6/f7/d7bcb6f7-fa2c-4b21-bd00-620dbc944552\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/f8/6a/1f/d7f86a1f-d718-4ce1-9a5c-493911388335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/f4/a8/df/d7f4a8df-8f70-4ab7-a1b6-b9a7bd47fdba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/f4/cd/a4/d7f4cda4-943b-4c61-b11c-cbe39d342f96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/84/2a/c4/d7842ac4-be3b-4404-a7bc-d30c33f0df95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/93/2e/90/d7932e90-54e9-4aaa-9827-48f8a172d4a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/d7/ab/1e/d7d7ab1e-088c-4f52-8c57-ce87bc84d17e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/e9/5e/a6/d7e95ea6-a768-44c7-9c57-d09ff0602899\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/e9/bf/ab/d7e9bfab-083b-4547-b469-c03829fd2a8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/fd/62/cc/d7fd62cc-86e8-42b8-9cd4-2e83af163349\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/5c/1b/04/d75c1b04-ca03-4f2b-b568-6792cc378c39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/dc/18/b5/d7dc18b5-f4d1-4f8e-ab47-387d6b1de3f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/66/46/ca/d76646ca-82c3-4cf9-b03c-d58091d7b418\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/0c/5b/ef/d70c5bef-3fb8-440c-b991-a6c4aa1a9b58\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/64/95/59/d7649559-f598-493f-8d19-4129276c72b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/cd/34/08/d7cd3408-24af-4343-a05a-ed3bdf52bb3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/76/df/ba/d776dfba-b83b-4145-b563-0d3b408e4adb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/03/cf/a7/d703cfa7-64a4-4dff-b7de-8388d0478f2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/6d/d3/84/d76dd384-7389-4390-b136-96881043c2b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/6d/e2/3c/d76de23c-ef22-4839-9830-65c2d17e8773\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/bd/57/7f/d7bd577f-6f53-4c5c-b75a-cc909362aa28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/40/49/05/d7404905-4c73-4c66-88ac-8abf7304d653\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/41/43/2a/d741432a-cb1d-4224-81df-ca9a0b86ef13\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/b3/ce/ce/d7b3cece-fb94-4f10-91d0-6ea05e85ff94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d7/00/55/5f/d700555f-f405-40f4-b92d-f56e148423ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/a3/8c/77/9aa38c77-b710-43c2-b17a-b04e920763fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/96/ad/18/9a96ad18-88af-4bdb-95b5-5912bf67ec93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/f0/95/b7/9af095b7-5b26-405c-8ca1-8d085bca6052\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/d5/41/44/9ad54144-6484-4e24-bdac-4837f6dd1d2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/48/0f/01/9a480f01-4c0e-42ca-9d72-7465122bdcac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/9b/aa/7b/9a9baa7b-3699-4395-b466-48dd87ce8c33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/7e/69/e5/9a7e69e5-44b9-4c1c-96ee-e991b32b18c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/51/88/69/9a518869-6eb2-41fa-b6c6-24897d086fd7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/4b/ad/f2/9a4badf2-501f-4fb8-a21e-2d2f6fae0930\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/81/48/a4/9a8148a4-b740-40cc-9572-62625872520e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/5c/23/ca/9a5c23ca-e239-4719-aff1-d7dfee0ccc84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/6b/2a/52/9a6b2a52-f16a-46a4-abb2-bd79d697098d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/c3/05/3a/9ac3053a-ca51-4eee-a3c1-82ccf65a8a97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/29/df/81/9a29df81-aadd-46ca-800e-0a288a091629\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/b2/ba/27/9ab2ba27-1ae4-4846-9931-58917fb4dca3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/31/32/91/9a313291-4be6-418d-9aec-fdc424579e9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/49/46/83/9a494683-cdf0-4768-b727-552f3de1cf28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/b0/2f/21/9ab02f21-698b-4657-a8e9-bd331f78f50f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/c7/af/e2/9ac7afe2-6499-4be4-a1a7-de8fda002823\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/06/4e/5b/9a064e5b-f4dd-4e70-862f-55caa3c2130c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/73/23/e2/9a7323e2-0e23-463c-b47b-b9f04d8cf41e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/91/3e/ad/9a913ead-2954-4056-b15c-7596d8520d9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/69/f8/0c/9a69f80c-20e5-4fdb-b515-9d0925db527a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/6e/82/67/9a6e8267-4eff-42ac-91a4-b9b8c300ec6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/de/2c/d4/9ade2cd4-7f56-46b9-9811-7930c8d11cc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/d9/65/ae/9ad965ae-555b-43f8-a325-5e29d392a3da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9a/0e/ab/bf/9a0eabbf-db47-4310-bac9-f1a1549be51b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/81/93/99/54819399-5772-407d-99d7-b8f0795a7c18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/a4/74/67/54a47467-7a88-48db-8426-602fd84ce5fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/7b/ad/01/547bad01-1ac6-486d-94b8-9361c83e5b5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/a6/7c/86/54a67c86-9ad6-4e61-8ff9-d691e0e2180c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/ff/86/85/54ff8685-a1e0-414f-9001-cc5ad4eb0cc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/80/84/a1/548084a1-df8a-4d44-aaca-f9c37a081384\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/ce/8c/d9/54ce8cd9-4660-4091-9b1d-90e6724013cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/07/e1/a6/5407e1a6-a705-47cc-8a94-d76dc0cdd639\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/27/76/bb/542776bb-164c-4355-a062-c376ce6f8caa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/b1/b2/a4/54b1b2a4-2812-4864-90d7-ab643ba68df2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/fc/40/c4/54fc40c4-1de7-4497-9ac8-83ea15608feb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/b2/ac/4a/54b2ac4a-6238-4647-9533-cb8b0d0ba1e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/37/bf/e4/5437bfe4-496e-4d72-b93c-b4f2521a1760\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/52/7e/e3/54527ee3-39cc-44d6-820c-452d7a8b65fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/73/1a/b6/54731ab6-7de6-4c3d-87cb-fc3b820492cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/dc/48/fb/54dc48fb-d0ad-4ccd-8e66-bf466432c3dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/2e/db/32/542edb32-7b83-414d-8c2f-4fc820f08c98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/8a/4a/be/548a4abe-de22-462f-b06c-fa50045220c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/43/db/92/5443db92-0a1e-4100-a6f0-ed718c4069bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/b5/fb/1c/54b5fb1c-9ebd-4447-ba6f-5662574ea4ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/f4/ce/07/54f4ce07-10d7-4129-8bb7-241d28ac42c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/e5/4e/8f/54e54e8f-8e22-484a-b36c-8e3bd49105cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/b6/f8/b3/54b6f8b3-73d5-40b6-b3d6-609328c655e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/59/d7/0f/5459d70f-144b-4dd0-a9b3-ecec6401751f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/cc/21/a0/54cc21a0-7c68-4a38-bee0-299938bffb15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/e0/e7/49/54e0e749-43be-4eaf-b3e3-a8262fd2872e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/98/3f/af/54983faf-7e14-49f4-9da1-698ce5a217a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/4b/76/ca/544b76ca-ef41-408f-bb51-ca19f78d8073\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/54/f7/ab/fc/54f7abfc-5818-47d8-8e87-02e6db7fe94e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/2f/73/ee/262f73ee-5954-4218-9930-0f07c1472304\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/e0/a8/c4/26e0a8c4-53e4-487f-ad82-fff2652f7cc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/0f/8e/e5/260f8ee5-90a2-4a0b-a7ba-c3f2f0c92632\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/ed/b0/5e/26edb05e-a00b-4bdb-8559-2e0eea5b8982\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/03/9d/f7/26039df7-2517-4958-9ccb-e3144d1eeefe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/1c/7b/83/261c7b83-7a8e-48ce-b398-bcc355064fc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/9b/08/58/269b0858-aa96-4a0b-93f1-2451e657a5a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/61/9a/40/26619a40-81d8-4459-a24b-96cf37bb29fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/0b/cc/65/260bcc65-871c-4500-a651-1e4fb6212277\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/af/20/34/26af2034-eee8-43c3-ac9a-66bc53b5236b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/4e/3a/1a/264e3a1a-f384-4c0a-94b3-5ce4f31fc4ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/c8/fc/05/26c8fc05-3025-487c-b300-59f20637d516\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/c2/c2/77/26c2c277-b978-4c8c-8164-2eefae602dd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/74/49/71/26744971-bb0a-4800-b74d-aa21a1a6fe25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/f6/7b/fe/26f67bfe-6243-4886-8774-72e27a3b6917\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/1f/29/63/261f2963-2823-415e-8d8c-f3acbf57b217\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/06/bf/bc/2606bfbc-2838-4b49-8886-b4723b716ede\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/92/d1/3b/2692d13b-8155-480d-90f4-a40c707016d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/68/7a/25/26687a25-8f98-46cb-86db-d476f2c3beb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/77/f0/1d/2677f01d-2887-4a3c-837d-f978948efbb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/e4/40/7d/26e4407d-aed2-4bb9-b9bc-36ec6208a586\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/d0/b9/84/26d0b984-aab0-4f52-ba9e-0b85e88d3a0c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/26/a1/5f/21/26a15f21-b87f-49cd-9360-ab43fa196a4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/b6/17/b7/07b617b7-eaa1-4ff2-9002-11e93b0dcac5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/07/d3/51/0707d351-7b1b-49ea-9cbc-e5c5038c05a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/2b/20/e2/072b20e2-5b3b-418c-a817-0811c57a40bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/5b/55/01/075b5501-9102-4f75-9359-fea9f0221b14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/76/ed/3f/0776ed3f-8876-487a-8a5b-b9f4d4e4123d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/58/40/0e/0758400e-746e-4af6-a385-f57c5096c31d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/05/aa/06/0705aa06-a252-47b0-aeeb-7051e83969d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/61/bf/c6/0761bfc6-1b28-4a20-a031-38e3faf55ed2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/4b/6e/17/074b6e17-4810-4631-9d8c-3212bb7c0512\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/48/82/5d/0748825d-9613-4dd6-91e8-34f39e6bf8e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/a7/25/f3/07a725f3-70bc-4a7e-b133-438b10aab4a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/73/15/df/077315df-7126-43cc-8c7f-19f5e13c199e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/93/57/a1/079357a1-74cd-4885-b670-5ba6054544b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/71/9a/29/07719a29-020a-49d3-a7e7-ae1398f5e16b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/ec/c7/20/07ecc720-905f-4635-a18d-ebf87da34a21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/3b/a9/73/073ba973-d342-45dc-b5f4-52fdd4daa644\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/70/3b/d7/07703bd7-cc0f-4167-aa37-d12a723e882a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/8b/9f/7c/078b9f7c-8aaf-4602-b60e-35820df97b82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/5a/21/b4/075a21b4-7f9f-4ed6-96f7-207cf459ad4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/34/1b/c2/07341bc2-5c58-4dcd-8630-cd648ea7ef30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/b8/e8/be/07b8e8be-501e-44c7-a02d-914cccc4a331\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/d3/01/f7/07d301f7-3ea1-4ca6-b0ae-9d1447b30833\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/d5/ff/85/07d5ff85-8ac2-4358-808d-e558f68ec60a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/74/7a/18/07747a18-b48f-42ad-bd3c-94a7b9d601c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/07/e3/99/0e/07e3990e-dea3-4525-a37e-8398c6e38332\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/01/b8/97/b001b897-8214-4c75-9536-a3e18436ca88\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/d7/e5/3e/b0d7e53e-3d4a-4fd8-a069-364a43969146\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/d7/58/c4/b0d758c4-c63c-4c03-b1a4-a4d9b2d2269e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/57/ff/93/b057ff93-41bd-4c51-bacc-744b55dda508\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/9d/22/d9/b09d22d9-a59c-461a-a7ef-f3401cbc197f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/17/09/59/b0170959-c0ed-4cee-8631-aa5304f45a77\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/84/aa/af/b084aaaf-bf79-4a25-8d59-bfc2743d685e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/de/27/3c/b0de273c-9738-4ef9-b7e6-86dd38aa5279\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/5c/b6/94/b05cb694-67c5-45b5-8751-76366df4213f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/4a/ed/f7/b04aedf7-d978-44be-bd8b-ef3058bd2c9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/94/97/b0/b09497b0-d207-4e0c-aa8e-69f1d7ca51f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/bc/18/04/b0bc1804-0277-46f8-8ccd-6ee8ee1bc4f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/7d/53/d6/b07d53d6-a1fb-4166-8824-24012ac11f55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/7c/ab/e8/b07cabe8-b02e-43d5-8ba4-c1559d006019\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/68/72/ea/b06872ea-eb0a-4d5b-a90f-61788e1dee66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/46/f5/40/b046f540-b84d-44d6-8f30-6a16155ca80c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/13/87/ba/b01387ba-99b9-41ca-9b7c-52900a9b7cff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/71/33/13/b0713313-4b18-4038-9603-97285a6487fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/b8/97/4f/b0b8974f-b43b-4c83-8e21-b359eade2218\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/b7/c9/32/b0b7c932-13de-48b9-954f-7153b5a176ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/02/5c/fd/b0025cfd-7cd2-4e57-85ed-30d17688dfc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/b1/db/e9/b0b1dbe9-6776-4ea4-b16f-6d3e9844d73c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/70/aa/b4/b070aab4-28ce-4304-8629-b5736f858633\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b0/9c/d3/1e/b09cd31e-bef6-444c-94c0-65596e6ea60a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/64/a7/6f/2f64a76f-a27f-4401-91d8-f30805da222d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/19/39/46/2f193946-5b4d-4120-b743-84c95259af1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/b7/6b/ab/2fb76bab-cf47-405b-96ea-44a05695b931\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/2a/42/36/2f2a4236-da50-41f0-9818-256f19656183\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/94/ff/98/2f94ff98-380a-469c-bc4e-30a2cb9f3bf4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/05/4b/c6/2f054bc6-559f-4ccc-be38-f0f34b2e5c44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/1c/01/15/2f1c0115-8049-4af3-9252-2300b5f70c44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/1c/2e/7d/2f1c2e7d-88c4-44a9-887f-cd7388ce6e29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/a9/d6/b2/2fa9d6b2-1e01-42ca-9622-e32ba69609a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/37/24/77/2f372477-6498-4229-be36-1725e21a1d0d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/63/03/f1/2f6303f1-4619-4470-b51a-2b0bad3ae728\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/c8/b7/eb/2fc8b7eb-a1fe-498e-8fd7-128bffea0dba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/be/a9/11/2fbea911-8c28-45eb-93f3-cb0c00ecb545\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/cf/2d/b8/2fcf2db8-4951-4fc9-a3a8-cf48c1e028ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/9f/11/d9/2f9f11d9-efb9-4abb-85f6-634a5b560cf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/8e/b8/43/2f8eb843-7ed6-4156-b264-d1d67d72f385\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/cb/fb/44/2fcbfb44-454e-4119-bfce-de96a0ead095\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/1d/f9/e9/2f1df9e9-6393-4f05-85fa-419374045bd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/dc/fd/d6/2fdcfdd6-a8fe-4c97-92d1-439d83dcb4a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/26/3e/32/2f263e32-13ca-4cd5-b951-bd9cf10aa514\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/c5/30/bc/2fc530bc-0522-4d95-a956-eb54c27d85e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/a0/2d/f1/2fa02df1-41d3-449e-8a0c-e1b4ef82df7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/db/78/6c/2fdb786c-17f9-46e2-8300-af18a3a07905\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2f/62/81/66/2f628166-db25-48a0-af0f-26a909737d74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/4f/e3/f2/1a4fe3f2-e43c-4c0e-9fa9-db1381c0846c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/90/88/49/1a908849-3d4d-4951-94f0-76ea7f944325\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/79/13/4c/1a79134c-6e0d-474a-96c1-b20ec7a422a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/b1/ff/6d/1ab1ff6d-f782-4fb4-b36d-328046aa84af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/58/93/6a/1a58936a-231e-4221-883a-2496f52d239d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/a8/60/b1/1aa860b1-54f1-4462-bffa-9bb2f17651f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/1d/e4/34/1a1de434-db04-4099-a819-9bdf87fb3357\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/9b/4a/4f/1a9b4a4f-df87-4575-854c-d56a597baf2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/94/9c/08/1a949c08-384c-42b3-b730-01e7c5cfeaec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/e2/6f/5e/1ae26f5e-56d1-4ae2-b59d-87ae9c34f816\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/54/ab/d1/1a54abd1-fa50-41c4-b68a-dbebcc499abb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/43/bb/14/1a43bb14-b93e-4166-a118-3b8bbafe89da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/6f/5e/10/1a6f5e10-03a2-4cc5-b325-926af6c79dd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/c0/c2/9e/1ac0c29e-ce78-411c-9ea6-69ed4a348c93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/6c/a8/78/1a6ca878-e461-4f9a-bead-26d6c17b212b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/11/6b/e0/1a116be0-af02-4e63-b226-37b7fc67e084\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/9e/a2/76/1a9ea276-e1db-4a63-b075-a62a81fc2fcb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1a/a4/5a/5c/1aa45a5c-7f79-4964-b422-7d40c9d3da5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/cb/be/96/d2cbbe96-dc56-49fd-9b57-da12f6019f03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/96/c2/36/d296c236-497f-4245-b288-170663ca7bdd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/05/81/d4/d20581d4-0004-4996-b150-c99ef10b732b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/4e/82/ee/d24e82ee-22ee-4b84-90a8-558caa4cb68a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/e7/f9/28/d2e7f928-b224-403b-99f3-4dca2f5ad429\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/64/a0/37/d264a037-65ed-43a8-a4fc-2da2c79b70a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/1a/9c/4c/d21a9c4c-cc82-48b8-bb91-43bdc70a3a10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/e9/72/12/d2e97212-88af-461b-bb01-3d3caabb194c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/55/aa/96/d255aa96-a854-4ad5-8dc6-b91537aff5d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/5e/9c/7a/d25e9c7a-660a-438a-af75-78b076bcd10b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/8a/d2/15/d28ad215-2773-48fe-bb6e-1b6eb6b82a25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/61/ec/37/d261ec37-a44b-4603-a1e6-9e6be9732690\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/a4/2e/48/d2a42e48-f5d4-4531-a231-a6adffa5bb30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/79/34/0b/d279340b-717f-4fe8-970b-e7a4226f2d8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/f6/ce/6d/d2f6ce6d-1eb2-4055-9ea0-8fca9aa213d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/95/62/a4/d29562a4-0878-40b1-a828-b0a142ddf6fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/1f/63/a6/d21f63a6-0fad-4deb-acad-0cbe0c4cdf30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d2/5a/81/36/d25a8136-8073-46bf-873f-586e225dfad8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/48/d0/a0/3148d0a0-5ef6-49b4-a2da-ecc40bd35ea3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/0c/64/55/310c6455-69d1-4235-a085-18b67931d07a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/81/87/56/31818756-185c-4503-bd20-30476bea0f56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/45/dd/52/3145dd52-459d-468f-a52d-e4f5a0a8d053\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/e8/b5/89/31e8b589-88db-4d56-a8e1-cb11474de984\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/da/1b/e4/31da1be4-fd0b-48f1-aa01-f81098c107e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/84/46/f2/318446f2-1d90-4304-b163-991b9fc6a314\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/84/3b/c9/31843bc9-46ae-4755-a500-56c2356d1b02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/db/cf/26/31dbcf26-6a54-4048-a2ac-b3aa454d575f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/7b/95/c9/317b95c9-bbbd-4f36-a922-ec2d093fcb4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/7b/a0/8d/317ba08d-1ff6-4235-91f8-911ec2bad3cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/10/7e/85/31107e85-18a2-48a2-8667-8078110355ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/31/82/cf/313182cf-f6c8-431b-9bd9-4edecb3a4c8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/2c/2f/68/312c2f68-1e53-44a3-9f10-4b79c79d16df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/42/ef/d6/3142efd6-25a7-412f-ac9e-239f909fb9b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/c9/ad/db/31c9addb-7760-4db6-a135-574ac8f7b834\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/09/11/8b/3109118b-21c2-46b4-a616-fd855782ef6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/5b/2d/02/315b2d02-bc0e-4917-b07b-46886f2ceeb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/74/93/04/31749304-8f9f-4978-a2c3-eb221f85be25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/49/64/25/31496425-acfa-484e-8737-3dfcd13b7d27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/34/3f/e2/31343fe2-ec42-45d2-8f04-a6c959ece257\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/02/fb/80/3102fb80-84e4-46c3-96c5-6afb1dd62aef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/ba/00/8f/31ba008f-c8fd-4e21-aa82-17648543879f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/e0/e7/3d/31e0e73d-408d-47b4-af61-16df7c11e122\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/31/a0/cd/f4/31a0cdf4-6559-4290-89d3-e4489563d816\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/99/cf/fa/7699cffa-2a95-43c9-ad65-8e224fd69cef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/52/91/25/76529125-b0a0-4d1f-9cf7-fffd8b145653\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/21/cf/8d/7621cf8d-3f7a-41f5-8461-1a07828edfbe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/4c/ad/9d/764cad9d-4d3b-4ae8-9036-be6a64676a26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/89/32/3b/7689323b-dee0-4855-b3e5-3bbddd9b6d6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/a4/c8/c6/76a4c8c6-0832-4bce-a534-a690fe98a0b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/d0/12/40/76d01240-41b7-4fb1-8ad9-dfb11427109e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/ec/47/88/76ec4788-3d3b-400f-9bf5-a516a0bc14da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/4f/99/e8/764f99e8-f254-4891-b349-c7da1efcfc16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/23/e7/b8/7623e7b8-e22a-418d-a809-2506ab64dc64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/ac/22/13/76ac2213-c30f-40ac-9197-0a18f76ec0e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/76/83/5d/7676835d-e81c-4630-916a-282fe30adaf9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/36/ae/a3/7636aea3-92ae-4354-ada1-0484f1313478\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/e7/b7/89/76e7b789-fd3d-44e8-8b27-600b4473693e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/3e/55/0f/763e550f-53e8-4bc7-93dd-ec64387d20d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/ff/34/03/76ff3403-f377-4e31-a688-8ddf316e3eea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/f6/fc/11/76f6fc11-cd61-4004-b5f3-3a162be136af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/71/9d/7b/76719d7b-84bc-45ae-8928-d674a8c687b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/07/74/b1/760774b1-5855-4f2a-81d6-98c5a209efcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/2a/4e/c9/762a4ec9-8dd4-424c-b8ff-7023b39ce08f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/0b/32/c7/760b32c7-cf3f-4c85-a8be-02ea1a3fdd59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/64/e9/30/7664e930-c84a-4b20-b000-3142a4a4b6e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/da/42/11/76da4211-655b-4040-8a5b-716a22ef071b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/ce/5b/d2/76ce5bd2-5feb-47d1-b663-fbe045d1114f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/f4/de/ba/76f4deba-1453-4ee1-8e55-67668bf0ce12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/cb/9d/d2/76cb9dd2-4468-4cdb-b7a9-c7f65380e7d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/a2/6a/6a/76a26a6a-0194-4397-ba28-92ad033b76d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/76/94/a8/40/7694a840-2c5b-41b5-9942-068bef3fb1e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/c7/79/45/93c77945-1f9b-4b2a-8e12-14a5570537e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/f0/8a/5d/93f08a5d-999c-405d-91e8-293947ff0ada\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/53/c0/8a/9353c08a-014a-41e5-9c00-fb0d72d6ed3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/aa/67/5f/93aa675f-360e-4101-bb3e-b4d4a305d62a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/61/2d/82/93612d82-7c78-487e-bf12-10a029b20573\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/d1/5b/27/93d15b27-f2f6-4f09-9048-19a6d533ca70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/88/6d/b3/93886db3-51cc-4810-8495-6f15e980e67d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/93/76/eb/939376eb-6229-4440-9d62-09c37937f724\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/df/8e/80/93df8e80-4ba2-4326-9909-db3343cacb4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/fd/5d/b1/93fd5db1-3b70-4b9c-8fda-70478edb864e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/ae/a1/29/93aea129-7c14-4f78-9e34-da15a2e01a30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/c8/8b/3a/93c88b3a-0638-47d9-8c76-978100b2c123\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/d7/c2/42/93d7c242-96d6-40da-94b0-1a5467530840\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/2e/af/e7/932eafe7-0621-4646-8410-dcd6daac6bc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/2e/68/7f/932e687f-8f9c-4b1b-ae13-2d60d4d4cba7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/10/bc/a5/9310bca5-71d2-4969-ac58-8140f098d939\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/de/b5/06/93deb506-64d5-4635-8d46-36327fcc9aec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/7b/bf/ff/937bbfff-70cf-4d52-bdc5-bacfc6d4ce1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/14/c6/b3/9314c6b3-0821-473d-bac5-e2f624a2af4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/4f/0d/4d/934f0d4d-8563-4c7c-b6ab-5db506962206\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/3e/6b/32/933e6b32-2689-4140-9ace-ac6abb3fef3b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/d8/2a/d2/93d82ad2-54cf-4d0b-8f32-eb7bf38d864c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/c9/49/32/93c94932-9f4d-4913-b3df-6cee6f269f69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/b1/07/75/93b10775-48d6-4810-8a52-bb0d52f64186\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/4e/8d/6f/934e8d6f-b5da-4dc1-bdc7-9d37016a9c37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/8e/43/fd/938e43fd-38ac-43e5-81e0-ab7132c45d76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/03/a9/02/9303a902-7bbe-408e-8425-801fd5408527\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/93/cc/1d/af/93cc1daf-89ad-46ce-ab80-c4bfc7c11f7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/eb/73/61/83eb7361-8087-4b5d-87c1-46ba4fd0344b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/b9/72/49/83b97249-3f4f-4231-a840-d040f09300f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/6a/52/99/836a5299-d9f0-4951-a6f6-2f09d5665f85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/c3/74/50/83c37450-5d4b-41a7-8220-52ba071315e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/79/ad/c0/8379adc0-a601-4312-bac1-786dd00a4498\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/b0/53/90/83b05390-d1b5-4421-a84b-3e7708b9a055\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/b0/89/00/83b08900-c06b-42d6-95db-0e9070bde3f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/93/bf/85/8393bf85-9cb4-48b1-b3e9-c1db50ee8060\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/14/c2/7a/8314c27a-b71f-406d-a473-fd41b60c2260\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/28/8d/38/83288d38-d181-4b2f-bd51-af0f9db26c02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/47/73/2d/8347732d-b8b6-40ab-ba4c-de032ed4b548\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/21/51/60/83215160-b7f4-4fc6-8bea-a83ccc79cd81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/af/e5/18/83afe518-da1f-445a-9569-6e82b8c4a1c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/9a/91/13/839a9113-8405-4e7b-8ff3-f0a525ca8964\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/7a/6e/24/837a6e24-2b19-43de-a9cc-870f7033bf30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/31/b4/f9/8331b4f9-7f3e-4613-9a04-312dcdc1fd94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/83/bc/8c/64/83bc8c64-c447-41d9-8d11-ba3bdc295cdf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/75/87/86/37758786-9b19-46b4-8913-0a529d24c174\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/1e/ed/a7/371eeda7-0b65-4f08-80b4-34bbb1c5965d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/82/c5/ba/3782c5ba-725a-4b90-b890-55c1cb2b2081\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/e6/31/66/37e63166-fce2-47fc-bb3f-69a44350b34a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/b3/0e/12/37b30e12-390c-4ea0-b692-2b2e9787f0a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/74/d7/f7/3774d7f7-2fc0-442c-b30f-2e8970e7e8cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/54/d6/bc/3754d6bc-dad5-467e-8b67-9157170723aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/2b/64/cd/372b64cd-af30-432d-a29f-62f7db09fe9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/6c/0d/01/376c0d01-2207-4643-90b0-75afe7f6274b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/5c/9c/92/375c9c92-2327-41df-bbf7-cbe86d306a82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/5a/9b/b3/375a9bb3-de39-4162-a035-2d2c51665cee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/41/24/67/37412467-488d-4b59-8304-d677258c59cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/4b/75/92/374b7592-374d-4e42-9c22-3bbc3a1897d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/1b/a7/10/371ba710-cb5a-4dd8-9a15-60859c49867f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/2f/75/eb/372f75eb-ae6f-41da-8431-b34b5ea68634\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/46/eb/40/3746eb40-0cf4-4fd7-b813-f6eaebc3045e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/e9/81/a5/37e981a5-09ec-41f5-bea1-a438db22f6bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/c0/47/71/37c04771-873d-4c61-80a8-82909f773bf2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/f3/90/e3/37f390e3-ae09-4cec-a793-59c511cb3e2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/52/c2/b4/3752c2b4-29f3-4467-805c-b8cf47552173\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/52/de/38/3752de38-c0d3-4ca7-90e2-c23c90c6ecea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/fc/de/ff/37fcdeff-0c47-4c39-907d-0e83c088f3fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/dc/df/b0/37dcdfb0-d189-48c7-bf85-03080e241470\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/3b/36/b2/373b36b2-f5ba-47ca-96aa-25f5cb3b57bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/37/2c/7e/19/372c7e19-8a37-455f-8833-862cce659973\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/a1/8f/e0/42a18fe0-cf86-4c41-906b-9211d3bd145d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/ff/4b/07/42ff4b07-2ce9-425c-88a4-cf1581096784\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/5f/fe/bb/425ffebb-9515-403a-959b-c61bfa91778c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/96/d2/da/4296d2da-de1e-49fd-826f-c72018744dff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/e7/12/c8/42e712c8-c094-4188-b3b1-75cf2de6d593\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/0d/3c/da/420d3cda-bb1d-4a44-ae35-6c41719ca54f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/59/54/3c/4259543c-1619-42f9-b40c-62ac01e7311a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/94/31/72/42943172-e821-45a6-bb0b-ea1ba8c8e0ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/67/3e/41/42673e41-3f15-4949-8f45-8bb5d8cec3d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/12/84/a8/421284a8-4af3-4f01-aef2-1b62f2cfeb9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/f2/89/2c/42f2892c-eb98-402b-bb6d-0c1fd5fc4d3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/21/e2/22/4221e222-64f6-44ad-9508-d989dabf5fe0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/34/80/2c/4234802c-9f8c-4170-9631-a3c3afada1eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/c0/ff/8e/42c0ff8e-4e99-49c1-a4ca-b800c87676d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/5c/30/45/425c3045-77ea-4dfd-a61c-75f45c056952\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/3b/60/70/423b6070-3a69-4fbf-b81e-23e1111cefb0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/08/8b/aa/42088baa-cdca-42f5-9eb0-dc654e8cd5ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/79/96/fd/427996fd-93c3-46e6-b227-6fc6f6674eca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/46/3f/7a/42463f7a-c695-405c-91d5-6e3635d23f6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/2f/1c/2d/422f1c2d-c1cc-413e-8b57-1272ac3f1618\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/97/6b/81/42976b81-e44b-4b03-9220-d8b2e1f5d662\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/c8/01/80/42c80180-2b6b-4ec0-9989-cf668ab20efe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/42/72/c8/4f/4272c84f-400b-48e8-9419-9a7bd0615d74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/3b/a5/d0/8c3ba5d0-1224-4d33-8b82-5e505755d8be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/e5/58/82/8ce55882-3874-41a9-b8eb-4de8876a9209\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/e5/0f/91/8ce50f91-6446-4d88-baeb-f597dfb37926\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/76/61/66/8c766166-a6ec-4d8b-a48f-36c66cdbadd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/d0/d6/f1/8cd0d6f1-0ee9-4227-aee9-4866a8df22d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/62/c1/32/8c62c132-cf1a-422b-a0a8-a70a6bf4abbf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/c0/6a/c7/8cc06ac7-9f02-41ca-ba3e-ab4d506d251a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/17/13/02/8c171302-8475-4a73-b355-b2526b8d946f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/47/f6/55/8c47f655-60d0-4590-a1c8-487fc61b3edc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/94/3a/31/8c943a31-37b8-4ec1-8fca-d87fb30f70b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/ff/e5/37/8cffe537-e9b4-4d49-9656-3116882d8648\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/a8/bc/55/8ca8bc55-4f8f-496d-9770-6ae02721f71a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/52/14/52/8c521452-7d97-4c0e-8b61-834df3cbe47d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/f1/49/65/8cf14965-b5f2-42b1-ad97-fb6fbe6352fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/db/5f/1a/8cdb5f1a-d81b-4f15-b124-953aafd09937\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/87/16/56/8c871656-a6df-45ad-a752-6beaf62dd644\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/bb/5d/76/8cbb5d76-30e5-44c2-8d1e-798171632b23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/b3/59/8c/8cb3598c-18c7-40fe-9245-70a4a0f723f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/15/94/81/8c159481-c128-4b28-83a3-8ecb6c32a98d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/be/f6/ce/8cbef6ce-7671-4264-9a57-8b070140d57f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/2a/94/92/8c2a9492-7430-4cca-8f6e-12f60e705a73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/82/9b/a4/8c829ba4-6b31-4977-b651-776c1a6e0832\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/e6/da/e3/8ce6dae3-bbaf-45b3-b930-a36f079e311e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/5c/84/2f/8c5c842f-35f4-4316-9ba9-1db19d442837\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/69/bb/c4/8c69bbc4-7ad2-4f6e-a05f-61cc6aa6ea70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8c/b8/a5/33/8cb8a533-0695-45e2-877e-5b6444990008\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/0f/5a/c0/440f5ac0-26ed-410f-9b28-3c94231e3bb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/e5/d2/c9/44e5d2c9-aa8c-4b78-ba50-5f430ee94f4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/f1/6e/80/44f16e80-a2fe-464d-8261-903082f4834b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/2f/7f/54/442f7f54-8821-42ef-9eb5-b3c9fa8ebb3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/bc/96/e9/44bc96e9-1209-4f24-a2dd-1384cbad475f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/0c/de/d9/440cded9-0f8a-4c23-8e54-5551bd9b2cc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/47/62/30/44476230-e829-41f8-b759-2b3afea67728\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/b5/94/bb/44b594bb-f2d3-43ae-876e-2d64fc5e83b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/80/b2/2c/4480b22c-b382-4d0a-b418-4c254ad6ecc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/f6/49/5c/44f6495c-2907-4e47-bc1a-f254ea053d75\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/fb/1d/7b/44fb1d7b-f860-44a3-9c9a-1511a39f1b04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/ba/54/28/44ba5428-7f10-4543-8594-8027f0a65d48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/83/a9/44/4483a944-46dd-4c45-8edc-8d3b228f9932\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/e4/11/1d/44e4111d-ba03-4805-a10d-a58b8b066f63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/f8/15/e0/44f815e0-3a1d-408a-a698-39dabdaa0116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/90/06/18/44900618-31da-4b5f-9768-03ab591aa015\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/62/d8/0f/4462d80f-5dfd-45d0-8a99-30e410690ec8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/a4/a1/1a/44a4a11a-a41d-4056-ab68-c6f03a4108d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/03/42/66/44034266-2047-4c77-8948-def884499c04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/2d/01/11/442d0111-32d9-43dc-8600-3d088c2dbcb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/7d/8a/cc/447d8acc-9f0c-43da-837b-680eda7aa7c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/da/5c/11/44da5c11-332a-4cd1-952c-3c257c084497\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/34/db/88/4434db88-9cc4-43e5-87e3-7b72e4b6673e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/44/aa/95/d5/44aa95d5-5708-4017-ad32-376478e79ed2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/05/1a/ae/ce051aae-570e-4e8a-9c82-99024f0c21a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/fb/8d/6f/cefb8d6f-b973-4a69-94b9-6dd5afac3249\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/b4/30/e6/ceb430e6-8d11-4aa2-ba26-bda270b1e18c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/35/1e/29/ce351e29-ed7b-4bc2-8ffa-4cef018a8ca7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/96/c8/c9/ce96c8c9-52cb-46ca-b11b-5c275fb53ce6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/d9/d3/f5/ced9d3f5-e690-4bc0-a02f-cafb0c0ec3b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/72/a1/be/ce72a1be-1478-44c6-ad91-e0114080ecfc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/25/ed/0e/ce25ed0e-e8ce-496e-b640-f1b6fb5bfed2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/25/d0/10/ce25d010-941e-45b5-aeaa-6a97cf851058\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/92/75/2d/ce92752d-a007-4c33-98d4-42aa7390d30f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/56/60/6a/ce56606a-1744-41f9-b1b7-9ee700828b08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/ee/37/02/ceee3702-ced0-44de-82ba-7ed5a997fccf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/0f/82/5d/ce0f825d-9c2f-402a-bdcf-8970edb33390\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/6c/f0/8b/ce6cf08b-3c0f-4ad7-838b-44634f4b6592\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/6b/49/6e/ce6b496e-935a-4b47-a0dc-d358391c3386\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/ef/25/15/ceef2515-5cff-4282-85d9-d108544554f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/29/7e/b3/ce297eb3-86bf-43c8-92d6-a23d87c0107a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/73/da/6b/ce73da6b-a324-4f67-8089-2c36ba3c7fc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/30/10/4b/ce30104b-d584-49ce-a3a5-8f5fcaa7e869\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/b5/c0/66/ceb5c066-2a3a-4016-97c1-56815ce1adf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/ca/e0/f0/cecae0f0-86ef-42b4-b312-72bc5a70caac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/4b/79/cd/ce4b79cd-214e-47bb-a080-e9efbabd1146\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/0b/b6/44/ce0bb644-293f-4005-b066-e8fcec08087a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/a2/2f/2d/cea22f2d-0ae4-430a-a8c6-b96fd2643f3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/1b/27/54/ce1b2754-4b1e-4ab9-84f9-d8ca113a67d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ce/3c/d6/ca/ce3cd6ca-a7cd-4b0b-a282-d4b2909badae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/79/c9/5d/ef79c95d-ff26-45f8-9738-a3133f1b1d92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/8a/da/65/ef8ada65-d3ae-4477-b3fd-83cbb30679cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/90/7a/f9/ef907af9-375b-45f1-9094-fae1836adbf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/58/5f/b6/ef585fb6-cf95-428f-93f1-676ea181bc67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/a3/b5/77/efa3b577-51d9-483d-babc-d035aa60049f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/cd/83/5b/efcd835b-dff5-44d1-aa93-fa587532aac7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/77/e6/2a/ef77e62a-4da2-468f-8315-e6bacc3beab5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/e7/4c/e4/efe74ce4-0a80-406e-a084-af83d240ff2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/7f/17/08/ef7f1708-924c-4d13-896f-2aa1abc277ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/68/62/d3/ef6862d3-fa70-4d33-8747-7e5536f774d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/c4/aa/bf/efc4aabf-ef3c-4923-bc56-845e01cd244b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/6c/ab/77/ef6cab77-4eef-4275-8cc7-684060c051d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/c3/3a/f7/efc33af7-d13d-4538-add7-5ea168f574c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/a8/45/c6/efa845c6-00dc-4376-9f4a-5038947a0239\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ef/f0/31/52/eff03152-20c9-47e7-bc1b-5a9314d3b155\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/11/cd/60/a011cd60-5a44-47a2-aba1-d95f4aef87c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/ff/63/41/a0ff6341-5ba4-43d9-9e54-90266734721b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/b5/00/fd/a0b500fd-db70-4ce7-b84c-398b976cbecb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/e3/90/bc/a0e390bc-7205-4df6-8f94-a62f3a06ce08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/8c/57/d8/a08c57d8-777e-45ec-a79d-b7a1b2c07089\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/42/64/8b/a042648b-af7b-4814-905f-8fb04b128413\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/7d/13/69/a07d1369-baca-471c-9482-28b03b8c54f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/05/a0/29/a005a029-c312-48b2-82d9-07e5e29b8f60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/05/06/66/a0050666-351a-452c-926d-6185854a43da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/1b/fe/7a/a01bfe7a-d0a7-4be5-8d5c-b3920a98be38\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/54/af/3e/a054af3e-ed42-4e3c-8f43-cf6f030fd388\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/41/cb/71/a041cb71-a667-4245-bb43-fe707b876496\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/2e/4e/cb/a02e4ecb-1a0f-47d1-be97-848764ab1478\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/72/0a/45/a0720a45-a449-4404-aae7-e60e15ca9ef2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/35/95/33/a0359533-73ff-435a-82d4-0325d992157b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/eb/58/1c/a0eb581c-d60a-42f1-94a2-8f25b7560314\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/e5/31/8f/a0e5318f-605a-4051-95b7-c4569fa1afa4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/5b/4e/a8/a05b4ea8-55da-4f57-be3e-15a42fe5b085\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/88/ab/65/a088ab65-a9b3-4cdb-96bc-d8e018556e7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/45/cb/1d/a045cb1d-48d6-4230-b557-ec8bc3c7ef7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/2b/3a/0c/a02b3a0c-75b8-4e41-abaa-9f395636372b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/e0/d3/bc/a0e0d3bc-98ea-423e-80cd-fc96cc39a791\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/a3/22/a0/a0a322a0-b2cd-45c7-b8e3-dd225142f881\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/08/da/19/a008da19-f24e-4959-91fa-51914c659498\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/8e/f1/e9/a08ef1e9-51ac-4c9f-870d-7705356523f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/b1/a3/f5/a0b1a3f5-5f69-4a37-8d50-a79b95b9b19a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/17/42/18/a0174218-8546-4b94-a6ed-de06e35f4074\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/78/c7/be/a078c7be-5b46-48f3-bca7-e0e022dc5efe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/9d/08/39/a09d0839-ff16-4c74-a8be-3b574b5b4035\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a0/89/e6/2f/a089e62f-a64b-4653-a98f-754ea0d2aee1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/d0/b6/4c/14d0b64c-0681-4bd6-9ef5-316742928832\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/9b/53/14/149b5314-f9d0-42ef-8eac-ab5e720c8dc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/ee/d6/50/14eed650-ac65-4329-a332-b8601644cb67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/3c/cb/b1/143ccbb1-e9d7-43fe-9918-a506b7cee0c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/01/cb/ea/1401cbea-bb74-4f5b-9ed5-3dc85a2ba042\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/2a/14/9a/142a149a-9ef7-40af-95f5-cd0eda351425\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/bc/cb/d7/14bccbd7-99bc-49e4-a759-940cf1503588\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/2d/c4/de/142dc4de-3a74-4cf2-a65e-40f1f2de8e3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/79/54/25/14795425-7c76-4e48-8d8b-234aadcdaa53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/05/2e/17/14052e17-bee8-43ae-87db-376568e5939c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/05/bc/72/1405bc72-b31e-41ec-9dbb-5b7b834780ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/f0/74/34/14f07434-268f-48fd-999f-d3b1692e72a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/c3/36/11/14c33611-acb9-480d-ad29-470fc5a5f5da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/9c/8d/9d/149c8d9d-4348-4b15-8aab-b9b0435d3fe6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/88/5f/de/14885fde-0cde-41b7-b127-67c93fc9dca2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/e9/17/a5/14e917a5-0392-4be3-8043-3a9a9c2c4c72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/a5/c1/c4/14a5c1c4-e670-47fb-903b-9220429ea526\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/fe/08/18/14fe0818-65fe-4b8f-bee2-653aa2cd34b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/e8/9e/bc/14e89ebc-4fe7-4a0e-a7db-50c9b08064c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/45/02/f7/144502f7-819b-428b-bf32-0a76f397d53f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/3d/34/e5/143d34e5-2353-4f16-b677-a390787e60dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/be/e2/7a/14bee27a-8e11-4f36-aa30-1fd6ba3a23bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/c8/c6/83/14c8c683-7650-49a4-9d9c-5bcd3a68da46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/00/7a/a6/14007aa6-246f-4a7f-bb2f-fd0a25bf063d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/14/54/d5/05/1454d505-510d-4a38-abc3-aa315e274dfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/1c/69/42/951c6942-6f08-4962-882e-b92079b9e2e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/fb/5a/ef/95fb5aef-69b5-49ef-a248-b5dea5009d68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/48/24/cf/954824cf-6eea-44ea-beb3-f1aecbef38df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/37/22/cd/953722cd-1c5a-4c49-8a4c-a84d888eb762\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/0d/bc/20/950dbc20-1e95-49aa-b7e0-ceec4b5686fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/e4/fe/f3/95e4fef3-3e98-45f1-bb0b-097caf7f6417\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/83/9a/a2/95839aa2-d307-4ad6-ada3-919f26085cff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/99/2f/25/95992f25-c240-451a-b38d-644bdeaf32e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/00/10/52/95001052-ab90-4932-a9ca-a86753b033ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/8f/2f/c9/958f2fc9-b2d9-49cf-9754-240526f67a76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/a2/58/27/95a25827-6354-40db-b68d-02c8bac076b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/e6/bb/05/95e6bb05-d77c-40df-9040-5cc34779e839\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/21/c9/04/9521c904-341a-4733-ad1b-04b1842b1ed3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/c4/bc/ea/95c4bcea-5e88-474d-8b3a-aa158cc216da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/4a/6f/0e/954a6f0e-c2ca-4ca8-8f6e-b1caf3bb7a9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/4d/45/a5/954d45a5-00bd-4e41-bdcf-f3fe2ee127a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/eb/56/30/95eb5630-8003-4a7f-9233-d606250d827b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/eb/5a/cc/95eb5acc-7311-4e2b-aa45-9c8998d71af5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/0b/f5/28/950bf528-112a-4e19-aba2-c0fe9a378592\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/5b/28/d4/955b28d4-46d8-4b81-a63e-a21d52a14a6c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/2e/ab/df/952eabdf-6a06-41de-858f-7048565b060e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/7f/3a/02/957f3a02-40d9-44d5-9a9a-d447dd31e392\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/95/54/78/31/95547831-b2cc-45eb-83f6-c4d6ba861492\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/04/04/c2/250404c2-1ad4-4b40-bd01-5609fb202043\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/a0/4e/29/25a04e29-3a10-4d59-a23f-e0e3ade2cd8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/fa/63/cc/25fa63cc-d9c7-409c-9823-dd08abb73b4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/fa/d6/5b/25fad65b-dd2f-42c0-a091-327433a37584\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/54/f2/1a/2554f21a-95fd-4abf-9845-636d22da1ed7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/e1/2f/91/25e12f91-8dc9-400b-a651-adb83ae13a3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/e1/b9/5c/25e1b95c-febc-46d2-a23c-a63fde49ce86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/f8/8b/64/25f88b64-777f-4264-8d47-8bb024a39d64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/a6/05/d7/25a605d7-67ca-46b5-96bf-49f92309f966\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/83/d0/7b/2583d07b-40a7-4679-bc14-7379d37ceb3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/5e/65/97/255e6597-6e76-40bc-96db-f4e20671bb44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/86/61/bd/258661bd-0553-4cdb-a1dc-e2b712e9d0cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/92/20/b8/259220b8-570e-4ad5-99c5-eacbd1dbb0ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/b1/65/7f/25b1657f-21f4-4e9a-9190-2ad071510826\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/a5/03/fa/25a503fa-81c8-4dae-be54-88baab8b5b81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/73/00/1c/2573001c-92fe-4228-a4eb-b700a782630f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/2f/ac/a8/252faca8-b205-4ca6-8391-27e84b633fe7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/25/8d/b3/fd/258db3fd-6cfd-448a-834b-6b74894d96e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/35/ee/47/6535ee47-cb8e-441a-a560-db7caf5fdba3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/ea/f1/b3/65eaf1b3-e3da-4c5a-aacd-14b9ba39c709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/cb/ce/cc/65cbcecc-6a9c-4aba-9e5d-6017f1643164\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/d5/be/bf/65d5bebf-6ece-42c8-ab16-20535b308d8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/3f/6f/fa/653f6ffa-53c0-46e5-aa00-858ebaea45d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/0e/ab/ef/650eabef-e2e6-4c26-8c11-d0e6f7b3905e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/65/e5/01/6565e501-0739-4a99-8e16-2a08eadd8490\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/1d/4a/f3/651d4af3-1227-4b33-9a08-ff5020707720\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/47/03/31/65470331-b40a-43c6-87f4-5662ee5fceba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/a4/c0/db/65a4c0db-aa3a-4954-ac47-297380e39f80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/c5/b2/00/65c5b200-ec54-4eda-bae4-60c4d864e768\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/c5/83/21/65c58321-11fb-419f-9486-ca796218e84d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/7f/96/33/657f9633-205e-4a8b-bcee-b8aa8b688194\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/44/16/91/65441691-781b-4a3b-a24b-e864a29b0625\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/55/5f/b6/65555fb6-f895-445f-a38e-4e2bc402ad4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/75/d5/40/6575d540-d960-4035-b5c9-0e695e999504\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/75/12/ca/657512ca-b413-44c6-afd6-d010b500f894\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/fc/1a/f9/65fc1af9-2eb6-4c06-946f-30ba45b6bd96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/65/59/aa/45/6559aa45-bd7e-494c-ad4b-17ab02f9af47\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/1d/b7/85/e31db785-7482-4c6a-82ea-ca9f1890a811\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/1f/ac/e3/e31face3-6861-486d-95bb-625f8a998de1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/79/f8/54/e379f854-41ea-4ddf-afb2-ee304540b790\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/ac/2a/b6/e3ac2ab6-3c25-417a-843a-7446f494ea4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/38/8e/46/e3388e46-2c52-4b1f-b7e6-cec2132c94fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/3f/88/94/e33f8894-5aa3-465d-8df0-8d53bbfb9d25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/8a/49/c0/e38a49c0-af4a-4d3c-a5f5-5e53dcc8aa7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/f9/da/2c/e3f9da2c-92a9-42bf-8912-40f9d34fc44b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/28/2c/9d/e3282c9d-3ba1-45e7-82b9-1d27d0df46a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/67/10/9e/e367109e-302b-4f41-94c5-29043ceebbe8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/d6/b6/ec/e3d6b6ec-18a4-4101-a290-39efe4d5c6dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/d0/0c/88/e3d00c88-6595-4110-8623-f70f9d4817e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/9f/df/46/e39fdf46-d2be-48c5-b3f2-524cabf7f798\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/b4/8d/c1/e3b48dc1-786b-4e77-a572-1b94c89c7329\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e3/df/51/1a/e3df511a-7ad3-44f1-a8f1-8187ac9c5141\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/e3/94/d0/a2e394d0-257a-4fc5-9558-f9159297cd34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/eb/fa/02/a2ebfa02-95af-447d-b289-07eefe0cd58d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/cc/94/2c/a2cc942c-71ce-487e-b1f5-c8125016deac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/50/93/0e/a250930e-4c33-4e48-a8b1-3cd210ead713\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/3b/11/c0/a23b11c0-dcc5-407a-9cad-a5692e1fe744\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/04/9a/f9/a2049af9-1ced-447a-abcd-359be4ce1ad4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/e8/c4/45/a2e8c445-4b42-4a6a-84bf-999568575ec5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/cb/a5/cc/a2cba5cc-5d85-451e-b5e2-55cce5cc4043\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/af/8c/0e/a2af8c0e-88a4-47c3-b126-b1fecf0e2740\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/d0/2f/3f/a2d02f3f-301a-42d2-8c10-91280f1ba229\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/d0/30/03/a2d03003-3c1e-449b-9945-84862d676d9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/d0/f1/b7/a2d0f1b7-c327-48e6-b6d5-94c6f896d26f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/b1/68/0a/a2b1680a-5c9d-48ba-b7f6-c24c2b7eb01c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/46/fb/c1/a246fbc1-8cd4-4084-b1d3-d99cd2415c64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/77/eb/a0/a277eba0-886f-4a8f-8f39-95ee49fa3fdf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/fe/ff/72/a2feff72-481b-4e2b-b38d-751127d9f578\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/d8/a3/8e/a2d8a38e-e197-4a62-bb0a-0ca39c76b84e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/b6/63/b1/a2b663b1-aaaa-41e8-a31e-c967fccedba2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/b9/4b/43/a2b94b43-acf5-4fb3-9424-5ac8422360bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/e9/a8/77/a2e9a877-af36-4d76-86f3-34bb2bb5dce7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/06/f6/29/a206f629-64a8-4d9d-b03d-93c42a8eeff4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a2/99/da/f2/a299daf2-8474-4b6e-8712-4c82b386f1ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/c4/c3/e5/f3c4c3e5-c850-4781-afa8-430e3a65b073\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/f4/b5/98/f3f4b598-706e-4940-a027-11c4600d5cc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/26/2c/ca/f3262cca-eb85-4ab2-a55d-083cf3b4a7d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/aa/40/08/f3aa4008-f59b-4a08-9f99-b4317b07a02f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/89/69/93/f3896993-aac6-4edb-a58a-a7ebc4bd9dcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/81/81/e0/f38181e0-ec4d-4d5a-bc22-8a056a784883\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/a1/1d/95/f3a11d95-4194-42fd-bbf0-32772b190dc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/c5/cc/00/f3c5cc00-9a48-4e40-98e7-02421267d64c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/a8/32/88/f3a83288-cad3-41e2-ba94-ba245721135e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/39/a5/ab/f339a5ab-ce28-4332-a82b-2b3fae569a51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/38/3f/1c/f3383f1c-d32a-40c4-ab2a-5e4ad6b758e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/86/70/a9/f38670a9-b788-41fd-8a99-512de5215b19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/e7/07/e8/f3e707e8-6494-4134-8108-4f5332e08b41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/6e/b1/03/f36eb103-f1c9-4161-a0d1-944679d3229e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/6c/7e/3b/f36c7e3b-a934-435b-8627-d1116ea68f07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/c2/3e/cc/f3c23ecc-4b1e-4f35-8f9e-68f6a1e8df5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/e1/23/dd/f3e123dd-468b-438d-afc8-cd07f977c858\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/0d/5c/9e/f30d5c9e-1894-4fa9-9581-dd7464a6defa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/0d/a4/a7/f30da4a7-022b-4bb9-afb1-e0f9a70c4576\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/5b/e0/75/f35be075-96f8-468a-9af4-5f6175bd7d2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/e4/1d/72/f3e41d72-ffe2-4eac-aa1d-41b7964f6e4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f3/3d/81/b2/f33d81b2-9de1-4417-afe0-572cf592e6e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/9a/5d/00/0c9a5d00-2e48-40e8-9d30-e67757bf53ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/f8/3a/65/0cf83a65-1356-493f-b03a-02582eff9277\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/de/72/d8/0cde72d8-5da5-442e-8dfd-5b8fc97777fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/3b/a4/9c/0c3ba49c-c22d-4daf-b131-7ca41f745cc3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/fd/3e/bd/0cfd3ebd-9a33-485e-aca0-f355aa19ea08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/db/04/0a/0cdb040a-3e4f-4419-a81c-62bbb12b1e7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/7c/78/7d/0c7c787d-5bd3-48b1-967a-43ffbd7f7399\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/8c/09/c5/0c8c09c5-9dd2-4e81-ad89-a0f8c84ebff9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/ae/5b/ff/0cae5bff-e9f5-4f17-97ee-51d3319c2d27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/ae/bc/b3/0caebcb3-389d-45f4-8352-5eb2b4b80271\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/97/45/de/0c9745de-fe8b-4a64-8da6-57c0a1087e79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/b4/83/2f/0cb4832f-0864-4770-82f0-8524c994675e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/cf/79/0e/0ccf790e-e39b-4904-8ad9-22853fb273ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/a6/2c/b8/0ca62cb8-f64b-4d4a-8cf9-3fa49b817a39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/f3/92/61/0cf39261-6670-4324-920e-7b9caf0d285d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/5d/7a/a3/0c5d7aa3-be75-4f44-bcc9-6717dd39ab52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/7a/e7/7d/0c7ae77d-411c-4a97-b6ae-211bda75baa1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/ac/97/19/0cac9719-eae4-4fa7-83d0-b849ed8ac7c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/10/3e/64/0c103e64-214f-489a-b07c-96ffa9c5eec5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/4b/3d/44/0c4b3d44-73ae-4174-8827-adaaab1be3c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/4b/e2/45/0c4be245-65d8-4dee-8c2f-f38056f7613c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/83/2f/31/0c832f31-9162-41b0-bc8a-eb75f9d5df32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/3d/53/ba/0c3d53ba-051d-46c7-a79c-d4530e089bd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/7f/48/11/0c7f4811-8507-441c-a9f5-6395eab98d09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/d0/c5/55/0cd0c555-25a6-42ed-952a-f871012281fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/29/d9/1a/0c29d91a-5788-47b2-8778-1228117a3ae6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/01/68/a6/0c0168a6-27f5-4446-b61d-225e37477bc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/39/99/69/0c399969-719b-4dfb-8a14-ec9facf6bbee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/39/b3/85/0c39b385-9554-40e4-bec5-d57972b5ac82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/87/c2/51/0c87c251-ae76-4d2b-b633-2c1168f8f185\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/f7/ea/6d/0cf7ea6d-9243-47a6-bd9f-11e12d3df895\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/0e/b4/7e/0c0eb47e-6010-4b3d-a8c4-84b4b827ffc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0c/92/78/86/0c927886-8917-4d20-9048-cad6fb935133\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/51/65/56/b6516556-7974-4e05-bc25-8b35d84e2258\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/97/ca/70/b697ca70-331c-4eee-867c-1fa329df14ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/59/bc/52/b659bc52-4981-4ce3-8a0f-98b6853dbb16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/d9/f2/67/b6d9f267-0984-4c6c-9caf-1cd00a318ae4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/a3/1a/34/b6a31a34-0006-48fa-8c12-1ea5ce726eba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/63/4e/cf/b6634ecf-a78e-4bf5-85c7-b2f7a27ad38f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/28/b7/93/b628b793-ba6d-435f-94d0-1f4cc357f9f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/3d/28/76/b63d2876-76d5-4cd7-9311-6f46ddfcfcce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/99/8a/e0/b6998ae0-6ea2-43b3-8631-7e429c837285\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/36/86/cb/b63686cb-9805-4cae-a1af-49ea05124dbe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/66/8f/04/b6668f04-78a0-4e10-b969-f61351ce8a08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/af/d9/7c/b6afd97c-7060-48ef-8b36-0784fee0bdff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/2a/2d/3e/b62a2d3e-bfcb-43ca-a075-6600d98213fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/10/1c/86/b6101c86-c226-4805-9fa5-d86f60795143\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/a2/40/85/b6a24085-4cd9-466b-a1d7-ac85fb94bbf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/73/d3/49/b673d349-5ae3-45e4-9a73-106c5e9e3110\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/75/bf/53/b675bf53-de97-4204-8ee1-7173eaaf7271\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/e9/99/57/b6e99957-9e86-4a28-ad0d-ba46e00073c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/67/fc/cd/b667fccd-cc10-48b4-ab50-62a4377484c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/34/b7/c8/b634b7c8-dfe8-4ab1-b234-107fb5637258\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/a5/4e/68/b6a54e68-4431-4c91-87b1-b4ba867ddf3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/61/44/d0/b66144d0-f01b-420a-97ef-2aab1ca43de6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b6/c0/e6/57/b6c0e657-687b-4600-99d9-d3e4f2bc35d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/66/51/e2/816651e2-3dbf-488d-a171-3eab49bcc3a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/5c/25/49/815c2549-be35-4702-8465-56042352d663\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/5c/b6/a1/815cb6a1-6723-4dcb-81f2-ec3aee342118\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/13/3c/10/81133c10-533f-4325-8e5c-cfc0c1576410\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/8e/7f/31/818e7f31-ed1f-470b-8549-5481a1af90eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/39/14/b6/813914b6-6f04-4aaf-a0c0-d945f53cf8f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/8d/3e/87/818d3e87-9362-44b8-9276-a5b2774ca82d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/ce/60/50/81ce6050-6487-45d8-8093-7d077747462d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/4e/2c/03/814e2c03-b1ed-4482-906a-157a35084e7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/3b/6d/a4/813b6da4-a5de-438d-ad61-6c3d8ad431b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/2c/ed/7e/812ced7e-fdea-417f-9375-c2ce9a591fd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/71/20/2a/8171202a-1355-4f1b-8853-70d3e4eaac2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/da/53/2f/81da532f-1189-4331-9cd1-c732239b9eb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/ed/b8/7f/81edb87f-6be3-40c3-9a71-d84c2ce6b46c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/11/f6/96/8111f696-e2b4-4fe0-a6e9-a0058ce7d689\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/ba/e2/2d/81bae22d-1bec-45f9-88ff-91485395b5ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/b6/cc/06/81b6cc06-55df-43eb-98ea-1676f5670fe7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/67/b8/5b/8167b85b-7109-4271-a77e-d967c26cbdda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/fc/b8/62/81fcb862-7691-400a-8257-79f3499eec9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/8c/04/a7/818c04a7-2067-478a-9dda-f7e095272f76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/04/a5/1d/8104a51d-3060-4065-98f7-51a126470c84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/04/15/84/81041584-56b1-48b2-a105-809f51328d8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/9c/e5/51/819ce551-2c85-42db-9fbb-c90cbe18a3d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/bf/25/68/81bf2568-c062-4a2e-8aeb-5112e106e7cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/05/1d/b7/81051db7-21c4-455d-9d3d-215a62cc1b32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/de/51/d6/81de51d6-1091-4c64-90d2-daf4a36de5bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/84/f5/e6/8184f5e6-a1d2-4513-b588-f779fb0cf944\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/81/a4/f8/1b/81a4f81b-d44d-4c02-afac-3007d603378d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/dc/b7/70/d4dcb770-06c6-48fe-a1ca-0f80910e165b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/09/db/f5/d409dbf5-09fd-458c-9035-78b32d1eff36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/b4/70/b7/d4b470b7-e366-4a7f-af4f-ed51e31b8b10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/8c/dc/81/d48cdc81-168e-4a40-bc7a-2ba6b562ba5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/2f/68/29/d42f6829-0b81-4ce5-8a80-cf24407a11b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/54/8c/4f/d4548c4f-aabb-4213-9290-559e9a387226\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/37/a2/08/d437a208-22c3-46f9-badd-d383773d3c39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/48/ab/10/d448ab10-a023-4859-a4a6-a637f13b9319\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/25/75/a0/d42575a0-163c-4bff-950a-cc4acd321ea9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/79/43/9c/d479439c-46f6-48f5-ba24-abc67e7e21e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/a5/13/39/d4a51339-a0ed-4b68-9af5-5a6f0dd1a127\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/8e/a8/63/d48ea863-bc27-4a81-bae7-e8b2e1d19f23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/22/a9/30/d422a930-096a-4ead-83da-47bfe826c81a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/cd/16/c2/d4cd16c2-fc7a-4df7-a495-47f19078c714\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/6b/3b/8f/d46b3b8f-e23c-4475-89f1-a15fc35d70ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/fd/fb/e5/d4fdfbe5-6ea9-4a69-8379-c54b7d9c1ad6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/3d/11/4f/d43d114f-f5bc-4add-b896-60bbe7c15838\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/d6/7e/27/d4d67e27-baed-4f3e-bdcf-dc46e319b3de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/f5/fb/7b/d4f5fb7b-f647-42c2-92eb-e98ce603a470\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/24/7c/b1/d4247cb1-00dc-4d18-b1e8-543d583076fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d4/41/a8/23/d441a823-c61c-4d82-8c09-302d13469e03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/c7/9e/ca/8bc79eca-eb16-4ed0-881e-2a15c934d313\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/72/36/5a/8b72365a-9737-425f-9562-8a7b37f75b3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/81/65/fc/8b8165fc-563e-426e-a2fc-ce02fbfa117c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/85/96/d5/8b8596d5-5461-4a78-9647-74ddb2bf0d53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/02/ad/e0/8b02ade0-6880-4b4c-ba5c-5d7053cab168\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/3c/17/30/8b3c1730-30b4-4b15-a6f1-321172ac2416\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/f7/22/bc/8bf722bc-5421-4ea8-b405-ddeb1017963d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/f8/b0/67/8bf8b067-abca-4a77-8d25-124cc67f2128\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/b1/8f/30/8bb18f30-c033-4879-8653-4353015924bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/74/19/cc/8b7419cc-070e-45ad-8da7-b1b3d2f2ab36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/9f/67/c2/8b9f67c2-caf8-4108-a605-ee182ff188d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/1d/fb/08/8b1dfb08-bdd9-4d39-b447-4961dafe7d34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/3a/eb/e9/8b3aebe9-2517-4805-a6a4-45c6668aab07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/2a/c9/44/8b2ac944-743d-4d78-85e7-6f81e5b7ef99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/a9/e4/41/8ba9e441-2a8f-483e-ba19-87c0233bc588\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/b3/fe/0a/8bb3fe0a-ef34-4ae1-b60b-bc4cd51934f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/c0/4c/67/8bc04c67-c008-410c-bc97-2cc19f29eacd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/59/00/16/8b590016-5248-4dfd-ab91-364673d0dd18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/92/6e/32/8b926e32-ac9a-4438-b862-63cb87ccf929\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/f3/fb/c5/8bf3fbc5-bca9-4f6d-92e5-7cc05c76cce2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/ff/4d/af/8bff4daf-7a78-4f6b-bbc8-404b631097f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/1f/f8/25/8b1ff825-e207-4838-9a81-958d1efef295\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/0d/b4/27/8b0db427-d2f7-4140-ad6f-e4ee07a05a73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/90/ac/ac/8b90acac-4535-4c71-98d4-89133a7b211a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/88/0a/db/8b880adb-9988-4be7-af18-b5212ff99d9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8b/98/bb/f7/8b98bbf7-4133-4447-83b2-b0fa1c39f6f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/dd/13/c7/69dd13c7-0b0d-4366-a5ad-72653640921f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/1c/01/55/691c0155-d49e-4946-9986-e8abed8cc46e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/50/97/08/69509708-508d-4a2c-b2b9-5ba1cc4fede9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/b6/7b/cc/69b67bcc-5554-4513-ae7f-4ce846945bc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/13/bf/c1/6913bfc1-a3c1-4c1c-b25c-8173a9ce7924\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/93/68/93/69936893-4a64-4d29-9f13-ad7b2ab8a29b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/ae/15/84/69ae1584-c483-4afe-994c-7912cc7c111e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/24/68/37/69246837-0972-4e58-88e2-2cc727771fea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/86/d0/20/6986d020-e7ad-4381-a9b2-070ad73b96af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/56/49/d9/695649d9-c8da-413b-9dfa-c622b863f21f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/e3/9a/fb/69e39afb-9d49-4c49-b671-0de5469c3b51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/ba/d4/6e/69bad46e-76d0-444f-8dcc-b95ae0b968c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/c8/06/24/69c80624-6b1b-43ec-8031-f222895d0a6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/69/5f/fc/8f/695ffc8f-b064-407b-8c80-883511955097\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/f0/9a/77/87f09a77-4dd8-407d-b121-3445f4866fce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/62/c2/34/8762c234-c59c-4dc8-a930-95b0e9cfc10a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/ed/86/77/87ed8677-180e-476f-970e-dfae104114b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/55/5f/9d/87555f9d-ed0e-4704-a118-d686a67ea9e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/29/db/07/8729db07-ecf0-45c8-a40a-e11fb4f3ddef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/1d/ec/f2/871decf2-0ec0-40f9-8865-68feaa6da993\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/33/67/b0/873367b0-f3a6-4dc6-879b-abeb25b314c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/cd/69/2c/87cd692c-6685-4d68-9534-e06834aec40d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/24/37/13/87243713-74df-42d9-8a38-cfa1f0e67888\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/e1/9c/58/87e19c58-c4d2-4500-9166-b29a781b07a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/63/b1/f5/8763b1f5-42c3-4658-8d2a-a5564fc9e7ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/0d/b9/da/870db9da-58c1-445b-b0e6-af8a94875757\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/e4/f6/7a/87e4f67a-0ae9-47a8-be95-87c094ba64d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/96/97/52/87969752-2af3-4f06-9ac2-5013b7672193\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/39/28/46/87392846-f1d7-48da-972d-c7a52bdad607\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/ba/31/82/87ba3182-ee37-475b-aaa3-f2eb1ffc54ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/19/f7/89/8719f789-0f75-40b9-95db-9d4a20183fbc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/dd/de/d5/87ddded5-6096-4570-8b8b-5d7f1669efda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/3b/b7/13/873bb713-7117-4f1a-8b4e-b1f7587a3303\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/5e/cc/f9/875eccf9-1279-49f1-aed4-deca620e37d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/32/d8/b5/8732d8b5-43ea-43f8-a991-b20024a40cc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/af/ad/f6/87afadf6-af1e-495f-b8a6-8ee0d2d68051\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/c1/f8/f5/87c1f8f5-92c2-4273-a9e7-522ddbdbbf36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/f8/81/1d/87f8811d-9b5d-4d5d-b509-1a2d9dee7dfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/87/07/b2/2c/8707b22c-c9d5-4f0d-b5fb-ff711d8a465e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/93/c4/cb/9c93c4cb-c54d-4055-9d07-dbe247b99549\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/07/39/70/9c073970-be1a-4967-888f-de11c140db52\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/96/97/14/9c969714-54d2-4f03-bea5-e6d82787c189\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/d4/65/3e/9cd4653e-d514-4358-acb1-f021224a2448\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/fd/87/0b/9cfd870b-3fbe-4d4f-829c-979248a990aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/03/ab/2c/9c03ab2c-c4d9-4093-bdd3-af5dc33090f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/b2/21/a0/9cb221a0-cf86-4d56-b84b-6d0e9b626e5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/10/74/b3/9c1074b3-1c91-4895-8872-944ef463b64d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/01/42/8b/9c01428b-c53d-4c41-985a-cd9623680485\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/bf/69/9b/9cbf699b-3f46-4ec2-850f-374e02ea70ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/d7/2d/ac/9cd72dac-4c2a-4cd4-8dd9-b43487ce49ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/7e/07/42/9c7e0742-2e74-48af-8df8-8de1db09da11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/54/23/6c/9c54236c-6ac6-4bb3-a040-e1fae155c307\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/6f/89/26/9c6f8926-8826-4908-9aba-5b3f4e178e1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/a7/ff/ed/9ca7ffed-6eb5-44b6-8537-472d35908e9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/6b/1a/38/9c6b1a38-212b-4b66-9b63-26c9374da02d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/46/4d/8a/9c464d8a-6624-4430-be6e-ec1d76eb5635\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/83/c4/34/9c83c434-75e9-4940-825d-5b52b73d67b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/28/3e/62/9c283e62-98c8-4ba9-90a5-3f09a172aae7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/68/ea/f6/9c68eaf6-a1b7-4ea8-89db-05f56a4c0d88\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/8d/f0/02/9c8df002-9681-45ac-a2bb-8f04f37a92e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9c/cf/d5/63/9ccfd563-da73-4b3a-abe8-abf490914364\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/26/97/4c/a726974c-4ac6-48bc-8645-432415207ef3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/31/2b/fc/a7312bfc-a303-4537-9ebc-f377bb1ca43d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/17/f0/13/a717f013-d191-421f-81d0-c45105cb0162\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/06/26/64/a7062664-bd6a-478e-a6c0-cf174dcc088f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/2e/99/68/a72e9968-101d-44f5-a1fa-a034a92498aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/13/52/7c/a713527c-f542-44dc-b255-68e24631f6d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/25/aa/22/a725aa22-8b51-4db1-8e64-9934664b162b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/81/4f/d1/a7814fd1-539b-4028-ba86-368b4b632d1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/53/78/e3/a75378e3-fbad-46a8-b6ba-80f2c0a1b8c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/c2/6a/b3/a7c26ab3-f5dd-406f-a7b2-1c55ca8134e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/1a/37/6a/a71a376a-c4fb-4679-82d2-61968e03caed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/2c/cf/59/a72ccf59-06ed-4723-9a68-027cbc0a3b28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/2c/5c/c5/a72c5cc5-bc16-468d-96a0-192de0f4e713\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/f8/4d/36/a7f84d36-3e56-4904-98ec-6e850802ea19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/8a/5f/80/a78a5f80-cdf5-4465-8633-93e45dbf1161\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/c7/09/b3/a7c709b3-9c46-4337-869a-198a8810db03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/72/c9/be/a772c9be-991a-43b8-913a-0b8b047154dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/a7/1c/44/a7a71c44-92c8-49ec-b39c-4b4a48e7c75c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/df/bc/71/a7dfbc71-eafb-47ca-96ea-feec01c8fff9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/32/ae/8e/a732ae8e-789a-45b6-8437-d6ccbf13598e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/34/27/c5/a73427c5-af18-4eeb-b0e8-e8b3859de1d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/34/8c/19/a7348c19-1d5b-41df-9743-155acaf71376\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/bd/4a/ac/a7bd4aac-8e91-448b-8aaf-1f86eb4918dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/48/5a/8f/a7485a8f-e868-49fb-9901-7bb1c43c427c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/de/9a/52/a7de9a52-0700-44fe-888b-06b3664c9c88\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a7/5e/3b/bd/a75e3bbd-9e6b-48a7-bf04-52bab97893b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/c8/ab/6d/adc8ab6d-35bb-4551-bda7-58e00b83ffb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/ee/fb/5a/adeefb5a-ad77-4a1e-9cd1-417730a022b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/9b/4c/ea/ad9b4cea-d4a9-42c6-90be-4bc8ca715122\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/df/79/9b/addf799b-dc27-45ab-b1bd-817bbcad70b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/9a/e5/ac/ad9ae5ac-7424-488a-a272-7fa3c531487d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/8c/d5/3e/ad8cd53e-b9e1-4c69-abdf-bf42df48c7fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/d2/f0/8d/add2f08d-88ab-4490-b749-105573995611\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/5f/32/d8/ad5f32d8-e555-4d66-9369-52d3269670b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/26/f0/83/ad26f083-2380-4152-abfe-94b408ecf99f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/f0/d7/69/adf0d769-d192-4215-9bce-752d56a9d5e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/71/ba/f6/ad71baf6-324d-49b3-80ed-54c4f581ad1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/47/1d/45/ad471d45-4f87-429f-ae7b-d24e71286540\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/34/f0/49/ad34f049-25f1-45f9-97e7-1d520e4c2f53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/3b/c4/35/ad3bc435-70dd-4e6f-8611-4ede773539d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/3e/38/9f/ad3e389f-0df5-42b1-851d-84b1b5a77581\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/37/01/32/ad370132-9996-4eed-b293-9c8681befb05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/92/02/a2/ad9202a2-be5f-4495-a401-72886190b412\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/2e/91/ed/ad2e91ed-37cf-4955-acf9-2d857f6ad1b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/b7/e6/ee/adb7e6ee-406c-428b-ab8d-c0c43c539b72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/ac/36/52/adac3652-2d28-4e80-9bb8-8bc16fc8dd8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/11/d4/ba/ad11d4ba-f513-42a5-be51-991a7284113a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/f5/26/21/adf52621-37f0-45b1-9112-d981c4093c97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/c9/62/cb/adc962cb-0618-4a11-bcd4-99909b017622\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/68/3e/2e/ad683e2e-6d5f-4461-8b78-2aaddecc51e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/58/7c/b0/ad587cb0-5e66-4f5b-bdc9-275cef3c444b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ad/28/d7/96/ad28d796-f704-4d81-b0c7-55202ab59bb4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/71/48/ce/5a7148ce-d42c-4cec-b0fb-b38ca25e1dc3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/e7/46/87/5ae74687-f790-41b4-98fa-c10350cd24c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/04/66/65/5a046665-094c-4f17-86a3-058b3564e6f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/02/4e/7e/5a024e7e-9ed5-46e0-a2ff-2b547d9a5323\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/8d/fd/80/5a8dfd80-6c6f-43f4-bd5c-b8cb9e3fa4c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/f0/2f/af/5af02faf-c1bd-4afc-af61-99004f68577f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/a3/1d/2f/5aa31d2f-bc59-4cf4-82ca-3b028ed84c5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/cf/0b/50/5acf0b50-b48a-4f46-a9a3-859d993ac8d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/36/65/48/5a366548-ae4e-4cb8-90e9-eec25154e9b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/c7/a0/36/5ac7a036-dd44-4d7b-ae95-590ff4e61566\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/b6/15/8e/5ab6158e-c7c2-4363-bf0f-17959bb9fbb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/a8/d6/49/5aa8d649-04e1-462f-be98-32a0764d6aa2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/45/70/f3/5a4570f3-ef92-40de-b295-911694fc5d9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/da/97/e0/5ada97e0-b8a8-41c4-989b-0cd0ed315a9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/a7/13/3e/5aa7133e-e794-4d69-bdbf-24012a751d45\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/98/65/c1/5a9865c1-d8b7-4a3a-96af-3b3d4e9d7690\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5a/f5/2a/99/5af52a99-012e-4362-a75c-ec9ebc53d69a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/b8/6c/c5/ffb86cc5-b801-4dbd-ae9f-301d8d079928\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/b7/b8/63/ffb7b863-48f2-427f-9706-2cde88532789\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/81/38/57/ff813857-ec77-4340-ab95-27b578c9f89a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/e9/6e/fe/ffe96efe-62c3-4611-9cbf-06e8a8ae51d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/19/ec/a1/ff19eca1-d840-42cc-9f28-5159b351bc8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/3a/0d/43/ff3a0d43-5565-4de3-acf5-a86b5794d52c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/04/9a/21/ff049a21-3578-4e97-b999-a67e8822c5e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/69/6d/cf/ff696dcf-3fd4-4cb1-afb5-62c07741ef4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/42/5f/a1/ff425fa1-2a22-435f-9aae-84137270c4a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/b1/52/e2/ffb152e2-0b60-42e0-be65-bda65054683a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/29/13/38/ff291338-8e37-4af1-bf82-953a089103d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/d8/5b/50/ffd85b50-659a-4d93-a912-52c37993575c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/45/17/37/ff451737-50da-4821-8f9f-a0aa11122edd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/38/26/cc/ff3826cc-e7cc-4059-b86f-47199d82fbf6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/10/57/26/ff105726-8600-444a-9950-bd218ac45096\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/99/e6/ad/ff99e6ad-0764-4d3d-9903-fc02c8b402b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/99/6d/48/ff996d48-ed40-4830-9dd8-986b02144e01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/9e/21/5b/ff9e215b-54fa-40c0-a9ff-0cd4ce84cd19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/50/20/7e/ff50207e-e6af-4e26-a58c-b674d0bb23f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/49/1a/84/ff491a84-e3fd-49bd-a857-3533c83efe24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/ec/3a/c1/ffec3ac1-e750-4160-bb82-766506c0e35c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/d0/19/8e/ffd0198e-3f22-4541-bd53-d31be6830631\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/d4/87/1b/ffd4871b-3f4d-43aa-98c4-ab85b72eba7f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/97/b1/b2/ff97b1b2-b803-462e-ab32-30ebc2c6fedb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/02/76/82/ff027682-3662-492d-a84e-dbf47bf3eca7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/56/bc/a0/ff56bca0-ab57-42ab-a3f4-254db2b00672\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ff/d9/f2/11/ffd9f211-d7f7-4aa4-8179-ffb828640e7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/b1/ed/ff/29b1edff-7fe2-40f2-8db5-cad48dd42216\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/5d/55/55/295d5555-f5c2-4bfb-a80a-34a8131b17e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/f2/63/64/29f26364-0cbb-47fe-9e12-36d69882e486\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/93/0e/d9/29930ed9-efba-44a5-9937-69b285896082\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/6a/78/8f/296a788f-4fe2-4b57-89b7-61a3d638fbde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/20/b3/59/2920b359-3cc3-4d77-9a4b-5f0c14d96611\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/4b/f7/08/294bf708-4b49-4e1d-853d-752f4ca2744c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/a0/dd/3e/29a0dd3e-6106-48c6-8ec6-12c73adc09e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/f0/9c/bd/29f09cbd-3855-474c-b3bf-d3f9b5ac8609\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/a2/9a/1f/29a29a1f-8c71-4c65-b71d-e9b02c04ffe6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/a2/ab/fb/29a2abfb-340d-4caa-aa93-5eb8ebcdaf5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/66/d0/c9/2966d0c9-682a-430a-899f-e656d4654124\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/a7/b5/3f/29a7b53f-4ed1-41f8-a432-561f40092bb6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/d3/3c/15/29d33c15-d289-484f-96e3-9314252d861c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/f1/3c/ba/29f13cba-5e13-4291-93cf-9982bf65c42d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/8b/91/fb/298b91fb-9b24-461c-95dc-f9fc791b0acc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/cf/9d/fc/29cf9dfc-b89b-4dbd-8ddf-88b82573a3c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/51/a7/0d/2951a70d-881d-41c5-b0e7-ff1bd5760988\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/04/55/c5/290455c5-add9-45de-a362-58fc8987ba7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/8f/ad/d6/298fadd6-582d-4851-9fec-2e08f1e5d077\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/29/91/67/0f/2991670f-3e8e-4ebf-8d6f-4791da511221\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/a8/3b/16/57a83b16-a64e-42c3-a366-ca9c88b5edf5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/b9/84/75/57b98475-925d-4440-a9b0-1222ce09ee28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/39/4b/9f/57394b9f-294f-4cb7-a3b9-2cb3dd87576a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/8e/82/c1/578e82c1-daa4-4fad-8080-9009e4488661\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/8e/92/24/578e9224-1d45-424f-95a0-e765c4562bd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/03/cd/02/5703cd02-3c65-41d5-9d5d-4695cb0512f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/40/67/7f/5740677f-5ea9-4f9f-ae45-d739e1b79742\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/fa/96/11/57fa9611-1b35-4d74-bf68-e84804552fc6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/6c/bd/46/576cbd46-4fd4-46fa-b0e0-d2218ff8278b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/72/57/84/57725784-1ea7-4ed9-afb6-d5199630c308\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/4f/85/7a/574f857a-1dfa-45e8-b170-a8711ff80adc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/ee/b0/3f/57eeb03f-c320-4853-9717-0a38c5e3f1e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/66/3b/97/57663b97-78aa-496f-838f-4ea8eb21b6de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/22/49/18/57224918-59c0-424e-91b9-4da2e8e35b54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/91/36/84/57913684-0073-45bf-9ad1-5cd38c0b7bf9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/78/ad/81/5778ad81-0ee8-4e14-ba2e-568eff7798b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/d6/fe/1a/57d6fe1a-1262-47bf-ac5a-8e7869c85f4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/f9/2c/25/57f92c25-75f1-4f74-8930-96334e590309\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/76/c2/e3/5776c2e3-89f0-4217-ac5c-1ba973db3081\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/cc/f6/27/57ccf627-e2f8-49dc-ab76-57a2de008efd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/d1/b2/a5/57d1b2a5-5101-4aee-99fc-bd8e0592401c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/c3/ce/eb/57c3ceeb-b389-47b8-9fde-492118740128\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/57/a5/d2/f7/57a5d2f7-7e34-40a1-8ca5-d761662e8d4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/7f/0c/14/5d7f0c14-62ef-4a9e-abaf-97af1e301806\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/61/84/92/5d618492-f1ee-42ff-8b92-85b72b5ec171\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/2f/d6/7e/5d2fd67e-0291-4469-b881-1fe79800352b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/8f/bf/42/5d8fbf42-9161-4243-9e4b-6eb0b33fb7bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/5c/05/8c/5d5c058c-e3a5-4b53-8fba-787bfe58b70f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/54/a1/ff/5d54a1ff-856e-4bbe-b0d2-ac6d832208ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/e0/24/f2/5de024f2-4419-458c-a135-94a80e080afb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/9f/03/79/5d9f0379-cfc6-4b83-b2c7-b1c777a3b8ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/30/1b/2c/5d301b2c-cc85-4c06-8b91-97590912a62e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/50/c3/1b/5d50c31b-aaaa-46e4-a7c9-ae01bce31c8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/a3/75/d1/5da375d1-2d2a-49db-b0eb-dde168825215\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/cb/6a/b9/5dcb6ab9-0f39-4486-898f-56a375f57c5f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/d1/b7/3b/5dd1b73b-912d-4765-b8eb-465906b7136d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/1d/38/08/5d1d3808-af42-48d7-a379-cedd074885a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/cf/da/26/5dcfda26-3c59-403b-bf57-81b4ae285507\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/70/ea/61/5d70ea61-9923-4431-b4be-3878a9e7b130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/73/ed/56/5d73ed56-341f-4177-97bb-071dacfa6251\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/6d/82/f5/5d6d82f5-efc4-4087-8de5-a809a4c54d16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/40/d2/2a/5d40d22a-1925-46b6-9f88-658230e88507\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/c3/8a/f1/5dc38af1-f5ec-4454-bff9-8cc10bc6cd94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5d/11/a2/fd/5d11a2fd-0da1-48b0-96cd-28818627f7bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/78/c4/24/8578c424-4da0-4d3e-8a80-06dcfae57ed5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/37/07/46/85370746-125a-486d-a60c-186a8458bf22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/8f/40/aa/858f40aa-decd-433a-b41f-e7048e2a0259\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/1d/63/d5/851d63d5-7b64-4e79-8ecc-05e6fa268bde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/1d/2b/48/851d2b48-daeb-40cf-a1f6-c667514a7014\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/53/bf/ba/8553bfba-9b23-456c-a610-263d655b11d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/ba/04/90/85ba0490-ba15-4518-b2de-6a50af8fbad8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/df/69/1e/85df691e-a5d8-43aa-9bc5-74fc94203e42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/85/dc/0d/8585dc0d-dae2-4c54-970e-415262c47f15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/b9/16/03/85b91603-e62c-4669-a6ac-0e99512f60f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/6b/6e/aa/856b6eaa-9811-473f-a0fe-c1819b27fbac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/a9/02/58/85a90258-321d-41ab-9db8-ab7b1cc87641\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/f9/79/80/85f97980-a919-44d7-ad91-4f66de4b2b41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/75/f7/fc/8575f7fc-123d-40af-9150-75e3a93395c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/c4/7b/0c/85c47b0c-d5a7-4cc8-85e4-dedb231fd990\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/eb/06/4b/85eb064b-2aa5-444d-959f-b746f3c95cce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/7a/92/16/857a9216-3a43-4820-90fa-6b73276567e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/57/21/a3/855721a3-bc00-4525-a2b5-bc9a88278543\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/0c/ce/1c/850cce1c-167e-4f24-a820-8daa8009c491\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/d7/cc/42/85d7cc42-f2c9-4a8b-bbf4-fd95f775732f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/7c/b1/4e/857cb14e-be9f-499f-8307-55ef4d83dfc6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/a3/9a/5a/85a39a5a-647a-47e8-9f5d-c9895d2b0795\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/15/e7/4a/8515e74a-cc39-4089-b485-ad5cbb4c666c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/fe/8f/f4/85fe8ff4-b41a-48ed-896c-71ee21774653\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/99/4d/78/85994d78-48bc-4111-aba4-e674ca98a5b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/85/8b/47/17/858b4717-9867-41cf-9466-02907cf499bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/2a/4c/ff/c22a4cff-c1ce-4af9-aa97-36c524d1df8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/7b/a8/a2/c27ba8a2-7b2c-424f-9b28-ef1ecd068e3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/72/22/01/c2722201-78fc-4a18-a014-b0dd42d03b69\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/06/53/2e/c206532e-af2f-420b-9319-cc80d12bd74d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/05/30/61/c2053061-3777-42fd-bab6-be7025ea0fbd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/d1/ec/8f/c2d1ec8f-b22e-408b-b3e5-c93fc236bf64\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/85/28/a5/c28528a5-8397-4a71-8c77-09d229d8684a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/2b/b2/6d/c22bb26d-1ea7-45c3-a882-7096c1b81d09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/f0/03/6b/c2f0036b-a4a1-4a2f-a20a-89c633f3ca23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/25/1d/e5/c2251de5-d2d7-4fae-8f73-e878a78755f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/43/2d/57/c2432d57-685a-4bc1-aa03-a244f5f16af3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/ec/3b/c4/c2ec3bc4-982d-4912-9b01-e0c5f368b0b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/0e/05/49/c20e0549-5df6-4941-aeac-e79303128a1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/a2/a8/a2/c2a2a8a2-d39a-4fce-bd4f-032fd6dad8a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/be/b4/2b/c2beb42b-4603-4831-9001-6354ef1bc0ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/28/b9/ef/c228b9ef-e15e-4e19-b959-5caa1f8bf726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/28/90/67/c2289067-fe03-4067-a6b8-c96fd551e8be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/36/dd/30/c236dd30-3ffd-41bd-905e-86fd17f8ebdb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/c6/77/4d/c2c6774d-1ada-41b8-b80a-9ec36dcf1ca8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/e5/a7/0e/c2e5a70e-17d6-4f5b-90dd-874967fda373\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c2/0d/41/f3/c20d41f3-a473-46df-be79-e32adc9b3d3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/44/c9/a3/7744c9a3-eb23-4a9c-80ee-a8e0e45830de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/44/9b/61/77449b61-10ee-4e6f-99c3-cbfa9344dd37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/42/ca/85/7742ca85-0677-4b85-a093-ee8d82eca57a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/d2/3c/a6/77d23ca6-7ef5-4dde-8f3d-af3ca5b7dd22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/19/1b/06/77191b06-63bd-467b-9f6d-d73b97b71b2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/88/b6/f8/7788b6f8-b297-4828-9978-91d0515d5e58\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/82/46/d1/778246d1-b176-4e63-9107-1d9cca66d2ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/65/03/38/77650338-7cfa-4c1e-ba47-eb74cdc9bf3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/f8/57/c2/77f857c2-faa5-47ce-a657-86db85aa8bbc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/38/ad/44/7738ad44-840a-4f2a-afcb-84ad49a00857\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/18/a4/e1/7718a4e1-99c6-4577-9a41-587849e5a14d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/b6/5b/03/77b65b03-201d-4626-acd9-8a740445b666\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/35/99/38/77359938-b238-45c6-9b56-6636f90e3368\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/fa/ab/be/77faabbe-6de0-4277-ad9f-a28f41792ff5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/d6/f6/9f/77d6f69f-445e-4c64-a579-bf14c95d9ff2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/2d/55/c2/772d55c2-be14-4a44-b72c-5edb06047b85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/f4/ef/d0/77f4efd0-8483-4b7d-b450-70c83a4e0dd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/9f/0e/f1/779f0ef1-faeb-4507-abf9-794253caf366\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/20/e7/f4/7720e7f4-0802-45a8-97e0-e5dcff2bd9b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/0b/82/c1/770b82c1-f0c2-4a70-aa98-0beaf23e8381\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/9d/d0/5d/779dd05d-b716-4b51-9f1e-904468eecc35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/77/58/8a/fd/77588afd-2140-4c3f-a1a4-35a8bba9bfe7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/2c/a3/44/bf2ca344-b6ec-4f92-981d-0074712ef346\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/07/1e/bd/bf071ebd-bc50-4e66-bb20-4b3475cec81c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/09/8b/d9/bf098bd9-fafa-46af-be4f-263d602ddc5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/09/68/ae/bf0968ae-18c2-4298-9de2-b959c33ba8ed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/84/c4/12/bf84c412-f5b0-43f1-94ea-6086647c59e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/84/ab/e8/bf84abe8-be2c-4fb1-90e3-47a77075f281\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/65/65/53/bf656553-1dcf-4325-aa84-c0ad6e0e8af8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/b4/6c/4c/bfb46c4c-13af-4ef5-b6c2-ff07b7d0aebe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/12/fe/a7/bf12fea7-a8ba-4695-a042-7d614e2d2089\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/32/df/44/bf32df44-bd03-4f33-98a0-954771bc7d31\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/8b/39/c4/bf8b39c4-a310-45a2-84e0-f94747d0e930\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/1d/a5/d8/bf1da5d8-543a-4db2-837a-ec38e385d634\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/89/59/1d/bf89591d-2e7c-4741-91f8-47ea26c6c2a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/56/e5/b6/bf56e5b6-47e9-40bd-b696-48353063c880\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/3b/69/b6/bf3b69b6-402a-49d7-bcff-a2a0545f2347\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/e1/6b/e3/bfe16be3-7b43-4034-b8b2-a9cb7d390574\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/23/45/dc/bf2345dc-a10a-4257-84da-5af544bbfa86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/2b/3c/40/bf2b3c40-150e-4d61-b4e3-6b9409a98398\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/50/e6/de/bf50e6de-df75-4551-8151-1e1253565f65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/f2/c9/a5/bff2c9a5-609c-49e6-b19c-8b81d13b0e67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/15/1d/ee/bf151dee-ea6f-4a42-bc58-b4ca551ca494\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bf/c8/a9/37/bfc8a937-f291-4247-aef4-704c424d1ec2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/0c/fd/a5/6c0cfda5-c1c6-46be-890e-5b912cf3ac7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/0b/71/36/6c0b7136-bc86-4bd3-b9b3-fafabd725ef5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/06/3d/49/6c063d49-0966-4190-bdfe-873497fb463b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/45/a3/62/6c45a362-d077-45b3-8af0-b22715ad5ce0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/7f/79/39/6c7f7939-b84c-4e54-9bce-b7047f68e852\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/70/bf/3b/6c70bf3b-cc58-43a3-bb36-3d6b3bbdd83f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/b0/35/bd/6cb035bd-df11-4c32-aea9-ef2c24064351\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/09/7c/d2/6c097cd2-200b-4221-bade-047ef4059482\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/8d/a1/99/6c8da199-91fa-4a4d-8374-710a3a105cf2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/27/85/09/6c278509-9e1d-4eb7-8da6-08252899bdfc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/df/18/f3/6cdf18f3-d907-4cb7-af2d-5686ec4b3e82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/de/46/f6/6cde46f6-e29b-4d80-8475-26dbaf98b341\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/25/cf/0f/6c25cf0f-302c-445f-a0af-b74e883d0951\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/17/9a/ab/6c179aab-efd9-469d-8f77-0c73dacbfe49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/ec/e9/f2/6cece9f2-8b5c-4e41-a265-07b67ae5ce81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/e0/a7/52/6ce0a752-bca3-44e3-b80e-d4e4a64a4bb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/5b/34/bc/6c5b34bc-dda6-4582-b27a-c70af416e2f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/a3/fb/56/6ca3fb56-195e-4600-a616-78b5100df7c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/14/f8/0c/6c14f80c-5f12-48f2-8b20-70bb77684171\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/d6/8b/98/6cd68b98-59b0-4561-a1f9-c62a1bdf2acd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/37/10/9f/6c37109f-327d-4e4a-aab2-9269ab1f83e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/e9/15/08/6ce91508-2f30-42ad-a340-91574de649be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/f7/af/b4/6cf7afb4-be28-4d9d-9b73-5adde31bd289\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/e5/7b/ed/6ce57bed-0689-4b83-a623-9a0aa5f1b286\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/f9/69/7e/6cf9697e-462a-4209-9147-d38985b2c2bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/8f/d4/1d/6c8fd41d-4889-4eca-bd24-d5075a9efcb6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6c/f4/0e/57/6cf40e57-55dd-41fe-b921-a48645650ef9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/6e/fb/c7/0a6efbc7-070a-425a-af07-2d2419a4223e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/54/aa/03/0a54aa03-57a6-4c09-8b41-fb4d1b00de55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/26/5a/c3/0a265ac3-e5b7-4174-a8af-b557d7284726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/14/b2/23/0a14b223-9711-4b45-8d75-ade4fb3ed709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/52/cd/82/0a52cd82-f9bf-41a7-bfa2-7ff9a2da7ce9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/73/de/81/0a73de81-aa56-4d3d-b030-c11234a6cee8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/40/b1/c1/0a40b1c1-b667-48e5-8e19-1b6e0f1bd936\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/f5/ad/dd/0af5addd-de1c-4d5f-8733-4f187d995e98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/dc/54/ad/0adc54ad-2063-4750-a0a3-34d682aa4f4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/c7/f3/03/0ac7f303-73de-4ebe-b79c-34d7b058637d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/36/3a/af/0a363aaf-2755-4c02-b68d-ee20c1ed0e1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/bb/07/49/0abb0749-fd54-4c7f-871f-ca1e41cbfb6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/d7/45/60/0ad74560-c1c5-4aa4-96af-e72f38fab2b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/9d/fd/41/0a9dfd41-7487-42a9-88f7-7515183ef780\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/d4/fc/34/0ad4fc34-aeea-4d03-bf40-a41497f0b957\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/7f/36/91/0a7f3691-d0cb-4831-9b06-6b65c42b921c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/f6/15/65/0af61565-2196-404f-ba4c-887020bba34b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/bc/5d/08/0abc5d08-3be6-4c35-86cc-27186376b67a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/34/c0/46/0a34c046-ae80-40bb-a879-d2cd7a63a7cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/47/fe/bc/0a47febc-1060-4340-a2b2-ec7d01cffc70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/a3/4e/e1/0aa34ee1-62e1-4733-ba0f-33faafa6b8f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/cc/15/03/0acc1503-1167-47de-b72e-3c0bf7d50456\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0a/1a/84/57/0a1a8457-c9b8-47ee-aab2-a73382513e10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/e8/a0/d4/f5e8a0d4-1de2-42f5-b0ce-e813eeaf3c5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/04/4d/ad/f5044dad-679a-4e18-8e01-3546f1c2ce7f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/04/1d/6e/f5041d6e-9e3f-4684-b49a-93608368ea29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/a0/9d/ab/f5a09dab-f916-4c12-8814-83eadb0bfe85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/e1/c7/8b/f5e1c78b-89ec-464d-8897-4b92c1a370f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/24/aa/ff/f524aaff-c828-43f2-a8c3-1c023593ad63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/4f/13/1f/f54f131f-5626-45a6-a270-e6cb1b52683b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/58/f9/43/f558f943-8c4b-4b12-9598-5cefb71bb79e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/92/6b/d3/f5926bd3-a3f4-4fb4-814a-1fef9a213424\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/2a/ad/0c/f52aad0c-7ed9-44a9-9c0c-40313887967b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/66/4e/23/f5664e23-9f42-433e-9df3-b7a4dc981f15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/e6/5f/27/f5e65f27-2de0-43d2-b743-020afa3b108f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/8e/64/cd/f58e64cd-f4ab-4ead-a1b6-eecaf016dcef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/10/96/36/f5109636-9be0-429a-93ab-580f0aa5447f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/fd/95/da/f5fd95da-ad24-490b-8dce-a6b902444ffa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/cd/5c/45/f5cd5c45-87d8-47a9-a525-858303fdf55f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/d5/c0/c6/f5d5c0c6-e445-4731-b321-fc95f4ecacf9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/28/90/f2/f52890f2-c133-4116-8e92-cfa3cd4a7f91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f5/9e/ca/eb/f59ecaeb-acb0-400d-bfac-bc61cb4d3688\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/36/27/51/ae362751-6c5b-4f81-be24-51e1e0edb90f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/36/cb/b9/ae36cbb9-b18a-419e-964c-21294c11a026\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/37/0c/55/ae370c55-1615-4587-90fc-ad815ece8419\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/c3/00/a9/aec300a9-ec22-4a1a-9582-79d8670f663f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/c3/ff/62/aec3ff62-1b1e-48d6-b8c6-4fe127e2df83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/b9/ec/e3/aeb9ece3-c41f-4166-aa3b-e9f8891ef24b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/bf/d5/66/aebfd566-c091-4223-85ff-b8901ee98546\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/c7/f6/9e/aec7f69e-b648-4acf-b35e-410e74ad64c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/0b/31/89/ae0b3189-fa24-46b8-8deb-e79a9db58635\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/1e/cc/a8/ae1ecca8-18d2-4d85-b770-bc04b2262a26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/4f/f6/9c/ae4ff69c-de05-48c5-ac51-d1a95ece10d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/ba/0b/d3/aeba0bd3-ed04-493f-ab9a-a2ca74e6a828\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/83/55/86/ae835586-0c7b-466a-9d7c-dc643a0b9379\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/06/59/00/ae065900-0219-41f1-b70d-7c1c159331d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/a6/a5/89/aea6a589-2d93-4f7e-b14c-937ea9f4e19c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/ae/1e/82/aeae1e82-bf7c-46bb-9526-5c3660a98418\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/e4/cb/09/aee4cb09-d98c-4e54-87be-457eea45a5c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/08/a1/52/ae08a152-72ef-41d4-abfa-a825f80a0bef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/9c/0e/b5/ae9c0eb5-b3bc-465e-8c76-9c73a6b2cd7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/f2/6b/21/aef26b21-f065-4292-a9af-365fd92e91ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/b1/a7/a1/aeb1a7a1-10aa-4217-9df4-c42d8e292d84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/b5/62/9f/aeb5629f-8283-4993-bf47-01c17a5c2e87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/de/15/97/aede1597-0182-431b-86e9-a75188234aec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/27/5c/f6/ae275cf6-0caa-43dc-a1f2-72cb8fcc7480\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/d9/36/53/aed93653-a81d-450f-9de3-6a69583beff9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/2e/db/f1/ae2edbf1-0da9-4773-8038-592e905d7ca4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ae/99/31/4e/ae99314e-4f0c-4f8b-88bc-36861d36a726\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/c5/92/48/d0c59248-3762-4670-b52a-da8e6bf9fe07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/3b/76/93/d03b7693-b144-4412-98df-bbf208c1cc53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/91/b2/8c/d091b28c-f6e1-4e7c-bd7d-8ef81bf8c459\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/cc/c8/d9/d0ccc8d9-5c9b-4f5f-adf8-6a67d02b12f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/1a/05/ac/d01a05ac-db98-4670-a65f-7a3d43b5815d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/dd/7b/e6/d0dd7be6-f2da-4d67-a0dc-b8e1b64aedd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/22/10/a8/d02210a8-2b34-4f3b-91b3-79e87a91e4ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/28/b8/3b/d028b83b-dce9-4551-be40-1ca88d73f5eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/61/7d/8f/d0617d8f-77ed-4561-8ab9-1d7de2f70a4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/0f/a7/40/d00fa740-835c-453c-9ca3-9e8f4240c80b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/cf/78/d2/d0cf78d2-d713-499a-9400-06f29376b484\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/4f/7d/da/d04f7dda-a1a1-4864-9997-e0e84b8da937\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/d4/aa/2e/d0d4aa2e-8985-4da8-89b8-5ff750dcd8df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/03/19/a3/d00319a3-4c40-43d4-a51c-354bd057453f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/03/48/88/d0034888-e4c7-49e9-bf91-67192f28dff0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/9d/02/70/d09d0270-6904-4065-bc95-e4730561a50f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/55/29/3d/d055293d-d505-4a86-99a2-f51694238fc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/ec/02/4c/d0ec024c-b330-47f1-b83f-de17e5d8f4af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/b7/7b/d0/d0b77bd0-bf45-4bcc-8f9b-9a57c5c8dab5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/85/b6/a4/d085b6a4-3a40-400f-b34d-725d8413a907\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/66/d8/26/d066d826-664e-44c0-8f83-4d8741267843\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/48/16/b6/d04816b6-b9c7-4836-98e2-3e2a6ca34d21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/0d/d8/de/d00dd8de-acd3-4a77-8e35-9d66cc00abc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/86/5a/58/d0865a58-4713-4ea9-986a-a59cd80b8b4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d0/3f/c6/8e/d03fc68e-d332-4493-9e06-6e26f8deebe4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/c1/3e/76/1cc13e76-69f7-4567-9e9d-41e82dd7ba02\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/7c/bd/9a/1c7cbd9a-c1a1-437f-bde5-fd39ccefd812\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/6c/a4/27/1c6ca427-b0db-4350-85fb-b1d0465351e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/eb/a6/f3/1ceba6f3-bb7e-4f3b-a241-d866e9eaba2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/5c/0f/a7/1c5c0fa7-e016-496c-a793-9db2bcdaea7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/1b/9a/09/1c1b9a09-ba81-4236-99a1-77a76434fc5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/26/7d/bf/1c267dbf-606e-457b-be07-68c23bdb4981\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/99/f0/9b/1c99f09b-a922-4399-a203-111de2388ae2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/09/85/0d/1c09850d-bbe5-414c-b435-49ed4bb6da3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/4d/78/8b/1c4d788b-171c-49c4-b3da-3550c5d9e480\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/5f/13/b1/1c5f13b1-cbf0-4dc5-8a1d-59d1fb67cd97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/32/8c/4e/1c328c4e-3ff7-449a-bcb3-264df00a2830\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/48/18/35/1c481835-54bd-4091-a682-ec85308e5116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/01/06/2f/1c01062f-62b2-4fb6-99ed-fdd133185639\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/01/9d/33/1c019d33-0229-4c55-a79d-6ad0929adf4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/c6/52/d9/1cc652d9-e03b-4f2f-bfc8-92d042b49b4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/98/78/22/1c987822-3ed7-4a9a-bc58-d38088087d0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/84/42/49/1c844249-4ddb-4628-b09a-b3c4cbc136f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/f2/36/28/1cf23628-be0c-4e91-88ee-fa501bda1743\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/d0/4c/1d/1cd04c1d-c175-436e-943b-c1d98ebb9c5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/4c/ed/da/1c4cedda-11e7-42b9-909f-e26cba9a2af0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/ad/de/5b/1cadde5b-3724-43b5-8287-7f31cc77b49d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/ee/cc/27/1ceecc27-7f04-4ae1-b702-999d44ebebfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/cf/4e/27/1ccf4e27-32b4-478b-82f1-161029933081\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/e7/0e/93/1ce70e93-c798-49f7-97cf-f708210ce9bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/3b/59/77/1c3b5977-4337-42c0-87d1-56c0c5dc929d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1c/3f/d8/ea/1c3fd8ea-ef8c-40ac-a33a-e44f97b86b0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/d8/73/60/48d87360-2486-4a33-9aed-4ba95083e219\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/f9/ae/51/48f9ae51-03d1-4d93-8ce0-babaa2207605\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/dc/a3/48/48dca348-54d3-4fe3-9568-dad6a0036ff5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/2e/d9/0e/482ed90e-35bb-4bf2-a705-a1c5f444c5c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/4d/5d/d2/484d5dd2-038c-41c0-bc1e-0c3c4d97803c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/6b/12/4a/486b124a-f7af-442f-a2c3-2cbebc27e7e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/99/38/77/48993877-4115-4650-bea5-b85e266acce2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/99/42/3a/4899423a-523e-43c6-8314-7d5a5fca74e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/ca/60/10/48ca6010-45d1-4f5c-8f02-6bb85c6d8150\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/70/e1/14/4870e114-2c5d-403d-9e7a-01cfea7e6a29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/1a/27/c4/481a27c4-6ed7-4870-9765-8c0219b1a672\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/d1/0f/c6/48d10fc6-c8bd-4a72-a319-38c0e3fa0805\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/fd/95/ac/48fd95ac-40c3-4b0b-80a5-cc41f4e0cfd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/11/50/7c/4811507c-59a0-4c8b-8134-89d7d5d8f760\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/0f/26/2a/480f262a-e569-436a-b7a5-9ba890019d95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/bb/30/dd/48bb30dd-0d3b-4eeb-aae0-78f4c4a8ffa6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/bb/1c/e6/48bb1ce6-015f-4113-9966-ff6b7573dc92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/e7/70/34/48e77034-e413-45eb-82bc-35b04651131e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/51/4c/37/48514c37-8ed5-4bfe-8b7a-8a646b7abfa9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/60/a6/29/4860a629-03a2-47f8-8b14-baac43a587f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/48/1e/41/82/481e4182-c2f8-4b51-8b55-c29f63282f70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/f9/3f/ff/bdf93fff-c137-44a1-a5c9-e81040175609\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/f9/73/82/bdf97382-8acf-4c6d-b05f-5794c26c17b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/35/8c/76/bd358c76-976a-4472-a3c2-e0ce60e8ce2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/33/b3/57/bd33b357-335c-4ebf-808e-d868c9f82095\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/9d/23/6c/bd9d236c-4b7c-4429-b066-d66b532f6085\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/be/fc/fb/bdbefcfb-f8fb-4081-87d8-3b95423bcc8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/db/82/f7/bddb82f7-2267-416e-b354-92b55ac10646\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/80/c7/16/bd80c716-168e-4a7f-a3e3-4bffd9bf9932\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/84/91/ca/bd8491ca-12cb-4f07-9cf8-feb21cd8d893\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/44/25/64/bd442564-3dc8-4349-8cf5-b5d4a9a1d67f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/11/be/dd/bd11bedd-824b-44ed-bac7-53bba278a292\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/15/9e/9e/bd159e9e-b68b-48fa-a083-63e02ae62225\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/a5/7c/b0/bda57cb0-a8c3-4eff-bfd7-81c8d4a4764a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/01/f5/ed/bd01f5ed-05b4-45d6-bf84-75fe83985b65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/4f/df/fb/bd4fdffb-41b0-46e3-8bb6-f83f59c529e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/e7/77/95/bde77795-0411-438a-875a-266fc7031c71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/82/ce/37/bd82ce37-a7ba-4ff4-bc1e-b28ed0748727\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/2f/bf/48/bd2fbf48-8a4a-4c4a-9409-4761d3738cfc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/53/96/ba/bd5396ba-52fa-4cb1-9965-776bbd391aaa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/45/d9/b3/bd45d9b3-7620-46dd-b05e-206a10559d4e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/fc/95/4e/bdfc954e-a9b5-412e-87fb-dffa9d361da5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/d8/ee/4c/bdd8ee4c-aa13-4ddd-a8dd-64a56efebd1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/52/90/86/bd529086-162b-412c-addc-4b75db2f0326\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/52/26/3a/bd52263a-8424-4cbc-b177-8bfae7ad6670\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/72/b2/46/bd72b246-4318-4825-9c04-17c2b99ac130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/fe/28/79/bdfe2879-f238-4ee2-b24f-32c57979f3d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/bd/51/45/bdbd5145-0838-4354-855a-4f7ac6241460\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/5c/2c/44/bd5c2c44-9720-4331-8019-c08b7983fdae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/79/e7/a2/bd79e7a2-ee0b-4815-8714-37ea70db8a41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/d4/97/cc/bdd497cc-3051-4b79-8614-df23c419685e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bd/da/db/b1/bddadbb1-b895-496d-9ae5-7b1a1db8a0cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/ed/b2/44/27edb244-33a4-4bfc-80ee-3117dd63e4ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/4d/91/77/274d9177-f177-44eb-a6ce-e38d0b5daf7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/81/67/26/27816726-8724-4f7c-9823-2400b5d4a7e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/81/b1/09/2781b109-df76-490e-96e3-b43e7ba8bc4a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/41/2d/ce/27412dce-bbb1-4404-9b5b-6bb76f2accf7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/bd/e7/2c/27bde72c-cd41-4522-ad26-660149dd48ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/ee/14/59/27ee1459-1281-4a98-a815-7bf1f71c3e65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/72/dd/3d/2772dd3d-774f-4954-a4a5-ebf65cda2a3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/6b/e4/2c/276be42c-0c56-4d54-aed6-962d2f6a55e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/ce/dd/0c/27cedd0c-656d-4d2e-9dae-dd9acf0ff78c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/b9/ab/e0/27b9abe0-c6b8-4b61-a57e-f5b8d36a94a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/27/ab/ac/a7/27abaca7-0083-46d9-988f-133dd26da376\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/e6/30/90/4ae63090-758c-4355-b902-87173664fe9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/9c/7a/6c/4a9c7a6c-67b1-412d-b73d-1eb5f6afc91d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/f1/bd/01/4af1bd01-34da-40bb-9623-545434efeff5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/1e/94/40/4a1e9440-d027-443e-88f2-73b7de072017\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/6a/47/ed/4a6a47ed-b1a2-47e2-bfbc-a1875c6faf10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/72/8e/99/4a728e99-1188-4de7-a126-35ef72db404f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/72/4f/6b/4a724f6b-1cd8-414e-b278-9993bde7e389\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/72/43/8c/4a72438c-bf1d-466f-a4f6-737f330534e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/f3/00/4d/4af3004d-f0fd-4d16-af29-5388f8ee6e10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/17/ff/84/4a17ff84-0a62-49c7-9201-f96f3700c88f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/f4/98/2e/4af4982e-6c67-4a9c-a4d2-a899a0e46eb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/9a/5e/33/4a9a5e33-5c37-43a1-a5dc-0467635941d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/73/6e/30/4a736e30-9cc3-475b-a972-51906bc34df1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/96/28/c6/4a9628c6-d789-4752-8ce0-80e40301b44f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/e0/b9/cb/4ae0b9cb-e2b3-4ebd-ba6c-78581bdc045b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/cd/44/d0/4acd44d0-2ee2-4d9c-820b-7ce4b9681406\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/ed/ee/74/4aedee74-8070-410f-aa88-d9bdf228679f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/d6/a6/9a/4ad6a69a-efd3-445f-8f49-dc5a54f99673\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/82/cd/ab/4a82cdab-c7b0-459b-b129-869cb5e57c03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/0a/bd/a6/4a0abda6-6547-41cb-90c3-0e821ce71b94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/b3/e9/06/4ab3e906-03c2-466f-896f-e31e500b70d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/ae/5c/f6/4aae5cf6-e173-4899-b38d-6f2610b8a52c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/8f/31/10/4a8f3110-3d93-4b4d-b956-0f06e5d7fa94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/ba/c2/09/4abac209-eb6d-44e6-b502-40739b8b8411\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/fc/2b/e2/4afc2be2-84ef-498f-8cd5-2474bfaac205\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/fe/8e/0e/4afe8e0e-6422-4525-9d0b-ac85f196c8cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4a/8e/5b/b4/4a8e5bb4-3688-4eb1-bf0d-545d251b5394\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/c3/d2/8e/0ec3d28e-ab69-419b-8358-7a683cff26fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/7b/4a/12/0e7b4a12-8143-4cd7-815e-e7cb44629d55\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/f6/b5/01/0ef6b501-6340-4641-9ce3-14d7dafc4a90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/fe/c8/b9/0efec8b9-3372-4445-ba3f-5d677bad77cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/d6/39/1b/0ed6391b-bb92-4f17-ae00-4762b06e13bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/61/74/a7/0e6174a7-1053-4170-afbc-29f03e0fb982\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/8f/1c/6d/0e8f1c6d-d37a-4f73-92f6-4cd2fe703c81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/cd/c3/4b/0ecdc34b-79b6-4068-9515-2266fa2144d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/2b/ba/c5/0e2bbac5-e9a7-424e-974f-85c03d0e403d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/cf/f6/f7/0ecff6f7-52fa-4949-99a3-2aa897c8cbe5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/cf/67/07/0ecf6707-5f47-4cd7-92b3-cea0a9647e9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/6a/a5/b0/0e6aa5b0-5f11-47e8-8ffa-ddb25e7c4efe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/f9/80/b5/0ef980b5-e061-4c30-85f5-e4aeaa73e28c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/5f/5d/17/0e5f5d17-bf42-4413-b477-79e6a4b211e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/fc/fd/bb/0efcfdbb-7231-4f8a-b0f0-b0ef5a8c6f27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/0b/23/ab/0e0b23ab-9a57-448b-99a9-be31bdb0a409\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/44/12/66/0e441266-2d4e-40cd-b6fb-14854759798e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/87/14/5a/0e87145a-a07d-441f-9d9e-681bd2d19b82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/e2/f7/3c/0ee2f73c-7216-42cc-9f46-7b882b3f9022\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/01/61/da/0e0161da-107a-4f7b-a7a7-dee48eb49934\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/7e/32/e1/0e7e32e1-ebfd-4260-88c3-c8646827bd40\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/a4/0e/dc/0ea40edc-63a6-455d-894a-727559f59660\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0e/9f/e9/f0/0e9fe9f0-1e88-4420-b132-20e3d93a6fc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/1c/1d/94/581c1d94-1f6a-49df-b51a-e993139bbf7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/d2/c6/ba/58d2c6ba-f33e-421e-bf62-3fe84141113d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/4a/66/4f/584a664f-3059-4358-b2e3-bcfe7919cea4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/39/a4/34/5839a434-0e48-4520-87fa-960c226fbd59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/3c/46/33/583c4633-196e-4894-a0dd-6fe4dd79929f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/d0/fa/88/58d0fa88-079c-46dd-a8a3-3910275a7f37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/7c/0d/34/587c0d34-f877-411a-88f1-86b5579ad628\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/4e/3e/bc/584e3ebc-cd73-441c-91ef-4538c770c745\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/b2/5e/12/58b25e12-a7fb-4b9c-a2d8-eeed9e1e962a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/72/65/e9/587265e9-300b-466a-9c4b-2696e8db4128\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/ff/ef/ef/58ffefef-2884-4a87-a0b9-fe9e5c2ec140\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/fa/b9/23/58fab923-ec76-4a48-a58c-d5e5fac2da37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/e1/16/85/58e11685-ad27-4077-9864-bbf9d5b37fa1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/ed/dc/a0/58eddca0-a6fc-4aef-a323-47f89988013d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/29/fa/bc/5829fabc-6dc5-4662-9aae-33b67d99ab68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/66/fb/dd/5866fbdd-0c46-4b43-8403-7dc3e72d9659\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/43/e7/a7/5843e7a7-123b-4d68-8b15-e2e2671dd9de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/b4/32/25/58b43225-1bae-4b7b-993d-ed76afdd493f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/58/23/1e/5d/58231e5d-8065-4120-8ee1-c730452f21f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/bb/c4/a3/e0bbc4a3-875d-4037-a97e-fcdbaffb2dd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/a1/8d/6b/e0a18d6b-7feb-4868-9492-6c9ea538d3c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/b8/ae/a5/e0b8aea5-3f29-435d-b878-614dbfdafd46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/05/43/40/e0054340-58ad-4825-b451-27177f8464f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/af/26/c6/e0af26c6-bef9-46f5-9f70-734469314c90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/c6/cd/16/e0c6cd16-41d1-49a3-a4d9-72dd0cde9c6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/5b/9b/6c/e05b9b6c-fcda-468d-ad36-13fbe303f910\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/8e/2f/8c/e08e2f8c-2927-4451-be74-4b8a212d2327\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/d2/75/e0/e0d275e0-c5e3-4494-8830-bf0fde217afa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/8d/84/b5/e08d84b5-17bd-4900-a3b3-ada733483ac9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/e4/f4/02/e0e4f402-b164-4489-a464-14697d04c260\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/8c/45/55/e08c4555-2cd7-4f76-a862-d58d544d94c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/cd/27/47/e0cd2747-af8b-485a-b8dd-def9852aa5b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/cd/32/af/e0cd32af-7603-4bb8-9821-051c08e497f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/63/85/fc/e06385fc-a5aa-43cd-a17d-5bcd3972ef04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/b0/08/2f/e0b0082f-2561-44c6-bbb7-477a1c36dad9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/f0/89/ab/e0f089ab-945d-436b-8b40-e724b81eee0f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/37/01/49/e0370149-7bd3-450a-b46d-e63471af2169\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/82/87/2d/e082872d-0ca9-47a0-b905-563e61fd34ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/30/a8/b0/e030a8b0-ef4a-4207-8d41-2bd3b684f3a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/1b/2e/db/e01b2edb-7f24-4bd2-be18-b8406f651a3b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/0a/db/82/e00adb82-5954-41c8-a03a-222b393d1130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/75/fc/16/e075fc16-d081-4df6-9299-f19a2bbe27ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/74/05/3f/e074053f-08de-49f7-b321-3e27dfefa35c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/6e/0d/ad/e06e0dad-5c05-423b-aec8-d16ea9d7e267\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/fc/08/07/e0fc0807-049e-4c18-9342-e449ab1382f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/b5/b6/f2/e0b5b6f2-e91e-4c35-aac1-5ae09a46b811\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/1e/de/14/e01ede14-56fd-4225-8b37-c75699c8c1d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e0/8b/d7/58/e08bd758-ab3c-4ea7-a468-0b8873b0377d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/e2/23/24/3ee22324-d641-4313-8b1c-3fefc4175b5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/ff/f4/f4/3efff4f4-22e3-4ff8-aea4-3037b7a1c41c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/ff/1c/4b/3eff1c4b-abf8-4a37-98fc-bd86344f9665\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/b1/6c/1e/3eb16c1e-7265-440c-a2b1-3e36e95f0d87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/9e/47/c1/3e9e47c1-d9e2-43db-8882-126c92737cee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/92/ee/d8/3e92eed8-a501-44b0-8f2e-de217e8aecf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/95/ab/c4/3e95abc4-7035-402f-b127-60af69eb9787\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/6d/14/93/3e6d1493-7f71-4dbb-b8af-6ce5913339d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/6d/99/a3/3e6d99a3-72d2-43f1-9397-d8652d775311\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/d2/c4/72/3ed2c472-47cb-4594-ac97-548e95c2e2be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/ad/8f/db/3ead8fdb-b538-42e8-bef4-a30e50d17279\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/4f/18/82/3e4f1882-4bf1-447d-94bf-fdaed1c6d4b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/c6/74/99/3ec67499-8ba0-499b-95c1-3e0a8249d008\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/32/a0/69/3e32a069-ee65-4735-b254-86eeae0c6da2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/69/ed/de/3e69edde-5790-4df7-835b-4369317f63a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/08/ba/0d/3e08ba0d-7fb9-442c-92bf-b248e37b7f71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/f6/5f/90/3ef65f90-3695-4693-9f0e-c4295c997b7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/20/6b/53/3e206b53-480f-4413-9ee0-7a44e07a47be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/3e/f2/a9/3e3ef2a9-fd21-49b0-8f22-10c8ef1d5773\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/12/9f/a8/3e129fa8-521b-486c-9a8b-a15cd22177ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/86/bc/ac/3e86bcac-6301-4017-b928-c0f8e35e90a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/33/bb/36/3e33bb36-1cb2-4dc7-ab06-3174494217a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/74/74/39/3e747439-7d35-458d-90a7-61f37c96bb23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/4e/98/9c/3e4e989c-4663-46d7-b7d7-fd5028214441\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/ca/aa/89/3ecaaa89-2b97-49c6-92af-79acdf9d0657\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/9b/56/21/3e9b5621-4dc0-4447-a922-0be0168c4bfe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3e/72/5b/f5/3e725bf5-151e-4183-b810-3b81cd235284\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/2a/70/dc/032a70dc-987d-4898-97f4-f4d656533395\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/60/da/e7/0360dae7-75ba-4537-91aa-0ae6ca11a522\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/cc/65/e3/03cc65e3-ed8d-4f87-a00b-b56655996dd3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/12/48/03/03124803-bc94-4e92-b860-7eae924b7152\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/ed/8f/e1/03ed8fe1-0b5b-48ee-bdc5-f9eca2add19d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/c4/62/ee/03c462ee-9189-4659-af72-f5b0ca840b4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/c9/d9/8b/03c9d98b-1031-4bd3-8ffc-c4056f42982f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/cd/88/ed/03cd88ed-9e2e-4ca0-9136-4d51c76a55fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/e0/66/35/03e06635-f18c-4618-8c68-b3454ee47827\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/ce/25/a3/03ce25a3-1acc-42e2-ae17-a286eed37570\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/a0/f3/a4/03a0f3a4-ae71-48a0-bd62-cd90917c7aa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/a5/e9/bf/03a5e9bf-9d43-41f4-b7ff-932d79e076b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/93/55/77/03935577-7d71-4625-8fec-b663cecfc866\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/03/a0/90/0303a090-ddc9-4e3d-a7a8-1a95ea072a5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/e5/94/69/03e59469-68d4-4fc0-bb9e-bf70705afcb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/9b/a6/b5/039ba6b5-a48a-4837-a129-32ecdbf4ce3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/a9/06/73/03a90673-b10c-4615-b89a-58d8ee3baade\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/f0/da/6f/03f0da6f-f658-4024-9007-6972390aa4e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/06/10/a3/030610a3-0399-4f8f-a58a-8cb5a4e7441d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/03/ef/dc/19/03efdc19-7a18-4eee-aff7-04df809fb5ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/81/42/26/60814226-9d10-4fe0-baa8-cbe648f383de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/1b/f8/6d/601bf86d-f988-4a13-87d4-cda9ebe586f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/b5/99/cf/60b599cf-595d-4edc-b4bd-958b6348384a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/5c/29/3a/605c293a-fa80-44c5-b7ef-bac552f0a323\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/b1/eb/59/60b1eb59-a805-43d0-a744-4fc98ac06084\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/4d/b8/34/604db834-950a-4d5c-aca8-faa5808bd71c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/bd/6d/d1/60bd6dd1-5795-42c5-8e07-6ab1116cfd50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/7b/cc/3a/607bcc3a-b950-45d1-b79e-72ce03e1c7f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/55/27/52/60552752-fb89-4a07-a513-51b9272e7232\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/95/0b/46/60950b46-6f4b-44a4-b5e0-2e72fd6eedbb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/ec/8a/b3/60ec8ab3-73a7-4187-becd-70f2dba21733\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/a4/fb/84/60a4fb84-73a9-4370-a0bd-61d19b34f07e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/09/90/1d/6009901d-c019-47d2-ba3e-2d7995c61239\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/85/8c/86/60858c86-fb5d-4106-9442-3d95861bb5d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/ea/dd/ab/60eaddab-9592-4fe3-9c9f-95861454a243\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/dd/09/a3/60dd09a3-784c-45c1-b794-8428824fc920\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/cf/0c/d1/60cf0cd1-854a-4466-b34c-6336539a8c36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/b9/ab/9a/60b9ab9a-6f40-401a-a429-7326bd3806b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/60/fb/f5/1a/60fbf51a-0d04-4e10-83c2-f20946e02623\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/a9/0a/7c/e1a90a7c-becf-40b0-8aaf-a729d2d6a9c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/76/19/73/e1761973-0301-4a96-b412-2fdd0a4444a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/fd/a3/3b/e1fda33b-5742-400e-af8c-b3e8d105bf24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/2e/ab/83/e12eab83-5b21-4df8-a39c-239ef4de61a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/8a/1a/58/e18a1a58-0c2b-4377-a233-6cda6a55d423\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/72/29/cc/e17229cc-9269-4e71-9863-0dc4c659f1d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/04/33/a6/e10433a6-a3e9-4df1-9763-7e6078d19032\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/80/19/d3/e18019d3-1a76-4bee-b9d0-9e6bd2bfcdcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/f2/7d/4e/e1f27d4e-7ce9-42b5-abd3-8d716a0159a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/af/19/5a/e1af195a-ffed-4f9c-a0df-27c683f2455f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/b2/64/b6/e1b264b6-de19-4702-82a0-9b609964c155\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/da/f2/e6/e1daf2e6-4180-41f3-af6b-42d41cf968fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/10/71/d8/e11071d8-4b9a-47e6-9564-31e0b4eeeea7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/75/71/bd/e17571bd-a994-4b0d-a2d9-175f5e918864\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/67/48/a1/e16748a1-801f-4de8-a301-9705728b474f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/67/ac/54/e167ac54-beaf-455c-94b0-b4dc0d617179\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/67/bc/2c/e167bc2c-bfde-42cf-bfb0-d0e608116afa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/67/57/c9/e16757c9-e02b-427e-953c-d27daca8a54b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/b0/ef/f7/e1b0eff7-534e-4920-bf96-b76173f124c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/8b/f1/17/e18bf117-49a8-4d94-9650-bb44969ab05d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/2a/3e/a9/e12a3ea9-733f-4482-84b2-ed736ffb0fc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/36/e8/69/e136e869-d4f1-44c9-bf12-784d0aa4456c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/7f/d1/55/e17fd155-0a9c-4a05-a216-d531e718d1fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/15/c1/1b/e115c11b-3eb4-4e5c-8668-678189c09e98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/3a/88/83/e13a8883-5ce8-408f-8f23-23ea45ba1820\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/31/dc/af/e131dcaf-0fcc-410e-8245-4ea83a85d7fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e1/54/3d/4a/e1543d4a-968f-4c2a-8eb5-a4ffccb25fd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/c4/53/14/59c45314-bac7-4c54-be33-f64ab49a6a2a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/30/5b/15/59305b15-988a-41c1-b7b5-0456cb3e8415\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/f2/dd/4a/59f2dd4a-2b22-40ea-82ce-6512c17db63f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/07/9d/61/59079d61-e446-4a18-8fd5-1f5093c92e1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/c8/7e/64/59c87e64-4392-450a-af5c-707341696d0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/ac/de/bd/59acdebd-639d-400e-b4de-1fd53cc045a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/59/34/f4/595934f4-8818-4f16-9461-1f2e07f778a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/18/17/f1/591817f1-af0e-4049-9d65-78ae3ecb2432\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/b0/3b/70/59b03b70-6ada-4452-b278-0808343e744a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/27/d4/74/5927d474-f4e9-4064-9903-2341ae245728\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/1e/d6/a7/591ed6a7-ade6-4f6b-b667-87a85133e21c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/32/af/e1/5932afe1-fccb-4ad7-ac2f-2f383c451359\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/fe/0c/b8/59fe0cb8-bd74-4b45-be16-d164d032f59d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/bb/e4/23/59bbe423-3d66-45bf-9c9e-d059ffa2b26b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/af/f7/f1/59aff7f1-e787-45dd-8b09-b255c8927a70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/a0/20/f7/59a020f7-975e-42cd-9a8d-e02e26ef5b37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/c7/5d/92/59c75d92-230d-447a-ad93-970cc480a671\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/83/9d/3a/59839d3a-234e-4bf4-b363-24a1333237a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/ff/0e/7f/59ff0e7f-bc1c-45f8-a89e-3a0166d88368\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/9c/ab/05/599cab05-f920-4f54-93a3-5b8b899a26ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/3e/ce/f6/593ecef6-294b-42d7-bb5d-0c29cbb3a10f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/d9/3f/aa/59d93faa-e360-4cc3-bbcc-8d735dfd0fe4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/88/01/1e/5988011e-a70c-4c13-b640-2ac90c105335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/59/93/36/a4/599336a4-666b-46d8-b0ab-1d5b1caf5527\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/4e/28/39/2c4e2839-c909-4dc1-8ecc-5b8503e0e500\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/04/0a/91/2c040a91-5e12-44ea-8056-83011fc8bc6f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/8b/bc/6e/2c8bbc6e-000f-4e30-94c1-d1a59a728d8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/8a/07/ad/2c8a07ad-c12e-422f-a856-e822e78e75fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/8a/74/f9/2c8a74f9-9158-4e0e-a512-c58f72e39237\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/65/a5/42/2c65a542-0166-44fe-a8b6-919bde8e4a09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/03/bc/10/2c03bc10-d168-4545-b8ea-22ab823c041e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/9a/b2/d3/2c9ab2d3-31e3-4da4-ab25-6a36a3ffc782\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/36/9e/4f/2c369e4f-4a3f-49c1-b230-895708b4d1d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/41/67/b5/2c4167b5-2fc8-4d03-80c7-b7e79167371d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/a9/d7/a4/2ca9d7a4-57e9-42ae-8937-1d0b15cdad7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/25/92/b5/2c2592b5-6134-4fb6-a573-5c31f70b8945\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/26/fa/88/2c26fa88-d57f-48d7-86af-5ede6e605db5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/f7/22/84/2cf72284-64e4-4d56-bb1c-4f8af2af9997\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/71/60/e8/2c7160e8-de15-4553-8840-2a6eac630574\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/1f/be/31/2c1fbe31-7e47-4d6f-a2ce-17138bf96f80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/b2/50/95/2cb25095-d1e3-4fc9-a537-e1f32c713d50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/01/67/71/2c016771-c8ca-4629-8d22-66ccd959e918\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/7c/47/6a/2c7c476a-7b71-497d-a58e-6e812c9f0887\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/56/1b/bc/2c561bbc-32ba-47fd-b50e-005c7255ebf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/d9/ec/f4/2cd9ecf4-a18d-4062-a67a-a50c620e9e0d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2c/b7/8d/1c/2cb78d1c-b276-4e83-972a-d8ff1e6c1a7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/ef/b0/49/d6efb049-c9e0-4028-a043-e2ca4ca4a94c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/10/f0/49/d610f049-995e-49a6-8408-2adad81a9873\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/10/5a/0d/d6105a0d-5e23-46f2-8393-50a97a8ec257\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/44/4f/ba/d6444fba-a5f9-4470-8862-45768bcee3da\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/4c/d1/70/d64cd170-36b9-4eb1-b239-d9f02f315303\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/c7/b0/e9/d6c7b0e9-04d7-4496-a28f-476fd8279a98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/f2/88/e5/d6f288e5-9ba7-4311-b597-01ac5072ab9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/d3/4f/4b/d6d34f4b-4dad-44eb-99e4-7689d30e1f7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/1f/97/88/d61f9788-52cd-4391-a734-ac7b0636433b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/8b/84/c9/d68b84c9-9c26-4d67-953a-6169c03692ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/ff/a6/a3/d6ffa6a3-7b1e-4bff-845f-0d4aa65b6d67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/ca/9f/ad/d6ca9fad-68a5-4290-b5ee-4e802410ba56\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/a6/7d/1c/d6a67d1c-57ed-4c28-9737-ac75e63025c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/a4/7f/10/d6a47f10-1099-46bb-b903-0fd84e98d060\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/73/0e/bc/d6730ebc-0548-4c79-89b8-382cd8608ff3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/96/12/45/d6961245-5c45-441d-98bf-976426c5500c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/a0/a5/23/d6a0a523-c013-48d7-8f14-766a1594dafb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/74/b1/ee/d674b1ee-8c9a-477a-b88b-fc6b0f84a369\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/48/fd/71/d648fd71-3fca-453a-a632-9c6775d5581a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/0c/5e/84/d60c5e84-2c38-4767-b2be-9b77d39d0b5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/db/b4/a2/d6dbb4a2-7edd-4944-a6ab-86f99e3b9438\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d6/70/8a/6e/d6708a6e-4810-41ef-8b88-50681b48c737\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/8e/d9/f4/ee8ed9f4-ecad-4237-bb5c-41478fa2df03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/22/78/a7/ee2278a7-5a22-4d5a-806c-d1bb31e43311\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/24/ff/26/ee24ff26-cf47-4641-8cc4-0e5b357ddf07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/61/dc/7b/ee61dc7b-7343-47a2-893f-c4075eb88b70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/73/0a/22/ee730a22-7bf8-4124-9ea6-a397f672170f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/66/02/cb/ee6602cb-b3b1-490b-a850-a83e3be202cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/7c/1e/49/ee7c1e49-1c2d-4c6f-b272-e294fa2ad6a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/a1/05/00/eea10500-6e96-4321-883b-28e030a8009d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/db/23/40/eedb2340-b62a-4849-b6a9-c29c5f5727d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/2c/e9/fc/ee2ce9fc-70d0-485d-a126-f5ef4a793f1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/19/71/fe/ee1971fe-d569-44bb-9eeb-d64d4582e737\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/94/55/80/ee945580-6e8a-4f67-ada4-f73f05b5a9b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/5c/54/30/ee5c5430-fd79-48f0-b469-cc8e166073e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/e9/d1/21/eee9d121-5d57-48d2-8c64-fd0c86999565\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/63/58/23/ee635823-84ba-43df-8455-a82b838d1856\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/f0/59/82/eef05982-916f-47b5-a0cc-cb7b9f475803\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ee/e0/d6/e1/eee0d6e1-1556-4ddf-9008-f5710a6cc502\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/b3/d7/e8/84b3d7e8-7cfe-4e6e-ab07-1cc928e97415\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/99/03/34/84990334-46a7-45d0-ab52-2ac8d8c9fb20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/bc/e8/1e/84bce81e-d818-4e9e-a9f4-4f1907781e67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/66/f2/96/8466f296-7e11-4dfe-b157-e05efb6087b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/8d/2a/63/848d2a63-ca19-46a9-9176-5a6abd363763\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/df/f0/2f/84dff02f-040b-46fb-8c4a-c34db5805131\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/fb/d3/d3/84fbd3d3-0adb-4006-9137-bbf45ebf4db2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/0c/3f/a1/840c3fa1-fa3d-4857-9426-39a0dfb33392\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/4c/f4/cf/844cf4cf-d672-4b4b-aa18-4dbbc044669a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/ae/6f/b9/84ae6fb9-6a7a-42e1-80fb-5b510d727429\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/83/a1/dc/8483a1dc-5ef2-444f-8d26-06c4d1f2dcb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/bd/cc/aa/84bdccaa-34ef-4a7c-87cf-724450e496cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/46/1d/8c/84461d8c-1b0a-4d9a-a1ba-8869991e0285\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/71/9b/8f/84719b8f-b3df-4791-995f-571d7112b3aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/5e/5c/c2/845e5cc2-4ee7-44b4-8fa4-9c2bf7217416\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/16/57/c5/841657c5-4119-4008-9c3f-371f4d7cf565\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/b7/0d/72/84b70d72-4391-43a7-8a8f-8c9c7f07bedc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/e0/00/e7/84e000e7-9025-450d-8815-451b0ff84fde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/60/d2/8e/8460d28e-de08-449f-965b-86d9e2450c6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/63/2e/09/84632e09-3dfe-4311-99f5-70a9431b6aac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/e4/95/e3/84e495e3-be5f-454d-96cf-0aafcc19c384\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/9d/18/eb/849d18eb-8446-4368-9aa2-dbf665869d01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/67/cb/48/8467cb48-b8e7-4dc7-a854-fa62ffb9f40c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/c0/18/69/84c01869-5ace-4e00-89f9-fa743f623775\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/84/7a/8d/35/847a8d35-5b74-4a05-ae02-2ccb11bbaa32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/3e/b3/7b/923eb37b-b125-4e44-ae89-d506d4c151ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/bb/c9/76/92bbc976-bdcb-4648-9337-e6fcb2f95b3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/aa/76/ac/92aa76ac-5651-4e5c-88a8-a2e17ba22680\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/aa/2f/38/92aa2f38-2268-4a11-92ae-c8caaa89cabb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/e6/d5/6e/92e6d56e-7df7-4d55-9e46-04e8d6185b59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/2d/2a/38/922d2a38-342e-44c4-a141-7159a7010a1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/dd/95/ae/92dd95ae-cae2-488a-ac7d-58e1f8ef3259\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/5a/8e/5b/925a8e5b-e2b8-410c-bd93-febd0c73913f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/c4/a6/ea/92c4a6ea-298a-475d-9eaa-9d58efa234f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/cb/f6/46/92cbf646-3a04-4e20-aa0f-2e7f67731e5d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/cb/ca/99/92cbca99-2257-42a3-aabc-d6b03d0022c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/6e/98/e8/926e98e8-1e24-465d-a356-b3b2cb06e431\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/70/0b/11/92700b11-4e9c-4090-a563-33599655e39e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/e0/77/e3/92e077e3-a5be-47a8-8cd6-9c7864a8d98a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/c5/75/38/92c57538-6a14-4ff4-8344-d7842186002c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/1f/67/d7/921f67d7-ed00-449e-b152-6094da48c3f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/50/56/43/92505643-b6c7-47d3-bdfc-ee7bf7e493d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/da/6a/51/92da6a51-374f-47f0-80d2-df223d3a186d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/63/db/59/9263db59-0b5b-417b-858b-78b09bc1d01e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/c0/59/da/92c059da-801b-4a3a-af9e-31b9972110d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/7c/b3/64/927cb364-e58b-4987-98e1-a3d136c1da98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/a5/11/f5/92a511f5-e665-4536-8b71-5822955962c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/e5/1b/91/92e51b91-fae1-46f4-bd1c-5d6ef7073daf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/43/fd/c8/9243fdc8-c909-476d-b659-0169e1f930cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/92/07/e6/1b/9207e61b-b25b-49ce-9d76-d5eb93e40dba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/51/4e/d8/9f514ed8-4cd9-4bc9-8cfb-5dcc75a2e5ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/d9/cb/c7/9fd9cbc7-d012-4174-b49f-4a4ccdfe5a2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/56/5d/9d/9f565d9d-5b17-43a4-b5eb-f743540daa89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/7f/70/3b/9f7f703b-16d9-49fd-830d-ddf5516b4698\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/48/f7/14/9f48f714-cbe2-4a57-8ab8-70dec76d2830\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/a2/e1/d4/9fa2e1d4-9f08-4930-8945-e9e82e6d9154\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/61/ee/db/9f61eedb-d6e4-4bbe-9d82-a842f98ec179\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/b4/65/a4/9fb465a4-0ddc-470b-a9c1-9efabfc902d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/f5/3a/c2/9ff53ac2-59fc-4b0b-b7c9-fe314614c9be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/db/3e/fc/9fdb3efc-f679-4497-aa70-f01268f52144\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/28/92/d2/9f2892d2-9888-48b3-b2cf-151394d5f246\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/37/f8/e0/9f37f8e0-f3a1-4213-bfa0-562a54e564d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/78/eb/67/9f78eb67-d936-4397-b3c6-a66af07e78b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/88/58/e7/9f8858e7-4b7b-4419-bf4a-3f3afde1eb9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/d2/20/b3/9fd220b3-2cc4-4923-9135-e4546555a23d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/7e/64/a3/9f7e64a3-1305-44f8-b45b-833e5592ef1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9f/eb/b2/aa/9febb2aa-4666-48f1-9bb2-8dd0cc3f5e73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/89/cd/3a/3f89cd3a-4552-4606-8255-886ed09fe147\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/2b/6b/e7/3f2b6be7-161c-4f88-838b-2c3d1c9396e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/7d/2b/88/3f7d2b88-e106-4c53-947d-2b4092477e17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/6c/37/ef/3f6c37ef-07d3-42ba-8546-f762b53040c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/20/3e/35/3f203e35-d9ef-4999-a4f1-5fa84448e0c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/ee/b7/3b/3feeb73b-6ce4-4799-ac6f-b56ed9999b9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/7b/a7/98/3f7ba798-1628-4be1-8b3d-a264ce84ade1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/7b/6b/8f/3f7b6b8f-27e0-4fe0-840e-79b3fd8df16f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/4f/77/74/3f4f7774-33da-4466-8cdd-ccb2b00177ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/e8/09/88/3fe80988-0d3c-4d72-997f-572787b2224a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/ca/63/18/3fca6318-6681-4066-a5fd-2ac1acdd25c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/48/e0/7c/3f48e07c-c05d-4677-bc04-0e06df1ec85b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/85/f3/ac/3f85f3ac-c1d6-4b17-b588-4785479e5500\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/02/24/bb/3f0224bb-da31-4df4-be67-83edc89786fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/a9/ac/2a/3fa9ac2a-5ddf-4657-aeec-324c728822eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/10/f8/2a/3f10f82a-1ed2-4ff3-af29-95731a702214\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/10/80/84/3f108084-9577-4ce2-a317-a95a28d3f558\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/c1/b2/5c/3fc1b25c-4828-4db2-88e2-8b6bce7dd414\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/3e/c7/a1/3f3ec7a1-df23-4952-a7ab-db907bd71e84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/91/71/81/3f917181-d2e1-49c9-b31d-5dc091b72a77\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/b5/ad/60/3fb5ad60-a287-4651-996c-a03e0296cf41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/b0/0c/32/3fb00c32-8936-402a-b4ed-97f20bd0562c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/4b/f4/54/3f4bf454-4b12-4ac8-bae9-14f22f8ba56e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/11/14/3a/3f11143a-0b99-4dbb-af95-0b710ae7af0c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/51/c0/6d/3f51c06d-22b9-447d-9d8f-547318e4b116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/78/15/59/3f781559-6233-4f5e-9cbe-3f3579204e24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/62/a0/c9/3f62a0c9-781f-41be-81a9-73c41dc40521\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/82/bf/8e/3f82bf8e-abfa-41c6-8f67-d1d14a11dec0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/c4/63/e1/3fc463e1-ed26-4ffd-9c34-f93d2e34244c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/80/e8/d0/3f80e8d0-01a1-43d4-ba33-dd99277c080a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/29/cf/c1/3f29cfc1-2565-4619-910a-8d78ade7265d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/d5/15/45/3fd51545-1bf7-42d1-8960-fb7c16587817\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/a4/71/19/3fa47119-537d-4ef9-8060-6b415028d605\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/2e/09/a6/3f2e09a6-b579-4526-ab06-5fb75cb845e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3f/43/af/0a/3f43af0a-af58-4754-aa61-74baa3cbb293\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/51/84/b4/b85184b4-8a7b-4d0f-ba68-f8cef3f0bb11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/c3/07/ab/b8c307ab-ee38-4cbd-beba-db8ce100f851\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/c3/c7/d0/b8c3c7d0-306c-448f-a241-5b897f13c77e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/c9/3a/d0/b8c93ad0-9059-4f12-ba51-91064ac448c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/6e/1b/64/b86e1b64-07c6-4c47-82be-4115be91fbec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/f4/df/0c/b8f4df0c-19f0-4c7d-ba45-7511b3d6af3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/31/81/aa/b83181aa-2212-4e5a-8c2b-b2f0cea1fa7f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/73/29/f8/b87329f8-8adf-4872-bf7b-5f9a89ccbdc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/30/f5/07/b830f507-a0a1-4aa7-a306-207afd929332\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/5f/22/fc/b85f22fc-5ddb-4d20-94ac-961f7d029006\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/0c/2e/f5/b80c2ef5-8088-41bb-af4a-ca4ada3f5a9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/09/33/7e/b809337e-37e0-4b66-99e0-61ce8a8742b2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/70/9e/cf/b8709ecf-80db-4c95-aac8-e1e58b5370e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/e0/e3/74/b8e0e374-b51a-4ef4-ae8b-f7853ea063b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/ed/85/ad/b8ed85ad-6b5d-435d-ac5d-11d45f088421\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/b9/03/e1/b8b903e1-6ade-489f-99dd-ce1efcae0f35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/fa/c8/91/b8fac891-c037-42ed-923f-cc505f3037c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/a5/cf/2e/b8a5cf2e-d7b8-46fd-bffb-23d665a2b6a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/80/31/e9/b88031e9-a21a-41c4-94b1-ae81f03b38a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/97/63/a5/b89763a5-72d3-4eb7-a854-8624cd1f9769\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/4b/00/1d/b84b001d-eb1b-494a-823d-4bf25301ebf4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/39/f4/3d/b839f43d-eef6-43b1-a102-802beea16cfa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/bb/81/07/b8bb8107-e79a-44d2-bd50-fd22a3e4537e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b8/62/77/2a/b862772a-2566-47b8-8046-9ba10cdf7a10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/83/60/c1/a38360c1-58a0-4c76-824a-9d7b0f1c2de3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/6d/b0/74/a36db074-34e4-4302-9bcc-78668894a125\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/26/26/3c/a326263c-0bd6-4788-b3f5-49af730a57cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/03/88/5c/a303885c-ab4f-498a-9e42-7a4ce30dac48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/c7/55/b3/a3c755b3-a6d3-4587-8711-7d1e0f8dd484\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/4d/51/7a/a34d517a-f581-4e53-9970-c6cb58cfb50f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/07/93/73/a3079373-86a8-4abe-ae86-7beaba250b84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/65/22/a4/a36522a4-2580-425d-9f52-e4a2f04da032\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/67/93/ad/a36793ad-19b3-44f0-a5b7-8232c51361a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/6c/39/a9/a36c39a9-0663-4b85-b515-7d82cdd7ae05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/1a/8b/80/a31a8b80-1936-4168-8547-cd6b39c0f0f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/2f/1d/c4/a32f1dc4-3b6d-4846-8f74-dc50e65fb5f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/dc/bf/9e/a3dcbf9e-8bc6-447c-9195-dae17935852f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/40/4d/1c/a3404d1c-0da3-419a-bc33-aa320a7dde97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/39/18/d6/a33918d6-e50f-43e9-b3a8-7ad248fa94b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/f4/fb/af/a3f4fbaf-00fe-43fb-8456-ea316afd46d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a3/04/43/19/a3044319-cb6b-4458-b15e-35d5ccab9bdb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/ec/35/09/4cec3509-daf4-434a-baa4-63ad379beb83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/ec/29/0f/4cec290f-125d-463e-b4c6-830e57dd4bd7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/3f/69/99/4c3f6999-ad8b-4d43-bf44-ad3288fdb71f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/4f/7a/2b/4c4f7a2b-d999-4dd3-975e-6195caebcbdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/1c/3c/ac/4c1c3cac-e70d-4806-9b24-b8e381351807\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/dc/64/64/4cdc6464-6cb2-4043-a618-33e2aae21f18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/0c/08/8e/4c0c088e-48c6-4761-b46c-52a430488533\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/ae/3d/6d/4cae3d6d-1775-4874-bd2c-c6f6a6b74096\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/35/a0/a9/4c35a0a9-f0dc-43c0-befa-f303be6eb3eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/a4/83/fe/4ca483fe-3e6f-49fe-b0aa-3602192f6045\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/0e/b6/38/4c0eb638-6e49-4250-9295-d2442b41e0d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/00/cc/1c/4c00cc1c-2993-44ce-bea1-282e2c1909c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/ee/1e/02/4cee1e02-9d2f-46ae-917d-0d58db221dc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/83/5f/c6/4c835fc6-d2e8-418c-bdda-2b1b4a39970b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/ab/46/9d/4cab469d-d927-4488-b4a8-62eb191c266d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/62/34/cc/4c6234cc-70f4-4531-81c6-f76052afe335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4c/2a/64/9c/4c2a649c-818c-4c90-8d81-c2ba5e0ae144\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/71/6b/b6/66716bb6-ce07-4ab1-b55d-a40d0d3634d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/69/bd/22/6669bd22-b0dd-4363-95d8-ab248b9eb046\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/90/b7/d0/6690b7d0-e9be-47cd-8ea4-1bda0fe2c40d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/12/94/29/66129429-5d03-42e0-acab-1a08fdf3374c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/54/4b/fc/66544bfc-7049-4265-83ac-35ba44c23f73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/d5/7f/0d/66d57f0d-f6e6-4c30-adbd-90bcc7a0e90a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/37/dc/9b/6637dc9b-47c1-4b96-a0f3-afd735eb2ba7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/d9/ea/41/66d9ea41-5233-4553-b576-48ae46afa496\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/cb/e3/05/66cbe305-c788-4839-a932-1b0bb05ab7b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/cb/0b/80/66cb0b80-1a9a-47f4-bffd-d2cb899ce00e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/cc/39/dc/66cc39dc-767d-469e-a4a7-849073e7ca42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/a2/6a/c2/66a26ac2-b525-4c70-a8ab-306ee724d928\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/7a/fb/c0/667afbc0-08db-42f8-9ae3-5d56f9d58040\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/5e/b5/40/665eb540-3e52-4919-9f02-73714dc9f8aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/34/2b/71/66342b71-84ab-4d91-aedf-c7ae638370b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/31/8a/35/66318a35-a85d-475f-bf5f-2fa1cc8c2872\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/e4/27/d1/66e427d1-330a-4234-9684-7535c3c179c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/1f/ae/30/661fae30-67c9-43b9-8b6c-487b57bf2499\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/e5/a1/c0/66e5a1c0-6096-4f2e-a78a-5844a0f4288f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/5f/f3/a2/665ff3a2-d4c4-40ec-a914-33fbb1b90b8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/89/ee/0d/6689ee0d-53a7-41f2-a980-edd968a726c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/66/40/73/97/66407397-4457-4ca0-9644-dd511970386c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/b1/3c/d2/99b13cd2-c268-4a17-9608-574b4feb611c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/65/3f/14/99653f14-8452-4632-8b5f-b84ebb367e2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/85/ab/96/9985ab96-9473-498a-a52e-cac7b4b2d336\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/3b/93/d5/993b93d5-f184-4263-8595-31091ccf2782\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/d5/18/30/99d51830-e2aa-48f0-a817-c7706ec97fa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/4a/0b/0a/994a0b0a-2f89-4d2c-92d7-8ddfa3f02e8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/ea/c1/00/99eac100-44ba-43ac-a63d-721f0c295c5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/f5/f4/55/99f5f455-75dc-4de6-9f92-b08eb15d53d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/7b/15/d3/997b15d3-d0d6-4a2d-9039-1102fab7d7f7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/e0/10/f7/99e010f7-54b8-465c-94b2-792d6e9f3eb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/e0/e3/34/99e0e334-9fc1-4b0f-902d-eaf5f9fefe7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/1e/e8/b6/991ee8b6-8e2a-4c9f-ac07-db08bd8aed13\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/11/c8/68/9911c868-1cf1-49bb-80ea-edc08b7096b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/3d/15/6b/993d156b-119c-4145-bb51-90b1a5260659\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/2b/20/3e/992b203e-8ef0-46ee-9041-daa420aa7c79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/16/e1/78/9916e178-affb-440a-967d-2f48cd9daac4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/16/cf/14/9916cf14-b2bb-41dd-8b91-ea2c96e33804\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/46/b6/ac/9946b6ac-0a3f-46d7-9733-b82155c06fcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/82/44/98/99824498-9792-4d2e-9d58-7f2aa333bb9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/36/93/ad/993693ad-a275-48a6-bb11-1ed03ea7c818\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/13/3f/b3/99133fb3-7bd7-4bf2-9c3b-aacf2c9e6498\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/cf/8d/32/99cf8d32-3ca2-41c2-bbeb-a69877e09bda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/47/7e/de/99477ede-b46a-41a6-864e-c8c75752a277\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/43/a5/66/9943a566-f11c-402e-9d14-f408d4cbc0cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/bc/e5/d0/99bce5d0-91b8-49f7-9bfe-9906e39058f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/9c/6c/d2/999c6cd2-f43b-471b-834b-db3d352b50c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/3f/f6/58/993ff658-9b41-4789-942c-dab0bd99b9bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/5a/43/47/995a4347-f8b8-42b7-a011-5b24325ceefa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/99/d1/cc/fc/99d1ccfc-47e4-4577-86d1-066c48154cbe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/b5/97/3c/51b5973c-1787-4953-91bb-c0c16957da16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/17/d5/a7/5117d5a7-6efa-44ed-9847-abf5c3f78aa7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/33/dd/f9/5133ddf9-03c9-4f35-904c-608657c6805e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/4a/be/49/514abe49-4124-4a6d-b6a6-260422654380\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/2f/db/6c/512fdb6c-03eb-4430-ba09-a0840684280c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/12/44/97/51124497-6550-4547-bb4a-e4dba4689019\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/4c/da/0a/514cda0a-2a1f-403c-a249-faf48f1dbac7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/37/52/5a/5137525a-e14c-4ab8-bf20-05c26c3c3cba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/e2/e0/c3/51e2e0c3-f847-4280-a382-555e2166bed3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/e3/c5/d3/51e3c5d3-0042-4cff-bd7c-0e0e51105962\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/b0/14/0b/51b0140b-c798-47be-ae91-c0eaf9015796\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/db/7d/d3/51db7dd3-ae42-4562-9831-2b4fb8adaa71\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/a7/d1/54/51a7d154-ba9d-4d06-9554-60c8ead9626a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/af/4b/b2/51af4bb2-e02c-4864-8ac9-4ee80080e099\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/85/2d/db/51852ddb-5fb4-4cd7-8108-b362ad92e344\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/75/48/3a/5175483a-b673-4cb2-9b86-71b70ec632b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/25/bf/00/5125bf00-64bd-4e13-a8c8-7cb5b959d00d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/cd/ca/90/51cdca90-b1d0-428d-b94b-02bb950aa191\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/2c/88/70/512c8870-a16c-4f94-a760-a40240009138\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/3a/b4/5e/513ab45e-2293-4435-8703-75e2ea09bfd9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/51/5a/51/7b/515a517b-b433-49bf-a4cf-0851a9761419\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/b2/35/12/6bb23512-ad3b-4c2b-b9fd-0a9882a29593\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/45/50/7a/6b45507a-3060-45c6-abcb-d3db99fc3566\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/b0/51/31/6bb05131-a278-4950-a358-13cec1eb850e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/42/d4/38/6b42d438-238f-41bf-b6c7-140bb8f6dba7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/23/86/76/6b238676-afd3-4f6b-bac1-15b7368c9b89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/f7/11/d4/6bf711d4-5232-453d-850a-0aa509ec7e9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/97/84/20/6b978420-8482-4d2f-8d41-cbe3af724ab5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/9b/21/84/6b9b2184-baff-4929-acdb-1c270b9a6fcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/72/4f/2d/6b724f2d-048f-4a09-8e2b-5f1557e384d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/c2/1b/42/6bc21b42-2b1e-4e5b-bb65-f1f6acb45a5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/e4/39/ab/6be439ab-4bbf-4b1e-bcec-6e8d54ddea19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/0e/26/2f/6b0e262f-fc6e-4581-88d6-d94c6af8f740\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/e9/22/42/6be92242-4c8f-438f-afe3-bff494b7fe5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/e2/d7/07/6be2d707-9414-4f47-b222-748393de2bb9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/67/70/51/6b677051-a21d-4d96-a4d5-21797f3db44a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/68/c6/da/6b68c6da-aa0a-4216-a82a-9e4ac1201d63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/2e/1f/f4/6b2e1ff4-4867-476d-8edd-0ee3f45a993a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/1a/a9/84/6b1aa984-a91b-4d00-ac0a-123708400ef1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/8d/8f/c8/6b8d8fc8-1623-4105-a070-65eb170731e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/c7/8e/dc/6bc78edc-68b2-44fd-bcf5-b37569ae017c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/95/fd/ff/6b95fdff-6644-4d8b-99b8-c564bba1f82d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/6f/c5/c0/6b6fc5c0-5072-432f-b7be-092697b29d99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/ee/84/56/6bee8456-4cef-4e4d-b97f-f7a5b5ee31a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/af/48/9a/6baf489a-64a5-40e8-b57f-5b05891a2d66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/fc/79/33/6bfc7933-6b58-4b4f-8b11-6072c9d47486\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/4b/54/2d/6b4b542d-f55b-40d4-83c6-75025229fe37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/8f/5c/2e/6b8f5c2e-9afd-4207-a41a-a85f71f1ac5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/3d/10/a6/6b3d10a6-84e5-4f06-a055-b540f5d5f300\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/24/97/24/6b249724-cba3-4538-bf97-8f4985f4408c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6b/61/77/5f/6b61775f-7be8-41db-bfce-1b3313cd391c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/fb/b7/f6/15fbb7f6-0c7a-4b2d-931f-e2288fb3ad01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/7b/c7/4f/157bc74f-0eb6-40ba-8ca1-3fd6667caf9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/ed/76/e2/15ed76e2-8aca-4dd8-befe-1ab4de3ef037\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/8f/b4/d0/158fb4d0-d00e-4064-aca0-304fdb161e9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/65/96/31/15659631-b92e-4f82-a93a-df1b8a660790\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/de/e9/9f/15dee99f-e54c-436c-80b2-d1ab68b7e43e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/1d/ad/4f/151dad4f-2526-4925-8f94-4956a4b06b7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/6b/5c/fd/156b5cfd-d9b4-4142-b9be-614e9cbaf300\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/6b/33/8c/156b338c-b087-4a6d-9b32-5af1d9971e87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/50/ec/0d/1550ec0d-9ac6-42e2-a273-e6ae79229bb8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/ff/20/44/15ff2044-f3e1-4dbb-b441-cd51bb504746\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/b2/ab/a4/15b2aba4-bf77-49a2-9302-8c2cbb6f5507\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/ac/29/14/15ac2914-80d9-4af9-94a5-b74d2f3a7bd2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/26/28/e4/152628e4-cae9-42ad-ade1-6cd3d2c52e78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/aa/1e/63/15aa1e63-34a3-4c60-ac09-a0b91516712e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/25/6d/aa/15256daa-05c9-418b-b914-bb690c930c96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/17/5f/31/15175f31-c007-4e71-98b3-063c9a14ec8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/27/eb/7b/1527eb7b-69d2-4ecc-913c-22e5638515bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/b1/18/f9/15b118f9-f4dd-453a-9e29-118a75e8bac8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/15/97/f1/06/1597f106-4349-46a5-ad50-07f9976d14d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/f4/2b/fe/7af42bfe-6f52-46bb-98ed-95a5c3819bc5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/1c/88/86/7a1c8886-29a6-4a29-9985-998900aec596\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/3b/b8/59/7a3bb859-0a52-4682-b106-fa9046ce4a3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/47/7e/67/7a477e67-b704-4bb4-b549-986da7811e82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/1b/ff/cc/7a1bffcc-a870-44ff-8fe9-d4207b518bd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/5e/43/a4/7a5e43a4-8ea3-4099-a0f1-a30874eda617\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/04/77/19/7a047719-3414-466a-b6bd-e44427d2df2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/08/45/28/7a084528-4bb4-4c40-87e9-f5a2bedeb947\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/cb/3a/ab/7acb3aab-fb49-45c5-b1d0-c3a8a5d96cc7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/a0/40/06/7aa04006-b68a-40d3-9199-9cfe57d97c3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/8a/48/91/7a8a4891-98ce-402f-bc2d-8160e16e7c29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/25/e8/0c/7a25e80c-63c0-46d4-90f5-108da1c23610\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/95/f8/d2/7a95f8d2-5e0d-462f-9f52-7245ca32388b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/76/fe/ca/7a76feca-6de3-47f5-9c46-1871d956d147\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/44/9b/87/7a449b87-a63f-42a8-86b9-926a7728f334\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/49/26/af/7a4926af-4ab4-4eaf-8b09-ec9db94a440f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/6e/da/c9/7a6edac9-418c-43b7-9b25-36cd852fbe84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/f6/07/b7/7af607b7-7617-485b-b5cb-4a30c61d1d10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/d4/12/de/7ad412de-1353-4ab5-a67b-22e061bb93e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/50/45/9d/7a50459d-5d0a-48ca-a375-688653ffa81d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/4f/1d/62/7a4f1d62-b632-4946-84c2-98377effd075\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/80/0c/ad/7a800cad-b119-4b00-b366-e88c6e87a2bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/cc/1f/77/7acc1f77-0f86-4dbf-970e-d4d9db41a76a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/aa/4c/eb/7aaa4ceb-357c-45f2-b576-7082231d2de7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7a/13/a1/1e/7a13a11e-0920-4b6e-a865-eff2f51d47ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/f5/3d/f8/70f53df8-eb86-450c-9507-bd1d8e534e2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/b8/83/f6/70b883f6-d9dd-45cb-94db-311ae872e0a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/1f/56/95/701f5695-e695-48ec-9758-df6ab7882158\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/65/d4/22/7065d422-cf07-44bb-868e-79c287b9da22\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/c8/dd/68/70c8dd68-15f5-4765-862b-1c6a49da388f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/29/8b/8e/70298b8e-e0e8-4af0-98d6-2ff02004fbff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/29/ea/26/7029ea26-950c-45f5-9713-720f8f0e459e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/40/c9/6f/7040c96f-5a25-49f7-8575-81d8c0817cc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/bd/1d/f4/70bd1df4-e8e3-4b10-b02f-a41eb825c360\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/1d/0e/8c/701d0e8c-c032-4772-b568-497eec76c26d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/b6/bc/c7/70b6bcc7-8841-42f8-84b7-c1f147f01f44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/fd/0d/3a/70fd0d3a-d372-4f92-bd31-2e12debf74df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/4f/e4/61/704fe461-823a-433b-bedb-35eb503525fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/9e/db/0c/709edb0c-9300-4d14-a055-0419dd467fe9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/d1/48/42/70d14842-8dbc-48b5-aad7-211817ba232f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/d1/2d/5b/70d12d5b-7836-4929-8d0f-93a09589c58d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/f7/ca/63/70f7ca63-a0f4-4da3-8210-e42a2971ef1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/4d/72/9d/704d729d-e6b6-4eea-920e-24e1407b0ecb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/97/f7/08/7097f708-e6e9-4bd7-92b3-2fd221162564\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/56/86/37/70568637-ffb4-4253-9916-9153ac662fdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/2c/79/0b/702c790b-a23c-4f69-bca3-ec52e7e2a592\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/8e/eb/02/708eeb02-7ef5-4941-9d39-6cdaa75c2348\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/9a/c4/88/709ac488-9e71-453d-9d89-7526d9d8028b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/f4/7d/6d/70f47d6d-e6ee-4fdc-a684-14ccb2a4065b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/f6/b6/7d/70f6b67d-8c12-4303-a875-b5bd87ee2aa0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/08/4d/05/70084d05-8f83-4acf-8192-52cad902203a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/b7/d8/b3/70b7d8b3-b899-42b0-b250-893429d0c2cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/4b/0f/53/704b0f53-3e13-4994-929b-6481a3c4b709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/aa/38/8c/70aa388c-255e-4575-8de6-3d8ffd8d94f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/9c/24/37/709c2437-7cd2-428f-9b15-8fcba175f5d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/ec/f1/92/70ecf192-cb0d-4a17-90fe-27fbb3634006\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/b4/3c/36/70b43c36-baf2-42ec-b613-5b0862626413\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/70/90/0e/12/70900e12-73bc-4d13-81c0-da7afb7bc387\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/52/53/e7/6f5253e7-eaab-4713-8525-dd9c4457adfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/10/85/c5/6f1085c5-4c40-4705-bb85-eb6bdbb56ba1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/e3/43/77/6fe34377-6189-4778-a17f-bb7127132c61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/8a/3d/15/6f8a3d15-4f11-415b-9d1d-e4adc710f749\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/f1/ed/bf/6ff1edbf-e870-4343-b307-6ab5ea033a8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/fc/24/68/6ffc2468-6713-47d6-9ee7-eddf2e3b1c29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/5a/cc/05/6f5acc05-5107-4e11-9449-8acd0e98feeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/28/62/63/6f286263-3bbf-41d3-985d-21cb9d413b9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/07/82/d3/6f0782d3-4e18-46ec-ba7b-a9b4654a1f1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/74/04/7d/6f74047d-5853-4a74-b7e6-f8e72b962c0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/f3/40/bd/6ff340bd-8a75-49a7-bad8-b69af1385000\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/71/1c/c7/6f711cc7-5f0d-400c-92fd-dc765fbdc0a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/4c/01/db/6f4c01db-23ce-4357-8508-9444b574784a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/cb/74/27/6fcb7427-1257-43da-965c-8ad768b6a0cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/7e/d1/64/6f7ed164-d80e-4a1f-bd44-c526e3d7408f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/d4/4a/20/6fd44a20-ff26-475b-9c3a-194cd5d322c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/20/22/b3/6f2022b3-2b3b-4351-8219-7672d76335a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/bc/fc/a8/6fbcfca8-5d25-4963-82b3-e226c36a6f5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/84/6c/e7/6f846ce7-3752-49a0-bc06-8e957ad73f85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/c2/e1/c6/6fc2e1c6-c670-4e0b-92fc-9f2df7659f4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/e1/67/23/6fe16723-dace-4c07-8887-91d68ac12d6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/6f/e1/77/e6/6fe177e6-960a-4e0e-bd73-80357188528e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/29/41/2a/2329412a-481c-4e38-a43d-754bd0436356\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/74/d0/89/2374d089-a892-4422-afe5-08ab3a81defc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/cb/4f/30/23cb4f30-e9df-491e-8651-6f63b3e4a730\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/eb/b8/5c/23ebb85c-d416-4ac3-bda3-bf58e8522a11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/1c/7a/4a/231c7a4a-4578-4dc2-9877-109add3f3342\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/b7/af/92/23b7af92-f16d-4417-afc0-f92d84f1005e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/01/df/72/2301df72-6af1-43c7-8ef7-61d53f8b5811\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/f9/f3/64/23f9f364-0035-4078-874f-a162ebff05d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/f0/03/23/23f00323-8ba6-4398-b76d-20c332d78018\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/23/df/07/2323df07-b291-44ff-95ad-a6730f14ec3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/23/48/b7/232348b7-c9ca-409c-9daf-6f874228d036\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/fb/96/a2/23fb96a2-a442-4dcd-b38f-716b780d654f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/68/74/98/23687498-6013-4c5f-9765-fd47331fd465\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/88/cf/20/2388cf20-b4db-4f5b-9983-2d8fa2bd8504\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/ff/ab/44/23ffab44-7721-458a-a86d-a65a7166f980\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/77/2f/e0/23772fe0-989b-4685-8c69-4c826c066386\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/70/fb/a5/2370fba5-0ec0-4f74-bbd8-b982a5d0e20d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/20/89/da/232089da-b86c-4916-b877-d47fb2f9abeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/61/e6/3d/2361e63d-dc44-4ad6-a4ae-de577dc50a23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/c9/63/ea/23c963ea-3667-4e12-af5a-7f61c2532298\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/e0/c9/99/23e0c999-0d19-4e88-aec0-d04469198d87\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/36/56/cf/233656cf-85ac-4551-812a-7f6ede8eca3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/ac/b4/cd/23acb4cd-aad8-4853-a070-576e3722fc58\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/bb/8e/ba/23bb8eba-52c8-42f4-9e11-86c0b2db2882\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/fa/5b/8b/23fa5b8b-1a0e-4cc8-be6a-b5af8f7b6dcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/2f/50/57/232f5057-678f-4653-8202-f08e3aab214d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/23/53/2f/ab/23532fab-d888-4e2b-a600-a755762c7f2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/72/bd/3e/af72bd3e-fe04-441c-9197-b9b4ee451e5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/92/73/aa/af9273aa-21eb-43b8-bbc9-09e8b270e2dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/92/4d/0e/af924d0e-d248-4cda-8bf1-34cd160932ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/20/58/93/af205893-dc1a-4fd6-85bb-a6dc9b4a7592\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/ee/c4/c8/afeec4c8-e70f-4a8a-9edf-badc970da490\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/07/3c/1a/af073c1a-8cab-46df-ba63-dc4e09c9aeee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/84/a9/a4/af84a9a4-d74e-4c9d-9032-e6f1d5d56aa5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/a9/a7/b5/afa9a7b5-91e6-43f0-a143-1622e231fcd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/ba/25/ab/afba25ab-4852-4d47-82fb-e756714842df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/f9/54/71/aff95471-50e1-4f62-abc4-4f9a9a611c11\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/1c/8c/9e/af1c8c9e-4eb1-418a-8546-6670d3f13618\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/cb/6c/d7/afcb6cd7-499b-4b60-b75f-7524e37a980a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/05/31/c8/af0531c8-bddc-4b14-a402-0245400f25a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/6b/8b/db/af6b8bdb-fa39-4601-89ef-75ff860c5447\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/bc/3c/32/afbc3c32-aa4d-45bf-a103-8b725348def2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/29/02/29/af290229-105c-4d31-a665-659b18bba480\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/fb/66/12/affb6612-ad97-4e44-897e-0c54b6bbe1f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/94/3a/cc/af943acc-8e5b-4aa3-8d92-004fc2251897\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/c7/d2/94/afc7d294-e5f7-41dc-9e82-4946bd03b79d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/0a/0c/a9/af0a0ca9-2285-4be5-b488-2d46ecc1bbb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/3d/fa/02/af3dfa02-7e48-40d8-9008-5520d775fee7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/ac/df/da/afacdfda-69d5-41f1-9bef-3835a27dffff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/48/f2/37/af48f237-c020-4204-b568-23c9a6b80634\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/af/ad/2b/ed/afad2bed-f7c0-434e-8838-6b14111ec62e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/0a/09/22/da0a0922-d1eb-43af-a49d-6918b764da50\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/43/36/6c/da43366c-935f-40c6-88c5-de2cc8c0621e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/43/50/e0/da4350e0-dac2-43a5-8dc5-50ae8d17849a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/6b/a3/89/da6ba389-75cf-44e7-ba31-f44e3b3304a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/88/09/d5/da8809d5-14b8-49a3-b532-51947c3a998e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/44/af/9b/da44af9b-e97c-455d-88f4-7e526f6b806f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/df/c1/be/dadfc1be-d25d-4238-8608-0802e6db5672\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/9b/ca/14/da9bca14-3a07-4ad7-85cb-926514518116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/36/1d/74/da361d74-e020-4912-94a8-0352ef4f2f4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/37/69/a1/da3769a1-2ab5-407d-aba9-0949f4fa8725\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/28/9d/71/da289d71-0c5f-45a1-8a74-2ac84a542ec4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/d7/d5/c5/dad7d5c5-3b91-4920-b537-82c03a4c9dac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/f2/44/61/daf24461-1633-46af-820b-afe60c65895e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/55/7e/37/da557e37-483b-47ab-8c78-9057cb2547e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/56/c5/35/da56c535-5433-42bb-87fc-62f68b030e21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/42/c7/45/da42c745-ce23-4f4e-bd15-c2cb3cc5f6ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/66/e1/de/da66e1de-6867-4ddb-8143-4ab4210920b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/12/1d/4a/da121d4a-94f5-4d3d-92d4-be1fbd55ce34\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/16/5e/f8/da165ef8-5e36-46bd-afb9-219ea294073c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/a7/09/96/daa70996-a54c-4291-beb3-9b1437d57554\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/84/5e/a9/da845ea9-6734-4f07-bea9-d9cdcc861945\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/72/46/37/da724637-06df-4427-ace3-4f961874cdde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/e3/94/c1/dae394c1-4ba5-4bce-8311-aa14bcefd5e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/89/db/7f/da89db7f-12a2-4598-a7f6-b9179de6c65e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/77/09/bf/da7709bf-f075-4182-b9c4-bbace2285e3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/da/e0/78/4f/dae0784f-a06f-460b-95ce-aa4606ea4800\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/dd/f7/9f/c8ddf79f-71cd-43e0-b782-b4809c405ad1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/fe/7a/a7/c8fe7aa7-5e92-4480-a723-3fa9b1394da2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/96/1b/b3/c8961bb3-b859-4982-b92d-3793390687b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/53/3a/a7/c8533aa7-902b-4f8d-92d0-6ecf2e2f0ef4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/4a/93/c8/c84a93c8-9e7d-476c-bb83-b61d4a9dc6eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/4a/ef/1c/c84aef1c-75c0-401c-a9dc-e7c885295e94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/95/14/4d/c895144d-cd94-4f87-965f-954dbf19900a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/99/7f/9a/c8997f9a-fe6a-4f60-b832-62c01186db84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/99/4a/12/c8994a12-9475-4ac0-a381-b88346dee2d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/87/0d/8f/c8870d8f-a01f-4ab0-9c82-ba7ad8e774e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/65/cb/3f/c865cb3f-fad7-4b7a-bb7e-49e343a1cadb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/82/0a/e1/c8820ae1-2de1-449b-a359-fae4d4d2ff9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/cc/04/83/c8cc0483-1847-4102-b7f6-8fe9b399f080\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/07/ce/dd/c807cedd-f0c0-446b-b6b4-4495c85d2d86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/94/6d/76/c8946d76-aeab-4103-a13f-896d0fa09bff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/17/51/84/c8175184-2f28-43a3-ae0c-660ea3c1259d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/f7/fa/85/c8f7fa85-a98b-4d91-b0b6-3f25b2a4c324\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/f3/b3/cd/c8f3b3cd-7f5d-4f51-917a-55c8054f12d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/b6/58/d1/c8b658d1-4712-4790-8f37-1084ce87d83c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/32/1a/8f/c8321a8f-319e-4b7c-8bf8-b6ad3c301b0d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/c3/24/0c/c8c3240c-1e43-463d-b071-55858aa88a1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c8/69/8f/ba/c8698fba-b15f-424b-abca-9a06243a9906\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/54/2b/e8/75542be8-3a0d-49bd-ac19-f2d287393f14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/da/c5/7f/75dac57f-1d32-43c0-a5ab-8eb065ec4baa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/ad/36/25/75ad3625-0e7c-4ebc-a8bc-ad8f8cf247f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/3e/38/3f/753e383f-a1bc-405f-9cd3-85895bfba2e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/05/49/26/75054926-486b-406b-b92b-968c7cfa7e37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/83/cf/31/7583cf31-e4f4-49b8-87b3-7e4e921afcb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/a9/49/08/75a94908-38a2-41f1-b20c-778abf34af66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/39/76/42/75397642-f05e-4e17-8180-41dfc03ad7e3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/8b/fb/70/758bfb70-750c-4178-97ab-b1b65c169348\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/86/64/44/75866444-4f68-4506-98ed-c3e5cd79043f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/86/5c/30/75865c30-7375-4179-b8bb-22edd3ade101\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/c1/e3/25/75c1e325-f3c0-4d79-947c-79cd2d2a3dbe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/c1/e9/8c/75c1e98c-ee59-4f9f-a07a-aad1f5165475\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/13/ef/09/7513ef09-54bd-4a59-82fc-5b15b5f7948f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/51/43/3d/7551433d-0222-4d15-888b-bcd4bb44b30d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/75/ba/0a/7575ba0a-65f2-41a3-b6f2-d601f2ff9cf1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/0b/c8/fc/750bc8fc-9953-4f73-bf60-37c162724c43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/2e/66/4c/752e664c-61ec-4f88-8aa1-d2c70bd5afd3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/67/0a/ef/75670aef-3cc2-44ff-967c-3303008d3046\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/06/56/b6/750656b6-5f8e-4f08-8da1-776802cc827c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/79/44/ed/757944ed-486a-482b-9fda-cb5f53fde69b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/e5/e8/94/75e5e894-7b6d-45d8-be60-0cd22ea53f80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/be/18/8a/75be188a-5dbe-4804-938a-8adccd9543d2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/6b/a8/ca/756ba8ca-8e1f-4c2e-a912-178da1c73f79\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/fb/bf/50/75fbbf50-48c6-4989-b4bb-ef22168018f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/98/4a/2f/75984a2f-6cf5-4e51-a092-05d17e3dcc3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/4d/b8/a4/754db8a4-91f4-4d03-9a7e-3ff289fe553b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/f8/33/6b/75f8336b-27c4-4b4f-81d0-1dbb746ccf10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/97/62/66/75976266-4d58-4161-84df-27767e748b1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/95/df/85/7595df85-0fb3-4f23-801c-2d575e0741d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/3f/dd/58/753fdd58-5c0b-4d37-a85b-d6b4dfa4828e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/5e/2f/79/755e2f79-c186-44a0-b384-d91f4884534a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/0e/88/e7/750e88e7-f5f8-4e30-b286-9917ff24c594\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/0f/6d/e5/750f6de5-3898-42cd-ae57-512a6b3394e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/e6/2b/cb/75e62bcb-fa19-4825-9c9f-957064f2c4bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/92/3f/83/75923f83-05eb-4f38-822d-b7670e42754c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/75/72/42/29/75724229-08bb-49f3-b99f-7571c223c365\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/d0/46/b3/d5d046b3-26d8-4d86-b5f8-826dd6e43d57\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/d0/ad/60/d5d0ad60-f4b4-4f95-947a-83fa7fa6a0b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/ce/5a/8d/d5ce5a8d-b117-465d-9d0a-da920ede4ac6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/ce/e3/c4/d5cee3c4-c993-49ed-a5be-a21b125e8e3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/fd/d8/fa/d5fdd8fa-a20f-4292-aec0-1a246e8c78bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/cf/4c/20/d5cf4c20-673b-4649-939a-b6b140a11e7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/9e/e3/7e/d59ee37e-0644-4a68-a98c-74b9a0a339f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/a1/b5/91/d5a1b591-3144-4afc-9dd7-30c0898dd404\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/a1/98/21/d5a19821-23ea-409f-bf65-166c55b5edb4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/68/b0/88/d568b088-339f-4e50-ac0f-71993aaddbdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/0d/a2/8c/d50da28c-3ff0-4cec-9c2b-a636df5f74c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/2f/82/25/d52f8225-6dcc-432a-8b9d-8a73b798e1a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/81/c0/44/d581c044-1a93-450c-b592-f6cd7cd8a8fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/e9/c9/85/d5e9c985-402e-494f-8ab8-7c46bb60adcd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/64/e5/a8/d564e5a8-7031-4e45-aace-8374d4eb1b3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/f2/e5/1e/d5f2e51e-fdfb-41b5-b2c5-6da11bd4658b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/01/45/cc/d50145cc-6ccb-417d-a15a-efe9d708260f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/01/77/25/d5017725-2c30-452d-b1d8-d182e571e1a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/bb/ee/cc/d5bbeecc-2cfd-4697-8d95-e559fa5446ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/22/f6/69/d522f669-aaf8-434f-91f8-bba8642a1b81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/09/3f/f5/d5093ff5-62f4-43eb-bf9b-1f6463ae4a3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/3b/d0/a5/d53bd0a5-5b54-414d-9b56-440d971c8785\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/de/70/b2/d5de70b2-87b6-4014-ab74-0598f069ea2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/e8/80/f8/d5e880f8-38d7-4bbf-b629-5b135a5838c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/17/f9/e5/d517f9e5-83a5-48f4-9abe-45f16f832920\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/c1/f3/68/d5c1f368-5312-4e41-95c8-a141a641566f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/da/f9/e3/d5daf9e3-28b2-47aa-ba53-7e0e94c1b24f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/c7/94/73/d5c79473-5046-4d13-a60f-27bd7d65a4e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/96/0d/d0/d5960dd0-2fc8-4293-979f-7db05c346428\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/02/97/79/d5029779-12d3-456e-9cc4-0087f1ae8f21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/d5/8a/5d/12/d58a5d12-9c3a-4607-b689-41af895630cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/48/a2/86/f048a286-27cc-45e4-b67a-b97c80f8672f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/4a/be/9a/f04abe9a-ddac-47b0-8899-cf389d0b6553\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/1b/d9/71/f01bd971-367d-4656-9df9-36242c8695c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/1b/e1/08/f01be108-3bae-410e-b07f-dd5851c49766\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/1b/97/70/f01b9770-680f-4c1d-b7ca-11cf2670e763\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/05/bf/66/f005bf66-0eb0-49ae-987d-571dcc5a95c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/92/49/3d/f092493d-6d56-4eb4-8270-c8ae4b36659f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/77/13/75/f0771375-f244-40ec-925d-a41be927f920\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/35/73/a2/f03573a2-9052-4b76-af07-1375c5dacbb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/35/b1/25/f035b125-0792-4d50-83df-bac3696a0f16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/d4/b6/bd/f0d4b6bd-33c6-46fc-b7a0-1c3a68aca6c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/13/9d/ed/f0139ded-7d2f-446a-934f-185fd9e6cc10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/eb/13/f2/f0eb13f2-b8ce-4865-ac1a-04026a1b2980\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/30/f9/cb/f030f9cb-97a7-485f-b6c8-1de492ad6ced\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/ed/9a/5e/f0ed9a5e-a1e8-4003-8774-612545d85a05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/9c/a9/b7/f09ca9b7-39c2-43f9-9f52-348906157998\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/57/91/0c/f057910c-6016-48a2-8334-13abe14f092e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/75/e3/0f/f075e30f-4534-4db6-8942-1944c1a1f64d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/aa/93/2d/f0aa932d-7014-4c98-b0cb-bc9cc80354ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/3b/3f/63/f03b3f63-6a28-4db2-b06c-089e77db7111\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f0/bd/cb/fd/f0bdcbfd-04c0-4a82-b961-5697d121fc6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/5f/39/63/3d5f3963-cabf-47e4-a6d9-604c6caf16b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/5f/38/dd/3d5f38dd-58f9-4f84-8955-73179a03679a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/80/83/bc/3d8083bc-62f4-4d01-ba86-d01071ff6f1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/6c/dd/cf/3d6cddcf-ba8f-4a44-b66e-b66391a9261e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/a2/c4/ff/3da2c4ff-8ba8-46a6-a83b-2b021de769ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/21/39/c7/3d2139c7-d72f-4db9-bfa6-a53c87d1210f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/21/8d/e8/3d218de8-6ce3-421b-bd09-2ec700a2ff43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/be/ae/fe/3dbeaefe-3c15-4f69-ae25-68226f4e44ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/be/3e/da/3dbe3eda-1023-4e26-9aad-1bf32582581f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/62/92/9e/3d62929e-de0d-4889-aa2c-6cbc271a8f92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/bc/8e/67/3dbc8e67-44e6-4f45-bbac-11b1040dba0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/de/d1/cc/3dded1cc-5f0b-4cca-91d0-cc1f0284b011\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/43/5a/be/3d435abe-1933-4ee5-be03-1e9d39440e59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/5e/f3/89/3d5ef389-35e7-49dd-b1e3-cb855877a727\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/91/11/cf/3d9111cf-0492-4ba2-b743-2ef56b90af04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/69/1e/43/3d691e43-e37c-42d6-b160-99609e0b666a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/81/ef/2a/3d81ef2a-5e85-4a2a-b3aa-532d44464b5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/5b/2f/a2/3d5b2fa2-d449-4d03-91ed-8a09693217bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/29/dd/aa/3d29ddaa-7935-4614-b65d-aabc4a3ec289\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/0b/b3/ca/3d0bb3ca-584b-4f5d-965f-5522f841cf62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/68/66/6e/3d68666e-d35c-4b71-92ac-22a3e9b6010c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/97/12/32/3d971232-fe3f-401f-8768-bfaf0f88b8e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/20/a1/50/3d20a150-a743-44e0-ac0d-fed30ef49596\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/da/48/70/3dda4870-711f-4659-98ae-03f38bde4286\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/38/17/00/3d381700-59e9-4b68-83da-719dcd2eea6f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/3d/b6/7b/bf/3db67bbf-d957-466a-b2f1-215330113045\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/21/28/9b/cc21289b-cc92-4e1c-a00c-760431d9736d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/21/a1/6a/cc21a16a-02a3-402c-8acd-8737e35f0453\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/21/ba/b6/cc21bab6-1372-4b28-9592-750a9b80a530\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/49/4c/80/cc494c80-fc6f-4676-9a2a-762104dd1692\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/24/a5/01/cc24a501-20b9-45f9-93b6-b3507b68ef7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/7a/1f/55/cc7a1f55-d9aa-4997-a389-c15fd1350b9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/9b/7b/71/cc9b7b71-90f1-4717-acfc-89e21dd25a62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/08/3c/d0/cc083cd0-46f5-499e-85f4-a8a547aee937\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/c5/29/23/ccc52923-7172-46c8-8718-461966015b86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/8f/9c/05/cc8f9c05-0ae5-424e-85d7-5701f5da8084\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/b7/4d/13/ccb74d13-b37a-4915-9895-1d2c80fc32a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/26/91/6d/cc26916d-274d-49b7-b3f8-78cd1bcfdfca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/b6/ec/1b/ccb6ec1b-a26e-47e1-a9f5-e27b8d3f6140\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/09/50/5b/cc09505b-3519-4ea5-9d53-39e7becad49a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/ca/47/e7/ccca47e7-dd2c-4e0f-8928-d3f2d639a286\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/da/6c/f6/ccda6cf6-d5fa-4c55-aa84-76d84cf294cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/a3/f7/a5/cca3f7a5-6058-4451-b1a6-0e4e83050ef3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/89/58/fc/cc8958fc-3e0b-4ebc-b5d3-47d61c649629\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/7f/96/61/cc7f9661-23d1-4446-bae9-801fa599e1ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/b1/7d/97/ccb17d97-6808-4450-929f-599fda854018\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/00/d2/f3/cc00d2f3-fc9d-487e-97d1-3cf08bc11d7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/f2/52/15/ccf25215-8eba-46de-86d5-fddf0b383d5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/87/ef/3b/cc87ef3b-4ba1-4cfd-8f46-567d082ba942\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/46/cc/6f/cc46cc6f-ecd0-4192-911f-7930c88ba916\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/90/b9/1a/cc90b91a-2b57-466b-97dd-e61597a39c76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cc/34/b9/62/cc34b962-528b-49fc-8b21-0698109a6406\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/17/ca/7b/fa17ca7b-9e03-4b4b-9b5b-52a13f1e04df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/ae/7e/ad/faae7ead-e8fe-4e9e-81ff-a3a728f7115e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/8c/86/92/fa8c8692-db62-45f7-9e95-7cf996bca573\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/78/23/02/fa782302-b288-4b08-8e99-72ce656e105a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/b7/58/89/fab75889-320d-47f7-9a9e-f0671e9b9c7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/49/a2/34/fa49a234-0762-4c1d-a7a0-3ed7ed821012\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/e7/dc/04/fae7dc04-8a31-490f-b105-5cdfb2d9aa6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/e7/e4/f3/fae7e4f3-fd46-4128-874b-98487d8de49a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/97/b6/f5/fa97b6f5-fdf7-4ca1-839b-70d6d56c6dd0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/d5/0d/35/fad50d35-701c-4a55-8c6d-715be68dc981\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/90/8e/a9/fa908ea9-b486-43b2-9eee-c33ffae082c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/90/b3/7f/fa90b37f-ebb4-4aa6-99a4-599683af7409\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/3c/21/39/fa3c2139-36af-4621-a07f-25ae637ef67c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/26/7f/0f/fa267f0f-e5b6-44fd-ad79-68034aba8e7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/9d/d9/73/fa9dd973-e6ed-4646-8735-3f055967dc9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/3b/36/f7/fa3b36f7-b98e-4f1e-91d7-fb779f868bf7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/38/f3/a7/fa38f3a7-373d-4921-85cc-d98097c6c0a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/b0/99/cf/fab099cf-6164-4330-8c4a-39caa63d766c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/f0/43/ad/faf043ad-049f-4018-a6ef-46a0f40cd020\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/82/27/91/fa822791-d1a4-46eb-9843-48d9ea365e9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/63/30/7a/fa63307a-b791-440d-966c-e3d900c68d61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/a0/4e/a0/faa04ea0-bfd5-4c55-8ebf-f06b1744f4db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/9c/6e/d3/fa9c6ed3-6377-4b36-bcb7-ee9788de4c31\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/dd/45/f2/fadd45f2-92b3-4f81-878a-ae2fb7bfa5f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/03/07/af/fa0307af-2930-491d-bd03-b2b1e97def62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/24/ac/68/fa24ac68-ef2e-4f8d-bb80-f8fc314342e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/51/9d/c9/fa519dc9-3030-4f01-81be-b1d34681e658\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/ef/09/f1/faef09f1-ae62-4c58-8a57-4af99d54dc12\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/6d/13/2b/fa6d132b-c40d-4e1c-873b-efd33de4733b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/ad/fe/33/faadfe33-7f9f-430e-8e27-76693fa3ce5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/5c/53/1f/fa5c531f-11a1-48a9-9f26-e43197a04f77\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/80/7b/3f/fa807b3f-381c-4229-9073-8b10b8d0e727\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fa/55/0f/10/fa550f10-5cad-4f90-a879-44a28f7a5db3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/27/b5/24/9b27b524-d1c3-477b-bcb2-218385ff24a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/b4/d9/79/9bb4d979-6cff-4ac8-bfa3-60fc42c49be0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/42/a2/76/9b42a276-cc5f-424f-bc87-5d4b865948f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/3b/08/be/9b3b08be-620b-42fd-ac36-5ded15e06a25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/f9/52/12/9bf95212-025f-436a-a635-ccbc27a37ef8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/1d/d5/a6/9b1dd5a6-57b8-4b7e-a202-739373736cc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/be/3e/b0/9bbe3eb0-c925-459f-a8c3-42c5e8411ca9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/ee/ce/13/9beece13-2a8c-4e33-8a4c-997f4b867618\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/14/cd/ec/9b14cdec-f1e7-4bde-8511-69632fbc6ea5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/0c/08/10/9b0c0810-a2ea-44e6-98cd-bab3f8224577\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/d0/f1/38/9bd0f138-d388-4394-8b9a-30c6538aae2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/48/d4/17/9b48d417-72c6-4f5e-ad01-72be47e46992\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/36/10/db/9b3610db-d3b9-43c7-adbb-26ef49624df5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/24/77/9d/9b24779d-71bb-42d4-b036-2539ead2c401\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/19/aa/52/9b19aa52-3e2b-43e5-84eb-bbae8833ca30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/29/ab/7d/9b29ab7d-be0f-4da4-b6a6-527d982def6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/ab/b3/2f/9babb32f-f1f7-4d66-86ee-c5fefc083625\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/53/d7/1f/9b53d71f-5194-4634-a5ba-cd104abacf30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/63/bc/fd/9b63bcfd-e515-4b13-bdc3-12975a23f229\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/2b/04/40/9b2b0440-bf1b-4fff-9b58-f0854445beb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/75/3a/70/9b753a70-2b2f-487c-b5c7-7086af752bcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/6e/28/6c/9b6e286c-c15c-4724-bfd0-b30687baecaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/c8/0c/df/9bc80cdf-cd51-4376-ab52-754d5318d44a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/1c/89/0b/9b1c890b-94ce-4d16-94ff-75b99b91f296\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/9f/b9/4b/9b9fb94b-ce4e-4c6e-953c-055df8745665\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/9b/33/d7/bf/9b33d7bf-c7ea-447e-b14c-ac236c6086ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/3f/35/22/f43f3522-8d68-4c94-8173-788fc044983e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/fd/ca/9b/f4fdca9b-8124-44af-b481-00773342bb5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/46/49/34/f4464934-4dc7-4a67-bfe4-56e4622bc490\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/46/70/3d/f446703d-4d44-4fd3-bfb4-907d53e73f3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/01/f6/db/f401f6db-729f-4b56-bfed-fced6e2c9481\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/88/68/4a/f488684a-b303-4f87-b931-6d009438e971\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/49/07/db/f44907db-d40d-435f-ab91-17ee31d5fc86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/b3/a7/bf/f4b3a7bf-9711-4ad0-b38e-7847dd52fadf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/35/47/cd/f43547cd-df33-49d1-adf2-925e3d391783\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/e7/1f/30/f4e71f30-471d-473e-b32c-0d62c067c1b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/c5/e2/a4/f4c5e2a4-00fb-41ad-88df-c9c9c06c7e60\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/11/5b/22/f4115b22-5a02-4f1b-aeaa-3be69bb8cab6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/8a/05/3e/f48a053e-1446-45df-99c0-1c3cf20cb9cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/e0/98/38/f4e09838-f2c4-481b-b94b-fd8c4d4df0c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/aa/a3/16/f4aaa316-7528-4278-aa35-dd051bf3d08e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/00/db/5a/f400db5a-23ab-44b4-bf77-b15cc56184ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/0f/d7/38/f40fd738-3277-4d0c-8b08-a780ede8b455\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/0f/5a/ac/f40f5aac-e39f-468b-9ddd-6e6bcccbe0dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/08/0a/2f/f4080a2f-c473-42e9-9d75-7339de61603f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/06/ec/76/f406ec76-1a31-4465-90a3-c45f98ff84b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/25/c9/2a/f425c92a-3e5c-4be7-a30b-16f22deeb821\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/24/e2/16/f424e216-1293-4f1d-8388-5f3b890f5cfb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/04/2c/6a/f4042c6a-2fe3-4744-90e2-88aad0ef4963\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/8d/b0/d7/f48db0d7-5337-488b-9a38-7e5af48d58a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/65/ce/a0/f465cea0-1d1b-4e49-8971-9307f54efd9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/f4/78/b6/63/f478b663-0a50-45f3-ae81-576f6b6f63a1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/b0/9c/71/46b09c71-814e-4a88-ab7d-edefad9f54b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/b0/c8/7f/46b0c87f-8f8f-4ffc-aad4-1a7d46896736\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/d2/c5/09/46d2c509-92ba-4711-89ae-69cefa50ec42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/8b/8a/fb/468b8afb-f697-40da-9a1a-7725c89daba9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/8b/5d/88/468b5d88-7fda-40d3-85a8-43c8ce6525cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/24/a1/f0/4624a1f0-b1e6-4312-aa5a-ed40a56b053e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/ac/bb/6a/46acbb6a-6ec2-42b7-8b12-0c6496e4db0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/80/fb/7b/4680fb7b-d472-4c80-a01d-b35d49b338be\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/c4/91/90/46c49190-43cc-48f2-b61e-45f0dc40f378\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/cb/58/28/46cb5828-298c-4e46-bf06-21e5dd144d14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/4d/ba/c4/464dbac4-f1cd-4f88-86df-5c4f6f10b8a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/6f/5a/5e/466f5a5e-0237-417d-957d-a58e927c5aac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/6f/58/a4/466f58a4-1725-4082-804f-90efec6a390f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/a2/f6/cf/46a2f6cf-9244-4ebf-8f8a-113174208d9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/ef/5b/21/46ef5b21-f41d-4122-a609-c7a254b29ed8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/04/8f/09/46048f09-5e70-4818-8723-8565df7e5d7c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/ae/a8/19/46aea819-ae55-46bd-892b-dc5076035668\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/b3/5c/9b/46b35c9b-7638-4b54-ae1c-e8d1216026b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/b3/c7/dc/46b3c7dc-c12f-4ac5-b950-faaeb191756c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/f3/47/e4/46f347e4-a916-487d-9586-5f479e2ec268\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/a0/61/28/46a06128-6be2-4ab4-8f41-eaac16dfe5e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/ee/f0/ae/46eef0ae-9689-4cbb-8a14-eea7e375d009\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/46/ca/5e/b6/46ca5eb6-7750-4297-8ea9-ab69f660d6ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/67/ea/39/7c67ea39-94df-4b6c-9f36-faa7838179a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/b7/ce/b5/7cb7ceb5-8af6-4851-92e4-24a58d803f18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/70/b7/50/7c70b750-ae6a-4f67-9b37-2ee81aff4bcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/77/60/c2/7c7760c2-8447-442a-bf48-4b76cdaae6e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/5e/38/02/7c5e3802-aec4-445c-82c8-93e62bb55952\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/92/31/e0/7c9231e0-191e-4eff-b9d3-6506086bc9ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/53/1a/99/7c531a99-a900-4667-98b4-8beb9b72c7c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/bb/bc/47/7cbbbc47-8d83-4c87-be8a-9d71245b6ae4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/2d/0f/1a/7c2d0f1a-7e6b-4fdf-8ac0-b94a24d99eab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/1a/53/17/7c1a5317-fdea-4ebd-abdd-0c1fae20f75b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/23/96/45/7c239645-3572-4230-ae85-7f3a06c84266\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/23/3b/43/7c233b43-33e8-46c9-9702-5a887ebe8113\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/e9/c1/f2/7ce9c1f2-855f-4dfc-8051-6774ea549940\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/21/18/a7/7c2118a7-5865-4631-9b5d-fc705f8aa0dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/a1/3d/5b/7ca13d5b-1d84-469b-9854-33faab89ddd7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/08/b7/19/7c08b719-be19-4d92-8f6a-61c37d41b9ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/e1/14/8f/7ce1148f-af33-4a61-b875-cbd23ea1a139\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/5a/89/ca/7c5a89ca-9917-4f9a-96b8-b2b21f6585bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/a2/22/e7/7ca222e7-88bb-403e-b9ca-e6cbcd34cb54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/c0/df/d5/7cc0dfd5-0966-4db9-b8a4-a7d646d50695\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7c/93/4c/16/7c934c16-2b53-4eed-ba9c-046b2efd1a2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/b8/09/17/c5b80917-c463-4a30-a286-83db7af21130\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/44/87/3e/c544873e-a196-4346-a688-986929ee1dc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/cd/af/0b/c5cdaf0b-69e9-4b9b-9384-c23cc273efa3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/c6/22/8d/c5c6228d-b13d-4ffe-b6a5-495cbf8fdccc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/32/41/21/c5324121-9c9b-449e-94b8-1767850854c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/59/be/32/c559be32-6171-487b-a867-1179a230493b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/02/a4/27/c502a427-56d6-4aa9-9d16-bab22f85dead\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/8e/8a/ec/c58e8aec-0438-4e12-adc9-0a0e34e56f9b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/da/6f/fb/c5da6ffb-a6c0-4698-8d6d-a62e7b38ac0e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/da/dc/91/c5dadc91-21d4-4a4b-8b61-21ce9f7090ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/9f/8c/8c/c59f8c8c-240b-421f-98a5-ea835e3204a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/7c/d2/25/c57cd225-7c24-43e5-8df3-7c2735e1eb01\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/09/05/f8/c50905f8-90ef-437f-9126-8eafefc44efe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/a0/19/43/c5a01943-02ed-40d7-bd70-52aa625ac287\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/68/b0/a3/c568b0a3-cb5e-4c6f-b182-1c77c79951f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c5/03/11/b1/c50311b1-7274-49a1-87c5-52a00929c33d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/8d/b2/ca/828db2ca-f1f6-42bc-a4f1-fe0170a0e51d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/c0/46/a8/82c046a8-c9fb-424e-a70e-c654525bde36\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/c0/0d/89/82c00d89-e67e-4d79-b6f6-9c38bd15db81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/c0/fb/f9/82c0fbf9-e854-42ed-bd5a-a35c5cc65606\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/b1/db/68/82b1db68-186b-443e-b9d5-972f958f1b86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/e5/fb/00/82e5fb00-ede7-4ef4-8d87-3e5e91db44f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/44/49/ad/824449ad-63b0-4281-9994-f79a33ac50b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/b6/7c/0d/82b67c0d-c39f-4c85-a9ec-ca31e6d5770c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/31/3d/e6/82313de6-7df3-4dc7-8fff-ef30d5ff4f1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/80/54/6f/8280546f-0e02-43ec-a93c-53627c42ea57\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/b9/80/64/82b98064-b0c8-466c-aed5-0d373eb3ddda\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/ab/a7/b4/82aba7b4-0812-475e-a1d9-acb2c63e3e66\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/e8/a2/8b/82e8a28b-f2b1-4e67-8a86-da3e46f97492\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/64/ec/eb/8264eceb-ba2e-4719-a7b6-3791eb74ccf8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/93/fe/a3/8293fea3-8902-49e9-b7c7-1efc04528703\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/5f/03/a5/825f03a5-d464-4818-9c4f-8fff93ffbf5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/cc/04/f4/82cc04f4-7abb-452c-ba43-a337dfaa0616\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/38/6e/f3/82386ef3-cded-4119-8ff3-486bfb6f2c8e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/c9/2f/51/82c92f51-49e9-479c-bafe-f8cc10c0074d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/6b/a7/b3/826ba7b3-ccce-4ea7-ba43-59f01343b7db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/4c/c6/9c/824cc69c-cb67-45ad-b57e-d457a6119027\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/72/b7/61/8272b761-16c3-474e-8423-df10cd29587e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/82/03/33/02/82033302-5dd8-483c-924f-0ae17f6d426e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/a1/cf/2a/13a1cf2a-f8a9-49ac-918b-1e7eff7f3ade\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/43/30/43/13433043-c3c6-43da-a2c7-51aea356fc1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/4c/07/f2/134c07f2-584c-40c4-a5c3-e46f01b385d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/47/fd/f4/1347fdf4-a29b-4828-ac92-07ad11de7164\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/01/3d/ed/13013ded-2a8b-47eb-835d-ab473e7c30b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/7e/ff/61/137eff61-330a-49fd-8c0c-a6f28325a5bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/83/6f/05/13836f05-ccfb-497e-80c9-52752b646f15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/34/db/f1/1334dbf1-a94a-45f7-b8ab-fe0dde56a511\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/22/dc/ea/1322dcea-0db0-436f-b601-7648a1844667\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/e4/bb/f5/13e4bbf5-a3e5-4d50-bcae-a4b1f1b6a6a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/48/76/a0/134876a0-e955-4b47-a037-976910669e32\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/81/2b/7c/13812b7c-de73-47da-9c6f-aa23709bbb07\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/f6/f7/d0/13f6f7d0-eee7-45a7-92f1-b1c6f4ebed2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/eb/f0/02/13ebf002-5f39-405f-a49c-a6466b4c3042\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/8b/54/cc/138b54cc-d493-4e00-9b9e-8fe0dea225c4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/97/6f/98/13976f98-8618-4610-bffb-40c66e90b110\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/0f/c6/6e/130fc66e-e268-4bee-9ed6-9fb020d53a88\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/ca/99/70/13ca9970-5b30-43aa-933a-9796774b2702\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/a0/39/a5/13a039a5-739f-4c54-930b-68149793c8a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/1d/5e/b9/131d5eb9-f012-41e8-a7e8-52011404f3b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/9c/17/b0/139c17b0-7e97-4b38-a634-ef74ee4d0777\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/67/97/6e/1367976e-dc00-4999-955e-65b954c26d73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/61/bf/f9/1361bff9-dee6-487b-bbac-7dc14f69cb29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/84/a5/41/1384a541-cf3e-4e28-9387-d19699f8d91d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/13/f4/dd/30/13f4dd30-8fae-4974-88ca-35876df6eb38\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/5c/3d/d4/b95c3dd4-a146-4481-8111-e698ad873b41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/bf/b5/50/b9bfb550-47af-4fa2-b4cf-f0671ef519fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/c4/3b/59/b9c43b59-3f13-4526-9905-15ba65ce3a06\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/ac/be/63/b9acbe63-a49f-4f75-83ba-6d346d99e5ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/b1/83/a2/b9b183a2-63d2-4425-aa48-adba21be3835\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/26/9b/a1/b9269ba1-6191-4d35-841e-e216b9c9f013\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/b3/75/bd/b9b375bd-1657-41b7-89dd-80053ae26b4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/b3/88/dc/b9b388dc-989c-4bba-b0db-f0f3dccf823a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/cf/76/48/b9cf7648-fa4c-4ca0-8f06-a3172c8fbcbd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/5e/12/5b/b95e125b-a6cc-4c62-acd2-ffb12006ea7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/53/36/d0/b95336d0-9c4b-4f56-9319-eb6f9c136ffa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/8b/fd/54/b98bfd54-a503-44fc-a4fe-512f2d195524\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/36/c5/93/b936c593-9087-4635-8847-c18182613873\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/93/46/2e/b993462e-fafc-4b8d-8494-3c077a3f0963\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/68/95/e7/b96895e7-7f7a-4f11-89e5-f0c2b1e59113\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/21/a4/7b/b921a47b-997f-4deb-a0ef-ea5b5093f7ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/23/35/2e/b923352e-a456-4cf5-9ed0-6fbbeee6ce9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/22/c4/e9/b922c4e9-c5fa-48ee-adb8-03cb2501b6d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/5b/da/38/b95bda38-be5c-4f01-b3f4-c6ca8ddf229e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/b5/f7/1a/b9b5f71a-723a-4a2f-8f30-3dd3630494c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/2a/5a/07/b92a5a07-b691-4cfd-88a2-d324861ad735\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/4a/b2/07/b94ab207-f0eb-4aa8-aa46-833bd7f3091d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/a8/c7/91/b9a8c791-ffa8-421f-9782-b5d8859cce41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/01/50/9a/b901509a-8791-4d32-b6ea-93c223386aae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/c7/27/b3/b9c727b3-d333-427a-85ed-9e1217cc0b8c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/d9/78/a3/b9d978a3-f34a-4288-81e7-c643478c758f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b9/65/b6/81/b965b681-7b2e-49f1-b731-a0b80d7349e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/0f/42/5c/be0f425c-ffbd-4e69-852b-dbb832e22c95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/af/ef/a1/beafefa1-9b4e-493a-b5a5-2ff5e7b3e32c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/04/ab/36/be04ab36-6b64-40eb-a9eb-5cf1876c64a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/41/f8/84/be41f884-58c4-47bd-b943-709a666b54bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/41/4e/ec/be414eec-7919-4e0e-8789-25ab4c442716\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/b7/e1/58/beb7e158-459c-4295-88a5-47b2cb9feb16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/e3/3e/7d/bee33e7d-9002-47a4-9364-bd18589bc071\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/e3/1a/cb/bee31acb-7452-4bcf-89a1-19309893e5b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/ef/51/6a/beef516a-54e8-4878-bbd3-96a2afdd0f96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/0b/ce/9b/be0bce9b-74b1-454c-b7a5-7b81e831ebc6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/0b/53/ce/be0b53ce-e210-4169-88e2-280e2d2755f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/17/46/70/be174670-a58b-4deb-bc98-ef3208e87207\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/16/14/ca/be1614ca-1792-4c53-bb35-2aef6cdb17e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/57/b4/75/be57b475-01fe-416f-92fa-6b81ef3daee7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/d6/4f/e9/bed64fe9-503d-4561-8cc8-55ad09e7e5aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/9c/a9/15/be9ca915-110b-489c-8a57-d7b74f17d072\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/ca/2d/95/beca2d95-9fb4-4c83-ae12-5dbfc5f65dfc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/fe/8b/0e/befe8b0e-3df6-43b3-96b8-cf0a5ead9418\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/15/88/16/be158816-57b6-4e95-8618-3b04066cd8e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/38/0a/76/be380a76-c415-4820-a4fd-5aed2d2eebfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/8b/9a/5a/be8b9a5a-90f6-4c20-8cfd-7061f0da21ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/0d/0e/53/be0d0e53-ce56-4463-95a0-e19b1cd39709\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/da/cd/72/bedacd72-9f81-4308-ac48-88a5f83dc1c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/d8/b1/a9/bed8b1a9-2903-402b-9bfe-82894be67d97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/29/e9/72/be29e972-07e0-4aec-a7e1-1745e177be5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/e5/cd/21/bee5cd21-edd1-4e9c-abc3-79c76c74d6e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/70/66/f6/be7066f6-d49a-47fb-afd1-36db9e39fced\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/9b/84/f3/be9b84f3-1bc3-4822-9be5-d2c4a2b8aa10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/bf/61/9c/bebf619c-2cda-42e6-b14b-6b6943aef1cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/be/2d/72/34/be2d7234-3497-4472-9da0-3307b8ad4788\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/ec/95/64/78ec9564-6ddb-40ac-a354-e2ada1c0ba7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/d1/2f/da/78d12fda-1199-422b-a9e6-62cb35e210ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/d1/4c/31/78d14c31-971b-421e-9506-dbb81b3a670f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/a7/2e/ed/78a72eed-b012-4615-b24a-d4e099c4b079\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/68/36/40/78683640-baea-466d-88a3-4a06d1aaed30\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/c2/92/74/78c29274-0b8e-4f8d-a316-7747f5fe7732\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/7c/e8/67/787ce867-48fc-4678-89e4-e02cca0f087a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/19/6b/ea/78196bea-9c46-42f1-a0d0-58c184290138\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/ff/d8/3d/78ffd83d-ab93-4854-a9a0-11695a42ddc4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/9b/1b/d2/789b1bd2-b83c-4e23-bc57-7ed51e5af614\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/f4/49/0a/78f4490a-c9dc-4eea-aa21-149cfabb4bd5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/79/b4/da/7879b4da-e4dc-476d-94ca-f68931464ddc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/a6/7b/2e/78a67b2e-ff1a-444a-b69f-f8a67b0c7a4b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/20/1f/55/78201f55-7314-4eb2-b63b-fb7b39cef42b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/2c/a4/3f/782ca43f-a31a-4c79-b7e4-62f0148e88aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/13/d1/5c/7813d15c-4d93-4b11-8a11-96bc58f89ae0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/52/70/c2/785270c2-0889-42bb-a057-5c32c9b3c8eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/52/79/40/78527940-c7b9-4663-a799-53c514dd74fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/4b/a9/46/784ba946-97da-4f25-92e3-49f6e42bd44c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/eb/80/7e/78eb807e-3b83-408f-b13e-da5340e94d00\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/56/8b/e2/78568be2-451d-4135-b5eb-590e940f33f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/78/61/1a/7c/78611a7c-3598-4043-842d-1dd98a5be974\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/19/6f/59/96196f59-5f7d-480a-a115-e97dd3af4214\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/84/62/16/96846216-2f2c-4882-a608-045a59764233\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/9e/8d/db/969e8ddb-0012-4fe3-a09c-2dc2a48cb6bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/66/fe/82/9666fe82-92b2-4d25-ab53-8361f4dff3d0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/6c/5f/38/966c5f38-2b98-44bb-be5b-8512f6625b8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/d0/67/44/96d06744-a24a-49ac-a8bc-c1aac9b4245c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/bf/2a/95/96bf2a95-af38-4314-ac47-bc088e1e2f2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/23/9b/46/96239b46-cc29-4a18-b051-224c8e0b16ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/09/28/0a/9609280a-3f5e-42c3-b386-8d19eb5102f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/9f/37/84/969f3784-5f8c-41c3-8ea7-7ac67a08b4c7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/33/e0/d0/9633e0d0-c7aa-40a0-9d36-b96c9739c7ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/8a/11/fb/968a11fb-07f0-4e63-8471-3fd76821fc3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/88/98/e1/968898e1-5011-4c0f-a7b9-86e4598c6d4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/55/cb/e0/9655cbe0-70e7-436b-aaa1-e3cff796c881\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/0d/3d/72/960d3d72-0495-4c81-b9c3-d10e35ab1679\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/4c/c3/86/964cc386-7175-4c1c-bd94-bcafd847b23d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/54/e4/2b/9654e42b-1024-4625-a325-fe31752469e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/96/1d/9f/33/961d9f33-d540-45ea-b088-7465b4c524bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/f1/23/2d/ecf1232d-a38b-467c-8dbe-817c6e30e47c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/aa/74/20/ecaa7420-186b-4dde-99ae-0514463805b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/04/7e/e0/ec047ee0-b195-49e7-b23d-47796cca6caa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/38/e7/58/ec38e758-3ad1-4d93-9433-97c6942647e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/8c/86/5d/ec8c865d-b24b-41fd-995f-9ea8cbe0a053\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/22/20/30/ec222030-5e57-43ac-8d44-3ca281fb2e99\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/7a/22/3f/ec7a223f-3ed8-4755-8be7-0b7931ae8b9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/05/fb/65/ec05fb65-0649-43eb-b0e9-8eeb9fc60407\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/a5/ea/02/eca5ea02-78f8-4c66-b87c-3df57c5f393f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/d2/a7/14/ecd2a714-53e3-4505-9417-e78c8adbc7ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/d8/94/ef/ecd894ef-7140-4523-a9d1-2c3353eba5ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/1b/50/b8/ec1b50b8-b72c-46a8-9fd4-feb9daf251f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/dc/24/a4/ecdc24a4-5f57-4c49-a2ef-b3f074c986e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/13/07/d4/ec1307d4-9352-4883-9aee-559695f293b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/61/48/9e/ec61489e-583a-499a-953a-b64141d1832c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/b2/2a/ba/ecb22aba-1951-4953-a86f-475677345a81\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/c7/a7/e7/ecc7a7e7-2a8e-4b78-aea6-9a9ee8dc9114\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/ac/b2/72/ecacb272-d214-4cc9-bae3-f1ca81754c46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/49/95/45/ec499545-5a15-42ac-aca8-3aa3cc1b30a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/4a/47/78/ec4a4778-6fc7-4900-8cbf-fc2bb60d140d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/41/12/a5/ec4112a5-e081-45e0-a931-14eb04558ccd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/02/4d/3c/ec024d3c-5539-4030-be61-04335f1f6051\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/5f/3f/de/ec5f3fde-dd70-481b-ba68-d6faa76eefcf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/66/31/26/ec663126-e6ae-448a-8c1c-864b9be91d05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/b6/7d/e5/ecb67de5-379a-4ee4-a88e-34582d5a81ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/36/84/de/ec3684de-c08a-4f38-a417-bc234b0a628c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/36/26/03/ec362603-ad1e-4823-94bd-0dca4ffc18dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/c3/e3/04/ecc3e304-a878-48ae-aa47-bfc5fccdf40b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ec/07/be/9e/ec07be9e-a168-4a83-8be4-acce4ad3b353\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/98/60/89/62986089-1feb-4889-8d77-f54766fca6f0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/f6/61/2b/62f6612b-9109-408a-98db-ceeff89d0745\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/cd/1a/38/62cd1a38-ebde-4d15-8446-c6bf8613ef51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/58/04/6a/6258046a-3f2a-4eb6-a6bc-33a39682a6c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/58/52/92/62585292-36cc-4496-9ce2-9a7a07be60c8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/5f/08/fb/625f08fb-db24-434f-a90c-8ad8174c323c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/95/60/a6/629560a6-bef7-481b-bc3b-276c98a0c6fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/fe/18/06/62fe1806-c2a8-43ac-b1f3-afdd19e9aa97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/67/52/d6/626752d6-8939-4179-8589-1d4d56b7dba8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/04/72/7d/6204727d-6030-484c-8802-38f7dcf4b876\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/18/6b/00/62186b00-0a22-4e7e-927a-61d0ae3028b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/a2/40/a4/62a240a4-3ae3-4ead-ab6e-4356987da43d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/05/13/9b/6205139b-8f69-4151-8443-5cf7c3c59308\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/34/e0/fd/6234e0fd-dbe5-47bc-911e-224cba39e064\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/f4/05/ac/62f405ac-ba93-42e8-8a3c-8ee27ccc3aeb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/62/31/8c/6262318c-5c9d-4453-b098-03dea4694652\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/7c/14/ad/627c14ad-5cac-401e-9876-ab75957d04b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/96/85/26/62968526-d7c5-467e-9778-73766cdd6172\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/a6/5a/5a/62a65a5a-1c86-402a-881f-f23dd31eae70\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/0f/eb/cb/620febcb-4fd8-4d91-8dda-ce37a383c0a7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/d6/4e/86/62d64e86-edfe-4783-a834-39859b4ebc19\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/e1/7b/8c/62e17b8c-04e6-4479-8368-874d6792e7e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/62/c8/86/93/62c88693-0959-493c-8e41-5ff94873f365\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/b8/93/02/5cb89302-743c-48b2-8f04-0f1cac2cf7e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/9e/9e/31/5c9e9e31-28be-4dd2-af51-861d41360e2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/a7/71/12/5ca77112-3df9-455b-8418-9e0b6394551b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/ca/04/b1/5cca04b1-e55e-40f7-ad6b-a11f5740dbb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/5f/21/40/5c5f2140-be6e-4313-a658-cb83e55b9999\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/ed/30/4d/5ced304d-813b-4416-9429-7c45714d17c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/48/25/e9/5c4825e9-dd75-4fe4-8720-2f2dd840f5c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/d7/93/d2/5cd793d2-0180-4fec-80b6-3cbec7209997\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/0a/44/6c/5c0a446c-8e4d-4822-9baf-48390256e59b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/6d/e2/17/5c6de217-0563-4f4d-b6b4-9c15a5127e3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/41/24/a3/5c4124a3-002f-449d-8ec9-d1cc6162a421\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/83/44/57/5c834457-d469-4247-91cf-7c92f8245061\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/b5/8a/d6/5cb58ad6-919e-44af-9255-9a42a0cabc16\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/da/7d/5b/5cda7d5b-2c06-47c6-a0eb-d378613e54ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/4a/70/2e/5c4a702e-adc0-4619-9cca-75fe34c6f09b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/c0/73/17/5cc07317-978c-47a8-b5fe-43b61feabcb0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/5e/09/d3/5c5e09d3-5197-4063-93c1-212e90e4a60a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/aa/bd/bd/5caabdbd-8eec-41cc-ac8f-48f4c83be89f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/08/f4/a9/5c08f4a9-683b-4267-8c7f-8874fa9bb286\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/de/c4/61/5cdec461-dafe-418f-97cc-6e860285512b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/81/92/cb/5c8192cb-7b12-44c8-b51b-a77e7e394fbe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/c2/75/d4/5cc275d4-1754-4142-9758-fdff45529d83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/e7/4f/9f/5ce74f9f-c69a-4465-81ad-db9787cf6370\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/95/b6/49/5c95b649-6cae-4a80-aa34-7a3afd4c322b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/e6/20/40/5ce62040-12fe-463e-ac62-621f389a76ff\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5c/9c/85/87/5c9c8587-647a-4c9f-9eab-5d75b6504e1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/ba/01/f1/b3ba01f1-8d43-4f5d-a81c-d36064226190\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/2c/15/82/b32c1582-8d19-4afd-99e6-c358d20a30a5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/e2/57/bf/b3e257bf-cefa-4ed5-897b-3d72260226bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/61/d9/a1/b361d9a1-43a5-4042-a8e5-b406caf74bb1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/db/fe/de/b3dbfede-e933-4b87-8047-6e3889cb1818\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/f7/25/47/b3f72547-52b9-4366-b0b0-282f7bb0a568\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/b7/0e/48/b3b70e48-1751-425b-938c-952ffb097335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/36/df/cd/b336dfcd-f1d3-43f1-a6dd-9228535f017c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/e7/b6/1a/b3e7b61a-469b-4f1c-aca0-418994a8dfca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/4a/df/87/b34adf87-b929-438e-b4f5-ab97c6a6f578\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/45/49/46/b3454946-5920-42e6-bb2d-e741c3f11d54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/b6/a2/d2/b3b6a2d2-6891-4d26-aa39-bbccdb0517a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/dd/af/f2/b3ddaff2-8634-419f-9262-c47c652d77d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/0d/8a/00/b30d8a00-5d32-4951-aa13-98fdd4b7a22d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/ef/97/8c/b3ef978c-6dd5-4f77-812d-ab5b2b8f9b6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/14/70/b6/b31470b6-3bc3-4d05-b756-546949e06e44\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/fe/ba/56/b3feba56-99ad-4e34-bb42-b296ca8f3183\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/81/68/7a/b381687a-bb07-4edc-9594-c7c84d576154\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/9d/05/35/b39d0535-837f-4bba-9944-a9ee2385901a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b3/ec/05/18/b3ec0518-285b-4109-b9aa-2e7b03f09575\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/55/66/5e/3255665e-af17-4abb-bfe6-035d4037a0c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/bf/90/bd/32bf90bd-0650-4cdd-bc91-125dffd17df5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/79/b4/bf/3279b4bf-0f60-445e-9068-0ee9a2fa7541\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/12/60/00/32126000-d538-4b5f-a7f7-229d2a3d43ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/50/42/e6/325042e6-6857-4951-9e15-249229ef6d9e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/c5/6e/f6/32c56ef6-ffc0-4e8a-b575-30577de2d361\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/99/76/9d/3299769d-386a-4cc5-adc1-d939d78119fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/4d/33/94/324d3394-5557-481a-833e-363bbe2f443c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/88/5e/be/32885ebe-341b-4326-afe9-e3c570574c76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/59/a7/54/3259a754-12d5-4cb9-bebc-45e9d3bc3c6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/92/fa/62/3292fa62-8f13-4acd-8ea9-7269f89b3228\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/5f/42/ac/325f42ac-ab2f-452d-a437-b1cfb8d8386f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/aa/75/78/32aa7578-dcdf-4a5a-bdec-c983963d6f8b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/c9/77/cd/32c977cd-5b67-4083-aef0-c62f8a40737d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/41/45/7a/3241457a-3f13-4b91-84e1-84a603408c14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/62/eb/43/3262eb43-051d-438f-84ee-9d0c3a522cc6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/66/21/c5/326621c5-6d39-49e6-99e5-10446a7b4d23\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/dd/bb/c0/32ddbbc0-d940-47ea-9ea1-13d22653e94d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/eb/f0/44/32ebf044-b7a2-4fd8-ba89-b47c7f308283\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/32/b7/2e/bc/32b72ebc-ea1b-4a73-9cb4-7602b65e8854\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/0f/65/b5/710f65b5-2366-4fad-9fbe-4b7a1965a6fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/f8/84/cb/71f884cb-62a3-47d4-bc74-4ae9cd93b932\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/02/c0/22/7102c022-dc9d-4f6f-8089-a8feb391e8bb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/58/64/1b/7158641b-5725-4d9d-a2fb-e0e0a88c8afb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/c7/63/fa/71c763fa-4f8a-4f64-b699-793c9e493b82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/ae/df/0a/71aedf0a-b14b-44a9-ada5-bab1d3469dba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/39/ec/fb/7139ecfb-2e40-4f1f-9e23-a8a156f84b3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/76/60/58/71766058-c78f-4b39-9bd8-49fbdc345d73\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/47/5b/87/71475b87-d14d-40fd-b8de-b3b18eab819b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/22/7d/50/71227d50-e251-42a6-87a0-6b7a5edf713c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/82/a3/66/7182a366-9a1c-4aad-93a1-f98c461f0cf1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/4e/9a/7e/714e9a7e-c1cb-4a8b-a9ce-b6e99b3452ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/3b/38/ce/713b38ce-e1c4-4987-98eb-125dfd6274ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/af/64/ff/71af64ff-32ec-402f-a946-7999361d7bc5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/60/95/5a/7160955a-7db2-48d1-a1ee-d334e98703cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/0a/4f/a8/710a4fa8-a9aa-48a9-a13d-aee923397052\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/1b/aa/6a/711baa6a-28ab-40a4-827e-a54790487319\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/dd/ac/33/71ddac33-9102-45e4-89b8-12982f11c00a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/91/83/cd/719183cd-0af9-4d2f-8f6a-9b24699768bd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/b8/7a/93/71b87a93-3ef7-4df7-b174-f944f259ce1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/0e/5f/da/710e5fda-3554-4adf-b158-443ec6d2ed2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/32/5c/ac/71325cac-2635-4dc3-865d-dc00a9e67e29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/00/e3/b4/7100e3b4-48df-4231-b86d-af02206bb526\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/71/89/d2/a6/7189d2a6-7d5e-4ed0-b058-fdeb8663cf26\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/a5/79/24/01a57924-88d1-47f4-85ce-9e680c01f54b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/c2/4e/88/01c24e88-ba3d-45eb-9074-cdf8f639c146\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/fa/45/5b/01fa455b-e0c2-4427-a634-b64af939bfbd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/2f/d2/f6/012fd2f6-0ef3-41d6-8093-3bb348598369\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/2f/71/41/012f7141-e321-47e4-a67c-d1a37030bc27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/92/4d/bd/01924dbd-7c6d-4071-9c40-25bc56c0baaf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/4a/ad/51/014aad51-2167-44bd-a042-d0480ec0e8aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/c3/14/f8/01c314f8-af9e-4e87-b49c-ff8da8c4d6eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/3c/61/6d/013c616d-1710-41f2-a3da-1510d87e1267\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/32/2d/db/01322ddb-a9ab-4acd-9a7d-9f24e0a386b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/51/ca/1f/0151ca1f-e215-4ceb-8ee6-315a83945329\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/ca/df/2c/01cadf2c-df35-4828-aafd-56c488478b28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/87/a4/7b/0187a47b-3ecc-4e82-ae2d-9c70dbd1ea3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/9f/80/08/019f8008-84f1-4de4-a081-dd1a6592eef0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/78/74/b3/017874b3-f5e8-4ef0-8286-312b01fb346f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/0d/b1/0a/010db10a-9a35-4186-b569-8a66c082b675\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/8d/ef/51/018def51-657b-4ff9-8afa-89668750ca25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/af/95/62/01af9562-d404-4e5b-b23f-76000e13d6e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/71/8a/64/01718a64-e293-4216-a909-ac89d0df81f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/e1/d4/29/01e1d429-27ff-4dcb-bdbd-db00c8f85669\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/50/17/1c/0150171c-986e-4027-bc1d-4b0efff591c6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/01/f7/f9/ec/01f7f9ec-80c8-468e-ab36-80b84ecbaa39\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/3e/d7/bb/bb3ed7bb-1f28-4dbe-87b3-df734df1d590\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/21/4d/e4/bb214de4-69a7-4c43-b2c4-7f33df7f698c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/62/b8/36/bb62b836-075e-4f45-8ae3-6b9fcf39349f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/26/6f/9e/bb266f9e-9e56-4207-8ead-b9f446366367\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/ae/49/7a/bbae497a-f3fe-4b5d-b3de-f768aff9ca27\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/2d/2c/d8/bb2d2cd8-51cd-4a67-85bf-c900dae5b7db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/e2/7e/fb/bbe27efb-faf3-4c94-bce6-492583b0732e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/e1/89/61/bbe18961-edc6-4812-b843-561e5935da21\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/4a/88/81/bb4a8881-0311-4bc9-8119-386c5468004c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/02/05/a1/bb0205a1-970a-49f9-95d6-d038da3b16fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/c3/44/f6/bbc344f6-21ff-449b-8570-9d6c097ced40\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/c3/c1/7a/bbc3c17a-6cf1-4f45-baf3-ae0fecbbb6ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/bb/36/bf/bbbb36bf-62af-4eff-ad5b-27e857257621\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/85/3c/09/bb853c09-ec57-42ba-975a-e88365952caa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/7e/b5/b6/bb7eb5b6-c8c6-42e9-9ebc-c63f9fb900f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/49/29/de/bb4929de-de28-4d08-954f-b3eb6ea68cc9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/27/02/73/bb270273-b767-451a-970a-b32edde5817d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/52/bd/00/bb52bd00-f088-4ca2-a6e2-beb9feb27ffe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/ec/0e/06/bbec0e06-ed16-40ec-b602-6de30b492390\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/5c/21/5c/bb5c215c-d164-49f5-ab48-00ccbe15a101\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/bb/6f/43/6b/bb6f436b-cc63-425e-8554-1112597cd677\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/86/33/22/35863322-e56a-4f7d-a968-40427fe2b2ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/fd/5c/a9/35fd5ca9-aa73-4ea7-87f2-75fe39b3390c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/8b/93/85/358b9385-831e-4903-9c0f-a216ead2dd91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/b6/66/1d/35b6661d-feef-4530-835e-339e500092ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/dd/db/cd/35dddbcd-74df-404f-aacb-a99e823bb578\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/dd/3e/c6/35dd3ec6-91dc-40c9-ae5c-637ddf8c3835\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/ce/89/90/35ce8990-c680-4bd2-8a8f-43b24e85fe0c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/f1/89/62/35f18962-988c-4796-9f25-5fec6003ff86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/60/82/8f/3560828f-8a6f-447b-9bfb-afaa64a5a0a6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/d7/ca/c5/35d7cac5-7e0b-4f7c-b6b1-f6a2223d129d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/df/26/b2/35df26b2-5b4f-4f0a-86be-fb5ac993a8e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/de/bc/b8/35debcb8-06e0-43bd-ae80-74e4775bd061\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/ae/06/3a/35ae063a-65ea-4751-bafb-43acda2fae15\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/26/76/e4/352676e4-d18e-41db-942b-5eb0a4eb9fa9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/6f/33/77/356f3377-c366-49e3-be79-d0faf11525f9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/c5/a8/c8/35c5a8c8-6225-40e3-9958-eaf927ee5c47\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/4c/b3/e4/354cb3e4-9d1b-404a-ac19-b92a264cf1ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/d5/0e/87/35d50e87-a128-4c27-879b-9b761523da28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/35/65/f9/79/3565f979-328a-402d-98c9-b82d38f02deb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/46/bc/69/0b46bc69-0ba7-4c13-be83-e58d6d504e63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/46/2e/0f/0b462e0f-91ea-4146-88df-d70b68165682\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/89/4b/cb/0b894bcb-7179-4781-bac9-264a7ccabe7d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/b8/a7/fe/0bb8a7fe-267e-458d-903a-a45b398c3767\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/6c/e3/1d/0b6ce31d-92fd-4e90-bebe-26d1f012e024\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/af/ea/19/0bafea19-001f-4c6e-834b-2f69f53b3e48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/a5/ac/59/0ba5ac59-f5aa-4fd1-8cbc-4cc29441db2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/16/41/a1/0b1641a1-ce1b-4e19-8e93-32ccaa793ce2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/16/57/f0/0b1657f0-243e-4067-a172-17b8d7f5e905\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/4e/d8/7c/0b4ed87c-cd98-4e0a-9838-fb6922e3c864\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/d4/85/d3/0bd485d3-35e6-40a2-9c76-1cc979fc932a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/35/bc/7c/0b35bc7c-de52-4382-ad6d-65b75f0ade20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/7f/a7/a1/0b7fa7a1-9107-416f-8db8-90b417391b1a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/1a/0d/d6/0b1a0dd6-97d0-4031-bf92-197a1266d118\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/71/4f/78/0b714f78-6b1d-4267-86d3-669953837287\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/d0/de/08/0bd0de08-8318-4fd4-b703-50cbb490d0c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/c7/fd/9c/0bc7fd9c-b45d-45ee-8501-6ceac8019612\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/a8/90/4b/0ba8904b-e8d5-4699-8264-91f4afbd332a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/59/d1/53/0b59d153-2fc9-4dcf-bcd0-8d095b447525\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0b/3b/89/8f/0b3b898f-a642-497e-a8e5-2b7ae05e6459\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/d5/46/d2/67d546d2-89b9-4d01-a039-73018f5731cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/d5/40/61/67d54061-1430-4eca-b3eb-99e8d3b75b94\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/b5/a2/5a/67b5a25a-c178-404b-a666-70bf0fea642e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/a9/91/a9/67a991a9-036c-4bb4-acd0-b98f2a1c4d48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/5f/73/33/675f7333-f36b-450a-a10d-494c2df55afc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/ea/0e/67/67ea0e67-7efc-423c-8451-1df4d7834767\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/5d/b7/f4/675db7f4-23c5-4f82-b53c-4393c770e1b6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/4d/ee/4b/674dee4b-18e5-4c89-9368-7c7ae265e80d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/1e/75/17/671e7517-4cc6-4e6a-8a6f-6fa73d3e558d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/ec/8c/78/67ec8c78-5ffe-49ab-bda0-4db46560b934\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/0a/88/38/670a8838-4e6b-449e-b768-5d1a512f17bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/96/27/a0/679627a0-f392-4323-a950-8877981fff83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/da/25/dc/67da25dc-93bc-4a73-8294-9239ea748552\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/ba/a5/4a/67baa54a-2dff-4e45-99b4-5d75bbd46b68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/0d/2a/05/670d2a05-aa95-4885-a8bb-80934868f7ee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/53/3d/02/67533d02-c04d-4aeb-a5e4-b2490eb37809\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/61/36/69/67613669-8abb-4869-9d9e-d54ca9a28a7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/83/dc/75/6783dc75-7e8b-4287-9e9c-9989ffac08e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/50/cd/fe/6750cdfe-dd0d-422d-914b-ca4db8df656a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/60/95/84/67609584-c8db-4b5b-bf81-8647c581e665\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/86/25/ee/678625ee-ce70-40d4-81ee-0333eebe210b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/ae/3b/cf/67ae3bcf-b337-4e84-ba6d-e299ed2c45df\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/40/61/e2/674061e2-e932-48b1-a064-fc0236a42beb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/67/e1/7c/06/67e17c06-38e0-4679-8d2b-293de26b9269\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/7b/69/5d/ea7b695d-f807-4772-ac5d-e35122d4c9f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/17/a0/fe/ea17a0fe-edc3-46f8-adb3-10bb27b91cb3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/c7/f6/cd/eac7f6cd-f055-4d14-9815-c16070753616\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/0a/5c/b3/ea0a5cb3-05ea-4383-aac0-054851981426\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/1b/d9/3d/ea1bd93d-e791-46f0-80ff-d383bb8013fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/98/0f/9b/ea980f9b-901e-47a7-b168-7f3add86cbcc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/74/34/95/ea743495-0d00-458f-8e51-9ba8337336f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/7e/b2/c7/ea7eb2c7-651d-47da-8739-1dfd2f2ab8eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/d7/68/43/ead76843-9572-48e6-a04e-ba3a3ccd3cea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/a9/e2/7f/eaa9e27f-77fc-485b-bd46-2440fed60806\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/a5/d1/40/eaa5d140-5200-4d8b-8423-0c8202f30116\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/a5/04/93/eaa50493-6c3b-4f43-bce6-299233ff3145\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/97/be/f5/ea97bef5-b7c2-4912-9f86-8e4ecc686c3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/15/6a/60/ea156a60-c3fd-4563-8330-dd2dc2105947\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/f0/62/ce/eaf062ce-2599-4794-912e-f0a2821fb51c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/6f/1c/d5/ea6f1cd5-2014-467e-baaa-afc8e13959a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/4b/68/00/ea4b6800-7ce5-4104-9988-481a33c54409\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/be/ec/75/eabeec75-aaec-4fcc-9e5e-a582ab36ecb7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/5d/16/35/ea5d1635-59dc-4b3b-acd3-3c86d157b9b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/5c/49/5a/ea5c495a-ec43-473a-a275-1f90e4822c2e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/de/14/ec/eade14ec-56b3-4a43-9528-c25a20279c1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/22/c5/85/ea22c585-850c-4306-89c7-7e257886de1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ea/77/bf/ef/ea77bfef-bf0b-46b4-98ff-de925bc9eb4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/04/4f/23/c6044f23-eaca-45f7-b90f-6ef46aa066d4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/8d/df/f2/c68ddff2-b645-42e0-93ea-9c6aaa2fe4c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/8b/8e/ea/c68b8eea-d1ef-4202-a112-de50beeb3367\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/d7/0e/13/c6d70e13-654c-4483-9226-19bee8d910a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/98/93/6d/c698936d-4ece-4b7e-8afb-527a4fbbe4f1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/92/08/52/c6920852-5998-40d8-bb49-d21da4ca59f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/79/1e/c6/c6791ec6-88a4-4a95-9309-f7b627d62f83\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/bf/60/0b/c6bf600b-6bc8-4fae-9ff3-b27ab50d225b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/4c/df/73/c64cdf73-23fb-481e-8f62-c6cbe2771fde\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/20/23/e9/c62023e9-3418-4d82-ba1e-bf11f554390d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/5b/af/92/c65baf92-0b1b-4c33-ba39-aa1372696107\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/95/76/0e/c695760e-cccf-4c95-9ff3-7253dd876734\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/9e/a0/a6/c69ea0a6-c024-41ef-9feb-0d6d78ca5362\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/7e/d9/77/c67ed977-a45d-47e9-9160-b7e06754bba8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/3a/fe/5a/c63afe5a-5ad9-45ed-9a4e-ceef28d3d64f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/4b/1d/11/c64b1d11-8452-4718-ab8c-0ab2ec1aec4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/fc/cb/67/c6fccb67-f9d0-4924-9290-8fbb8f3b2028\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/c5/20/6c/c6c5206c-2138-4acc-9d68-fe06977f3b2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/6b/58/cb/c66b58cb-9797-41ab-9028-49bedd546b76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/aa/9c/06/c6aa9c06-7ef2-4839-a733-1d7c840b7275\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/12/f8/f1/c612f8f1-495b-4a25-87c0-d315bf8d8774\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/d4/da/e5/c6d4dae5-b2e8-475a-ad27-73a1e26ade78\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/91/dd/4e/c691dd4e-15be-4f85-98c8-0bcdd5c364dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/91/d5/82/c691d582-08ab-4cc7-be58-a55de87a1149\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/b1/48/1e/c6b1481e-a498-46c2-b0e4-f5ddcdd546f2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c6/d8/72/c9/c6d872c9-d3d1-4262-9aa6-c984e6efc0b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/f1/6a/49/baf16a49-d545-4716-873d-ca3873f3dd49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/fc/d0/e9/bafcd0e9-8700-4324-9e2f-ceed4045f2ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/ae/b8/99/baaeb899-16cd-4ab1-b9ea-5fea75596ed0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/b0/f0/5d/bab0f05d-0305-4311-aac3-17acebdff1c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/33/4b/1c/ba334b1c-1421-4e1f-9766-e178b428cdc6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/63/e1/a5/ba63e1a5-2536-41e1-a798-a60814e32386\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/54/16/d0/ba5416d0-1f97-461d-a963-97d2c25ccb76\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/29/51/39/ba295139-8efa-4be4-8c18-c47c31ed360a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/cd/5c/f9/bacd5cf9-fcf0-4d70-b10e-a45ee1babecc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/c1/c0/6e/bac1c06e-9e38-4e6e-b2c5-8fc8905eb7aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/3e/5a/56/ba3e5a56-0c78-46b2-a3d7-86fab80c29f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/5c/a0/a8/ba5ca0a8-057a-4afd-8ce0-4d77fc185f65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/ba/ef/e2/78/baefe278-6273-4406-b1fd-7df99c9c017a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/47/64/5b/e247645b-4e18-4a93-9fd8-100f836846f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/c5/e2/c9/e2c5e2c9-3f34-45d4-b084-803fd877200f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/79/63/49/e2796349-9d39-4e34-830d-dfdb823e952a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/b6/2b/06/e2b62b06-8297-4b17-8d9b-3604a0909575\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/cd/bc/e1/e2cdbce1-7000-4472-8f6a-4cc16e1a3bd6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/ca/6e/53/e2ca6e53-4eca-467b-b5d1-977b69543f2c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/13/77/9c/e213779c-0c95-4bea-9f34-ed886fc85044\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/f2/e9/46/e2f2e946-5626-4f6c-9e2d-71760e31eb17\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/f5/eb/6c/e2f5eb6c-eb33-4065-a19a-f98f75b063fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/61/38/74/e2613874-7ccb-4870-bde5-e04d8ab8bb4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/66/b2/ff/e266b2ff-03b8-41dd-a3c5-d5473b3c23d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/66/58/cc/e26658cc-0c9b-4da9-bd89-bde33aba55c5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/ec/a2/90/e2eca290-efd4-485b-a7bd-349dcffbd868\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/c9/b5/b8/e2c9b5b8-3afa-4b5f-be71-e7ae2ab751c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/fc/81/b8/e2fc81b8-0b04-4b59-9887-051ab3e19d92\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/69/cb/bf/e269cbbf-4205-49f9-a8ac-b638d3e29e3d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/49/3b/82/e2493b82-12ca-4a68-ac7d-f8d2e4873190\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/24/bb/f8/e224bbf8-a289-477c-ba41-96a207fd5186\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/74/41/14/e2744114-31ed-4ead-a430-7ba722cc5a2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/9b/79/2d/e29b792d-d7d1-411b-973a-9d58d14ac198\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/9a/e3/2f/e29ae32f-ea7b-4716-9726-d2ae4a71e704\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/f7/67/b5/e2f767b5-4171-4d5f-85dd-6423b897e120\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/06/6b/b8/e2066bb8-8134-4e63-905f-b42210f013d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/5c/6f/b3/e25c6fb3-33b4-438a-8376-f30368d72e9d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/5d/76/c1/e25d76c1-768c-4c21-a232-ef5c01c82a3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/e2/b3/db/22/e2b3db22-a6e3-42a6-a914-ff6cdcf060ab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/82/91/3a/0282913a-0a5d-4cd5-88be-e3f65c2a171b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/82/d1/59/0282d159-b74d-4ef1-8301-74d0d1b07ac3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/1e/6f/23/021e6f23-3c75-49d8-ac58-ae894baad666\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/a9/7c/25/02a97c25-d213-4eab-8be3-ce514916a182\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/01/d5/93/0201d593-8b71-4596-b700-8872abf11643\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/5f/9c/be/025f9cbe-ceb6-4bd6-9ba9-67d65a6da64c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/98/0c/14/02980c14-1a7d-416a-9bf7-c916fccd020f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/1b/6b/fc/021b6bfc-28d5-4934-947b-6d72a823dd59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/4e/bf/04/024ebf04-e8ef-4c2d-8910-dee81614b572\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/0b/7b/ae/020b7bae-3221-4cf6-992d-b43daccfa16d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/0e/e0/81/020ee081-4641-467e-baaf-5bfcd89d5d48\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/cd/df/6b/02cddf6b-b5ac-4585-8043-b62522dceb9a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/86/ad/f3/0286adf3-2533-44ac-badf-3f838eb4b69b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/2a/43/c5/022a43c5-c227-49db-886b-ba9f286e4339\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/5c/7b/9c/025c7b9c-9fff-4fa9-9031-b93aa4b3296e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/b2/58/84/02b25884-3deb-4d02-b5c5-684e0f24504b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/54/30/ec/025430ec-b9ff-49d2-9468-07dd818a606f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/9e/7a/b1/029e7ab1-cc55-474c-b846-d7e7e6d32bf8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/9e/9a/84/029e9a84-2936-4407-8dff-9e7ed9c470b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/ab/74/e3/02ab74e3-4d3b-451c-9b16-5a8c7fd1f45d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/1f/2f/bc/021f2fbc-0547-4f48-9170-a403de274075\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/c0/c4/a3/02c0c4a3-51cc-48f9-b71a-d9ff75567bf8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/f3/df/ba/02f3dfba-60ac-4faf-ae33-bdc903e518bf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/00/87/c0/020087c0-1e25-4a8c-a82d-445935d312dc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/b0/f4/67/02b0f467-a367-42aa-a90d-a430b88e85ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/ea/55/fb/02ea55fb-89e1-44f3-8f24-1d9175f8e591\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/0f/2d/77/020f2d77-3012-4b2b-a31e-b56808bcedee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/22/cc/d9/0222ccd9-554d-4f9b-9788-fbdf21ddf514\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/4f/89/83/024f8983-e399-4269-adb9-73f9e10b4516\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/1a/bd/72/021abd72-e485-4650-ac30-8ef34fab490a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/02/b9/25/d2/02b925d2-32c4-47f4-9cff-c7d0cd4fa48b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/e7/5d/8f/dde75d8f-f31a-4999-b431-3628a9529b98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/81/ec/50/dd81ec50-1e02-433b-ad88-de5e4e7daf59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/9a/69/a9/dd9a69a9-60ff-4573-abcd-b1d77089841d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/9a/b1/7a/dd9ab17a-cca7-4707-a72b-c5c6a2234067\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/08/b0/62/dd08b062-f755-40aa-ac5a-1d7b3b129840\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/3f/67/7c/dd3f677c-c955-4f81-9195-7724869c78cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/42/aa/9b/dd42aa9b-f2d0-49dd-b7c2-0550d0e022f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/5d/c8/9e/dd5dc89e-4e90-4cb3-9904-0d139f30b1ad\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/c6/23/f4/ddc623f4-7ab1-4b7a-aece-f35ae136cf04\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/ac/76/02/ddac7602-d852-45c8-89c8-6e65dd3878cc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/2f/04/77/dd2f0477-0638-4b41-8772-dc07c4be9e2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/57/a2/62/dd57a262-ee07-4874-b83d-16e6c1e8a434\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/9d/aa/1c/dd9daa1c-0c42-43cd-81bc-accd2d8bfdca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/21/d8/5c/dd21d85c-4db2-4e3c-bf5c-5bee5be3462b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/4d/1e/ab/dd4d1eab-d48a-449c-b5ab-a1a664c00f09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/8b/a8/f5/dd8ba8f5-2a68-4e1f-b352-b4637ab9c571\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/29/83/5c/dd29835c-4082-4a20-a423-d2b5bb8f65e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/9e/c7/f7/dd9ec7f7-919f-4fc8-bb45-1445681d52e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/dd/0c/c7/aa/dd0cc7aa-b303-418b-9386-f6f5695a0712\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/67/9b/6e/05679b6e-557e-4538-b2b2-ab975914420d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/5f/bb/d8/055fbbd8-6671-4199-9635-f7d7b64ac872\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/92/1d/0c/05921d0c-d5b2-4ecd-bc4e-599dca0d7754\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/aa/d7/24/05aad724-e13a-46eb-a3b6-6d94424872ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/9a/c5/d1/059ac5d1-eaaf-4dbf-885a-6e2a8de7b6a0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/83/96/de/058396de-df2e-491c-abdb-e830e855ab1d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/a9/01/6d/05a9016d-e580-48ee-b763-32fc06735fa5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/1b/57/ba/051b57ba-2a52-4402-967e-a0b20e35fec7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/72/f2/14/0572f214-5564-4fe6-87e4-cdf2ffa65691\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/6e/b8/ca/056eb8ca-7f97-4264-8a1f-71cc4f614d3c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/71/3e/8e/05713e8e-e56f-4c89-8c7d-6a1083f1af91\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/6a/43/18/056a4318-558e-485c-b435-2ad5e034ef1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/7d/02/26/057d0226-41d1-49b0-b210-2f470bb4d2ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/a7/4f/28/05a74f28-d4c6-487d-b08e-3fb26499bd6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/f0/4b/6d/05f04b6d-0546-4c02-97ab-fa91cb7727b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/20/6b/26/05206b26-3761-432b-81fb-e83a681ed5d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/94/8c/b2/05948cb2-872b-4a4e-91fb-5277949255ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/51/08/58/05510858-810b-4c20-80a0-9379fe7535cb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/e9/d4/c1/05e9d4c1-6a86-4341-a77c-ebd4a5db3be5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/a6/a0/25/05a6a025-1094-47b9-b1b3-c8b764cc349d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/05/d0/ef/76/05d0ef76-3a9b-44f8-932d-7194842e2979\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/f8/7b/fc/5ef87bfc-d4d2-44e8-8d0a-1c8a67003876\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/26/a9/1e/5e26a91e-6256-487f-9364-94f795fbae74\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/00/a0/99/5e00a099-06b3-4b47-ac2e-b8520ca32f8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/49/6a/ca/5e496aca-db7f-44c9-9850-a8db31b8721d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/70/90/83/5e709083-4fe4-4147-afb9-15421b2b79b8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/70/b7/e3/5e70b7e3-5bcb-480c-a467-65d14f56b08e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/45/08/41/5e450841-e6ab-4e81-8166-ef7ee8791979\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/6a/bb/72/5e6abb72-b67f-4e41-9a7e-7382ca9626b3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/6b/bf/a9/5e6bbfa9-2c65-4116-939c-6f2764d44ad4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/60/42/df/5e6042df-6089-4472-93bb-105c803e9f4d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/60/a1/33/5e60a133-32cd-4ffb-92f8-4bc252a02d68\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/ed/7e/08/5eed7e08-2ba5-484c-ae3c-c0550b7772c0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/c7/34/8f/5ec7348f-6bb6-4224-8930-0744b9a458e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/e1/18/e3/5ee118e3-3c46-49e4-b6d7-a4f920c63bc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/a6/e3/3e/5ea6e33e-acc3-4bd8-82ae-3d7d49b84483\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/0a/eb/59/5e0aeb59-d222-4107-b180-e92d4c00bfe1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/8c/13/f1/5e8c13f1-c88c-4038-ad9e-1df0cb38f0a4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/36/2d/d3/5e362dd3-30b2-4b26-a96e-c36e8919dc00\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/8e/6e/6f/5e8e6e6f-d7c4-4137-af21-ce2f85b82d25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/b5/a5/a2/5eb5a5a2-e915-4816-bab8-3e6358fb0c4c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/5f/b6/bf/5e5fb6bf-a140-4367-b8d4-1c599753d82a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/99/9b/b9/5e999bb9-3302-4c7e-8a2b-794b7b11b5aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/f0/a1/88/5ef0a188-b3cd-4547-9e5d-c89bbb9ecca9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/55/62/1b/5e55621b-5835-4360-ab7a-f5c164eaca51\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/28/b8/3f/5e28b83f-e320-43c1-99f4-1b078ac1a59e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/a1/ce/84/5ea1ce84-86f9-4a7a-b7e1-26953e8741de\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/7c/2b/a8/5e7c2ba8-48af-4e62-961a-f7d73f1cebf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/18/92/7e/5e18927e-9526-4bd6-aad4-d36d2f559c45\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/5e/4a/63/60/5e4a6360-ac11-4223-ad0e-b6d9debaa717\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/b4/b4/3e/7db4b43e-f359-4c7b-a343-51b2cbb2e0ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/bb/87/64/7dbb8764-6e56-4963-86d9-066fa7ee0147\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/9a/12/20/7d9a1220-44b0-4470-8427-ce54ec45f245\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/9a/0d/80/7d9a0d80-e60b-4826-8786-32cb8c605d49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/6d/c9/c3/7d6dc9c3-b254-4bd7-86c8-cec92930daee\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/ab/1c/c8/7dab1cc8-65a5-47bd-97af-9c513a02ba33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/ab/cb/a3/7dabcba3-d18b-437e-8ad4-e8e05f5a9393\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/87/00/dd/7d8700dd-7768-4b88-89d8-5e6a28573aed\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/c2/44/a4/7dc244a4-6876-4cc2-adb7-a28f63cab89d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/ff/fe/24/7dfffe24-31a8-4c18-a86d-28ca39a7c42c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/98/1e/e8/7d981ee8-4da4-4e12-8fd4-0ab95a287eb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/e3/b0/eb/7de3b0eb-0d85-4c3f-9f5a-4a2d978aa26c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/e9/96/38/7de99638-1a26-40fa-b977-6acd6f7eab67\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/41/28/7d/7d41287d-3217-41e4-8507-553cc80290cd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/89/5c/45/7d895c45-2c2c-4e39-9fc0-df00c42fbddf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/1e/7b/44/7d1e7b44-1544-4b3c-be96-d39e55511dfd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/2d/df/f3/7d2ddff3-45b1-47e5-b407-075083c8beea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/27/4c/32/7d274c32-3b25-49cb-ab07-22c943113616\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/35/50/a8/7d3550a8-f34c-4a3c-b256-e6ae70aadef3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/35/95/c6/7d3595c6-5b10-460b-96c0-9cd9ff4126e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/a7/28/dd/7da728dd-b818-4fb4-b9ae-dfdd74fce6aa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/fb/17/6f/7dfb176f-608d-4d51-a168-68b64832ee86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/fd/1c/51/7dfd1c51-632c-4e77-8d72-253e3a3610d9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/b0/b5/3c/7db0b53c-9973-4959-b4bb-c2afa951dfe7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/b0/8a/be/7db08abe-2439-412e-a41d-cfdcda5191e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/50/12/92/7d501292-a87c-4c4c-8ee3-04b190320548\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/ec/75/2d/7dec752d-8b2b-4cc1-b083-00758c30622b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/2f/87/7d/7d2f877d-c72a-48d7-b029-150e3e203828\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/11/a2/8c/7d11a28c-897c-418f-b820-b118d66022e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/a2/9d/dc/7da29ddc-20de-4aee-9598-fea64a3f0e84\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/42/8a/fc/7d428afc-22ef-4566-a0dd-7c617a53bf28\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/58/57/e3/7d5857e3-d1fe-475d-8f80-d64eb80a56fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/c1/df/cc/7dc1dfcc-98ed-441d-bd92-1d3643ad3ddc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/7d/ee/03/c3/7dee03c3-102e-44d8-9bb4-592854e38ab1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/d2/d2/b0/a4d2d2b0-5653-44e8-8990-fcd79d831101\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/17/5f/78/a4175f78-8916-4960-b5a5-2e3aa997f3ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/b6/8b/4c/a4b68b4c-02da-415a-a20d-501c1eab3ac6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/24/d5/b0/a424d5b0-85ce-48e7-b20d-7d0feb4a1547\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/6b/ee/f7/a46beef7-faba-4a40-9d53-a8bebb91b2bc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/3b/93/41/a43b9341-6ecb-4a6f-84b5-cab636483100\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/68/91/f6/a46891f6-b451-4208-9f30-0c8572780ac5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/7a/3e/b1/a47a3eb1-2cc6-45a7-a5c3-0495946fa4e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/55/03/34/a4550334-c6b7-4107-8323-d5b7169981d1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/b4/05/b4/a4b405b4-d526-4b7c-ab8f-e7a8a658e0e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/43/d4/81/a443d481-c0ec-4d1b-a59d-0ee946372386\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/d6/73/eb/a4d673eb-9780-41f4-84bb-de83f83c36b1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/e2/e7/10/a4e2e710-27dc-4f3b-a0fd-faa696fff5e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/eb/74/e4/a4eb74e4-aa1d-4e59-90b8-dfc71d264ba7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/2d/2f/50/a42d2f50-224f-4234-96e2-19c24b6f5633\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/de/e3/6f/a4dee36f-bda4-4cfd-beab-8eec0637e2e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/38/2d/ba/a4382dba-1ded-4024-9351-48c49ba77e0c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/4e/fa/f4/a44efaf4-9763-48e8-ae1d-a1edc925d929\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/b2/7f/5a/a4b27f5a-3509-4a12-aed1-f85dc1fe66e8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/94/07/75/a4940775-a878-438f-9803-d21f18d7c20e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/53/65/35/a4536535-6ba6-4100-8fc4-d7fa95d6b7f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/a4/4d/f0/da/a44df0da-440f-4276-b6a8-05f71f5744e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/b0/16/91/08b01691-a0fa-4d92-b8a2-bf7c07b6050d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/61/dc/63/0861dc63-17e4-449c-99c9-2d6dd62acccf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/fe/5d/51/08fe5d51-99ba-456a-91bb-67c86eb684dd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/7c/cc/82/087ccc82-175e-45d4-9306-4289adac11ce\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/33/55/5e/0833555e-0c58-4281-88ab-fc49aef328c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/6d/d7/5c/086dd75c-36bb-42eb-a55b-605a932216fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/bd/23/6c/08bd236c-a4f2-4f48-b24a-f739efcabe05\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/58/d8/35/0858d835-8c5d-497f-8274-6629855884ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/44/26/82/08442682-0edc-480f-b1da-300bbebcc915\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/d4/f7/b9/08d4f7b9-98c4-4ea4-bb99-8a114ce6dbc2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/65/3f/ec/08653fec-5e68-44ff-a574-715dcae3ea08\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/ca/65/6b/08ca656b-8c69-4e2c-bc30-27ceaabe3104\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/52/a6/34/0852a634-649d-4111-8503-e06e6963a013\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/22/d5/c2/0822d5c2-47ff-40cc-b9b1-347f74bcb30d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/c1/e0/b7/08c1e0b7-bc51-4d2b-b75b-7447a6c3378d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/ae/74/9a/08ae749a-c802-491f-8893-55d8b77f17d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/38/07/0e/0838070e-fe51-496b-9a48-61c58d99831c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/75/d9/7d/0875d97d-cee8-419b-86c2-2f953c5e7947\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/3a/cf/23/083acf23-21a3-4351-abc0-41350bd0e151\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/05/15/f2/080515f2-8609-44ea-9bab-26cd9dce6ecd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/08/7d/0f/4b/087d0f4b-35e4-414b-8218-c7fdc3db6451\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/3d/5b/21/b73d5b21-abd5-4abd-8c86-94e81795a717\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/ad/fd/60/b7adfd60-33dd-4bcd-b299-e13bc5e03682\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/87/0f/79/b7870f79-a52b-4158-82df-72089c7307a3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/b9/fa/9d/b7b9fa9d-a906-4ddd-9440-f5d976b35603\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/ae/c6/cc/b7aec6cc-2100-4885-b8af-5ac405f89193\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/48/d8/81/b748d881-3bc4-4463-827a-a41528a0fe59\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/40/de/c0/b740dec0-7b46-493a-9e7f-0bb00da99668\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/e7/37/1b/b7e7371b-a275-43bc-a431-eef5e3873c43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/38/8c/d6/b7388cd6-ce3c-4073-94fe-1b9fb2949b2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/a7/be/98/b7a7be98-ee84-4a4f-b742-f8161aa8a9b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/68/23/a9/b76823a9-d43a-4807-9ae2-6baf7ebde032\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/eb/ba/44/b7ebba44-47af-48f8-8e99-4e2b6004cc95\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/b4/c5/1b/b7b4c51b-9edd-41fd-aa26-540b5a8f094c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/b7/df/5a/20/b7df5a20-e69f-44c0-b822-c0227d5bda7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/05/b3/c5/fc05b3c5-a0e3-43f5-9a19-c035c52604e5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/bb/3e/80/fcbb3e80-7de5-46a8-b607-c4ab60b3a6fa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/47/2b/9c/fc472b9c-8d6d-437e-9d1d-9a98a4b2c6ef\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/56/45/92/fc564592-d079-4df3-9ab8-a26c7b1a886e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/b4/31/d2/fcb431d2-4d50-4d45-97f2-05243ec57bc8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/55/75/fe/fc5575fe-4bf3-43a0-b043-95b684c32335\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/3f/5a/d4/fc3f5ad4-4b82-4d7a-bc15-c83b3ae125af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/1a/b9/7b/fc1ab97b-3dbb-4ab9-aece-7b32240a4d2f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/c8/d0/47/fcc8d047-1cce-4886-a4ef-d13a425ea315\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/3d/b4/e3/fc3db4e3-ca15-4bec-b48a-f4a3ff176b43\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/39/ba/2d/fc39ba2d-8071-4fee-961a-b3f4e5edc99c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/d7/fd/eb/fcd7fdeb-1b0c-4d04-8fd0-bed0e9906108\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/3e/06/14/fc3e0614-eca3-4a80-a044-33ff3236d944\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/be/88/bb/fcbe88bb-cdc3-43e4-9682-2906201fbc24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/be/67/b5/fcbe67b5-7134-4808-a35f-1b191e0079db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/6f/70/de/fc6f70de-7fbc-41ef-befd-9d13bfa9203e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/4a/a6/e1/fc4aa6e1-6caf-4901-a578-f7f7481add6e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/6c/65/f2/fc6c65f2-764c-47c8-b29f-2f772c921c63\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/49/4f/fb/fc494ffb-20f8-49c7-931d-290cdc90c258\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/eb/23/09/fceb2309-ecc9-426c-9957-1a75d2ae3bb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/36/7b/c0/fc367bc0-8622-42ef-8d71-a0eab54b42ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/1f/74/f0/fc1f74f0-86ef-4a40-a8ce-e0dcf2abdad0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fc/7b/ee/d1/fc7beed1-d2ef-4df9-b112-c592cf7a6c49\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/83/42/30/2d834230-78b2-4f9a-8ceb-80d0ea050019\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/91/ef/b2/2d91efb2-1260-4dcd-9de4-95fd618103af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/62/c0/cf/2d62c0cf-fe3b-4d24-a4d7-426358fe016e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/89/d0/5b/2d89d05b-705b-4487-aec1-e6a2de421520\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/fc/c4/71/2dfcc471-434b-4295-9fd6-8302b40b8456\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/b5/d8/b8/2db5d8b8-c55e-4ab1-a83a-9e58356d3df9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/c6/56/c0/2dc656c0-fc7b-44f9-8bab-4550e6bc276d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/d7/6f/56/2dd76f56-b934-4f95-9fef-e8612e1055c3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/8b/3f/b2/2d8b3fb2-ada6-473a-93b5-a8a139389154\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/1f/37/ba/2d1f37ba-ca99-4c7f-9678-be1765ff37d6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/fb/29/29/2dfb2929-a802-4480-9fff-b7fbb11e9f0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/e1/38/47/2de13847-d448-4982-ab5b-f29e79feaf14\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/7b/57/9b/2d7b579b-cb43-4cdd-a9a3-f6de2bc11345\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/7d/e6/ba/2d7de6ba-457c-4d34-b370-b29bdd2fb535\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/bd/c1/a5/2dbdc1a5-d59b-41e4-bb9e-d9a3b8adaf65\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/34/91/c3/2d3491c3-2b22-4310-a809-58715356cf9c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/b8/25/dd/2db825dd-9378-4f19-bc5d-d876218d2c61\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/2d/38/e5/8c/2d38e58c-4cb3-4215-a404-b46892873a7b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/87/fd/ce/4e87fdce-6985-40de-8d66-f691cebcaf80\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/b8/a6/12/4eb8a612-31f9-4cd7-94c6-16b19bfe8422\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/35/df/a6/4e35dfa6-56e3-4583-b85b-946f9c2a1e3e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/f3/a9/98/4ef3a998-52ec-45c3-8eef-355f21422adc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/e7/cd/99/4ee7cd99-a893-47a0-a78f-51c87f7383cf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/d2/30/2f/4ed2302f-2827-4f6c-ba3f-08528ec2f0af\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/de/fe/0c/4edefe0c-9c24-40c5-83ae-319a721c8572\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/bf/b2/61/4ebfb261-532e-4a94-9721-29423b3750e4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/be/0d/09/4ebe0d09-2c4c-4d6b-8d86-afe83eb2d1f8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/66/b4/5f/4e66b45f-9466-4406-8c11-1233b2f8132c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/e4/13/05/4ee41305-82db-4a05-b23e-95b2b04c9ce5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/fc/b0/f2/4efcb0f2-9f33-4c53-b19a-89713f516c6d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/a5/76/bf/4ea576bf-ebcf-4ad5-a44b-15e957a474f4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/8f/e7/96/4e8fe796-5ee0-4ee9-a612-170bcbf5a338\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/4e/fb/12/66/4efb1266-3e79-4108-ae00-7a03ca9386a2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/51/a3/5a/8051a35a-f300-44a1-a76f-af446d548e46\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/63/37/fc/806337fc-1c91-4389-9dab-b13db9b20a25\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/67/d4/ca/8067d4ca-e21c-4bef-bcc5-08d6911fbe24\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/dc/ce/36/80dcce36-670d-41d0-86ff-0a3fdee362b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/ca/56/23/80ca5623-233e-4a2a-94a5-ca503bc74433\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/42/3c/05/80423c05-d0bc-4d4c-b73e-fc4cda2ffbe6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/04/61/91/80046191-6160-498d-a2cf-59f9437d629f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/ae/ea/a3/80aeeaa3-b69e-40a0-b7be-da6f451ae79a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/c3/a0/ca/80c3a0ca-4682-435e-98e5-5e7278b3b0a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/ec/24/f6/80ec24f6-b7b1-462c-9ba1-bc9d4197d14d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/2c/ec/56/802cec56-0881-4e78-b108-5e7066825c93\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/1d/e5/14/801de514-5ab6-4d13-a0b4-74000e87ea5b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/e4/27/2d/80e4272d-d30c-4cb0-9b5d-4d2379d62922\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/a4/73/8a/80a4738a-87ea-46d4-ae69-8d645cacc74e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/52/66/3a/8052663a-4eee-4c78-b110-45a4c5b18485\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/24/7a/e4/80247ae4-0ac6-4c7e-9371-2198758ac808\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/80/da/12/2a/80da122a-92e8-4e56-852f-9c12b5e66c8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/54/26/34/cb542634-ebb0-4b8b-a114-413ee9cfa3b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/ab/ff/f1/cbabfff1-0641-49b2-af71-87f2025e9e2b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/03/ea/49/cb03ea49-72dd-42bd-b28f-e82728f61a97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/03/04/33/cb030433-c0f2-4c17-8a4c-fba2be2f3233\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/68/e4/47/cb68e447-3d03-45c8-a834-82c23a53221a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/33/13/4d/cb33134d-b464-4f67-9734-5ffd215bd4e6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/61/b6/11/cb61b611-1a1e-46a8-9424-a324751a35ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/9e/e6/fd/cb9ee6fd-3466-4b9b-bd42-1a8fbde47ea8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/f2/cf/ba/cbf2cfba-761f-442e-bfa1-4b91d35f6011\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/21/50/f2/cb2150f2-8716-49ba-8b08-3e3b8a7a227d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/52/31/d7/cb5231d7-2ef8-4cad-989d-ff1f2e62525b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/8c/25/5d/cb8c255d-d9eb-4e3f-8a52-e46f81dd7dd8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/95/cb/14/cb95cb14-971e-44ec-a507-bbd31cbb7ea5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/ea/30/4f/cbea304f-55c4-4f3e-b28a-3d783fd232a8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/8e/ba/03/cb8eba03-1fff-43e6-af4f-10c81b5f4b03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/a3/7d/67/cba37d67-6cba-4e7b-883a-5d1bce4d9dfb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/2f/8a/45/cb2f8a45-3f01-483d-b117-ff14ed6e4488\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/cb/43/cb/db/cb43cbdb-1d6d-4060-9c29-dee6147132fb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/5a/6b/19/8d5a6b19-cbe7-4463-ac02-9a572435d5ec\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/d8/94/86/8dd89486-ea85-4bbf-8cb2-07d2a7b1e093\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/f3/1c/3a/8df31c3a-0a4d-40e7-801e-87d4e7d81b1e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/c3/c0/27/8dc3c027-35c5-432a-a7b5-1cf509a00268\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/f4/4c/36/8df44c36-83a4-4266-81f1-44a87f5ea5fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/9a/60/b3/8d9a60b3-8b9f-4aa6-a246-00846f72e25f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/e5/07/ec/8de507ec-66e9-4b06-b819-6a77e4ea7f54\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/fc/a2/72/8dfca272-23a3-44e2-944e-5b3929cce502\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/9c/94/57/8d9c9457-b39a-48ab-894b-53bfc8dbf414\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/87/fa/f5/8d87faf5-703c-4d28-8606-fbf96937eca1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/d9/b4/0b/8dd9b40b-ecf5-458c-a682-72825b752813\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/32/fe/e7/8d32fee7-778b-41c9-8b30-6ab224a03a98\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/33/e4/db/8d33e4db-6ad6-4ddc-b111-3321803a7d90\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/3f/e7/d4/8d3fe7d4-dbe2-4fba-bc69-845cd407d60f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/1e/8b/7b/8d1e8b7b-cc6b-46d6-879a-499b0038c7a9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/8c/91/fb/8d8c91fb-6eda-4e83-b5fc-ef78990e25d5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/7e/45/e4/8d7e45e4-8385-49b7-88d7-763a89b10695\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/9e/42/5d/8d9e425d-a20f-4cbe-9a5e-4e1bf802ed7e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/68/ce/57/8d68ce57-a87a-49c4-88e7-eb8c308a461d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/eb/c3/e8/8debc3e8-7818-4a19-bf1a-0f54700e7cb1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/0f/0b/fe/8d0f0bfe-9fcf-4282-88d1-75e98c80df6a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/8d/96/a0/a6/8d96a0a6-6af3-4d5a-b08c-43de039b2842\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/ec/e3/95/17ece395-4291-47e9-83a2-ef743f48ddf9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/ec/98/22/17ec9822-e9b0-46a2-bda7-1c18ed0a7d18\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/91/87/4f/1791874f-1884-4e64-95f6-aa021ada1133\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/13/3f/cf/17133fcf-37ad-44fe-9db9-27dec442fb37\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/e0/be/7c/17e0be7c-f788-42c0-9657-571a75b7b64c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/d9/64/02/17d96402-ccd6-4d73-abdf-a004668e480b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/c9/11/ef/17c911ef-5aee-4c90-a634-a759bd1e24e1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/7d/96/40/177d9640-a543-4841-aef8-8498a60bc1b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/27/1a/88/17271a88-c460-4643-9aa1-c571e4c2ea5a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/27/4c/7d/17274c7d-b3e6-4b80-ac5f-3b3f8bda5441\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/27/9e/37/17279e37-6de2-4dc8-8778-7ad8ee34e9d3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/24/70/24/17247024-4a06-4e9f-9ffc-65f68828e574\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/c6/25/84/17c62584-91b7-4d4d-8637-7a6d92698a3f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/58/e2/95/1758e295-a098-4a1f-8a72-f7d0addb09b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/39/48/ce/173948ce-7e14-4898-a196-d23691fc9a42\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/71/58/6f/1771586f-6ede-45f8-8e84-a1e2c28abc5e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/4c/9e/1d/174c9e1d-b17c-449a-ae32-4f76e895ece4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/3a/7f/67/173a7f67-89a5-428b-8f8e-302d1359ba29\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/34/bb/32/1734bb32-622f-459c-b393-c2f655cd0cf0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/59/33/b9/175933b9-763d-466c-a8a8-ce2dc55fbffe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/17/76/59/47/17765947-bbd4-4bd1-aa40-05e781cdd52a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/80/5d/35/97805d35-0a63-4093-abf9-ea11030fd12e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/e9/23/6e/97e9236e-13ca-46af-9142-8bf29ead21f3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/4f/a6/8e/974fa68e-8b21-4e39-ae79-47d2f38f7c82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/0f/59/3c/970f593c-36af-4c0e-9a91-7110dad30082\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/96/49/c6/979649c6-7fc7-476d-8e47-a7f5944f1810\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/d3/6a/fb/97d36afb-a59e-4bee-bf99-ebb7b2422d89\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/71/75/1a/9771751a-0f07-4285-b436-b1f94fc6677d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/b6/cd/95/97b6cd95-87c5-414d-ada7-54cfd14414f5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/e6/bd/63/97e6bd63-18ad-4368-9476-f5be7a00b282\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/e0/35/52/97e03552-3752-4f20-87bd-fa7493444832\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/2c/c6/d7/972cc6d7-18a9-4b60-93f7-af1466e19d10\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/2e/f3/3e/972ef33e-f09d-48ea-bd62-cfc75be1dd9f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/18/ae/6d/9718ae6d-6d4f-48a7-b77c-92656b130f20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/8e/04/07/978e0407-28cd-449c-a2c7-325a4828d4b4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/40/72/c1/974072c1-fbcf-4c66-84ad-c90cbebbedfa\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/ad/79/d5/97ad79d5-569b-4b8a-9e93-0aea063a428e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/76/8e/46/97768e46-ed11-4f43-8edc-949b8cee1759\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/97/99/64/cd/979964cd-b852-4975-a4c3-d0d9a0e4d47e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/17/1b/d8/98171bd8-6dbe-4263-b525-7b697c21e0ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/c1/63/35/98c16335-9e5e-4a37-ace2-6bab3f11ccc0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/e8/45/67/98e84567-cea3-4560-8d23-1116c9b8f5ba\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/13/fa/db/9813fadb-06a9-4e72-a6d0-61a6e878eb97\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/65/b7/9a/9865b79a-b5a2-4218-ab32-0c9b0d563034\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/e1/ea/89/98e1ea89-9223-450e-a276-cc4aad7fb89c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/b8/52/11/98b85211-a823-4da5-bc48-c65b47ea2d72\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/25/dc/26/9825dc26-40ec-4cbf-942f-9e82d1bb7eca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/6c/0d/48/986c0d48-67cf-4869-a3f3-69ff8fc73d75\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/ad/3c/af/98ad3caf-cecd-4269-8d5e-7c45696e3dac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/74/fb/45/9874fb45-7ef6-43d7-851a-2679d08f7a09\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/bc/e0/c8/98bce0c8-5a08-42bc-933d-700ab763e8ea\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/bc/b1/d4/98bcb1d4-a07a-4059-92bd-9c1e1a66321f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/59/56/f2/985956f2-f0ef-41d7-9ca1-96f4ace002d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/c8/1e/64/98c81e64-bf06-4a1e-abf2-acfec525142c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/c8/09/ac/98c809ac-e5eb-4dd8-9d39-5625575884b9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/11/40/2c/9811402c-1c60-4c0f-ae2e-f2e2be9809ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/19/45/d9/981945d9-9ceb-4d25-8a45-a3f067a9e153\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/47/ae/35/9847ae35-c2c5-4ac1-82ae-d8be904c5e03\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/5b/1c/34/985b1c34-cc8e-4820-94ff-95d99db5eced\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/df/fa/35/98dffa35-e004-40a0-839f-84223300a86a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/30/db/0e/9830db0e-3695-4d27-b0ae-87daaf5c9d62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/72/5d/2f/98725d2f-53d7-46f2-8fa6-5eb50c4ccb62\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/0f/40/1e/980f401e-dd01-4d19-a7b7-8a3ca96bfe0f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/08/d2/e6/9808d2e6-cb38-45de-904b-f4bddc8795eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/9d/ab/a1/989daba1-248b-4455-8042-73ce94aa59b0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/24/34/56/98243456-bedd-44e8-96c3-9342b6be6a35\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/98/24/c0/82/9824c082-eced-4378-9ba9-4e2067f3ae3a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/2b/01/24/192b0124-fe27-4275-a14d-ad1d1177007c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/2d/a0/13/192da013-0bbd-4b64-aec6-0d610bc56212\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/7a/08/df/197a08df-ad51-46f7-9028-be61ec11c430\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/66/06/bd/196606bd-64ad-4599-87e3-478cd3393ca8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/28/41/5d/1928415d-8949-42a6-bf5c-e534f9709262\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/06/d0/2d/1906d02d-3f19-4441-86c4-dd3bd83fa8fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/0d/39/0e/190d390e-3efa-4215-908e-566d87280463\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/3e/d4/43/193ed443-1ef5-4244-969c-43b9ac0e5584\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/b1/b7/28/19b1b728-790f-4df5-bf68-c0f201d05f7a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/fd/52/cc/19fd52cc-2476-4290-b1da-d5c0c0d26c2d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/67/7b/dd/19677bdd-7afc-498b-9e46-f216a2b578d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/be/6d/b7/19be6db7-facd-4068-977b-5d179ba43bdf\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/16/45/d3/191645d3-7a38-43cf-bb0c-eaadd66a2d6b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/4c/c7/d7/194cc7d7-68cd-42cc-9b96-6af22d897308\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/5c/fc/a7/195cfca7-960d-4bfb-a395-382bb9a5333d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/ee/0b/b4/19ee0bb4-f8f4-46fc-b2e8-a07721c07840\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/fa/95/95/19fa9595-db42-43f0-baeb-30bbe38f366b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/8a/16/66/198a1666-60bf-404d-8e33-40aa0bd68752\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/19/46/4c/59/19464c59-f43c-423d-a895-bf40904986e9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/5f/3f/d0/635f3fd0-3e6b-45ac-a50d-bf5a4492e915\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/9d/71/1a/639d711a-ec25-4cd5-a6c7-f6cca2438988\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/88/e7/be/6388e7be-d8c0-421b-a3a8-f6a2b9bbcf33\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/dc/49/e2/63dc49e2-3275-48b2-b62d-91e7da832d5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/60/33/87/63603387-237d-48f3-b070-eb403ac1539c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/bf/83/75/63bf8375-24b6-4e9a-9273-bdd19f4ee8eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/64/a3/a0/6364a3a0-1db1-4ab1-8880-cfff690bfb8d\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/8f/f1/60/638ff160-2aa1-4f51-ad70-a847cb597187\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/cb/e7/28/63cbe728-ee0f-49e4-97b7-24a339f85203\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/5d/74/4b/635d744b-ba74-41ab-bd56-09b2e4a9fefc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/87/30/3d/6387303d-6231-4595-86cd-037664e30f40\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/d0/e5/77/63d0e577-022c-47d5-bda5-746b8c2a1ce2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/ce/bd/97/63cebd97-ff58-47f3-ad6c-253afbbe7e53\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/c5/e1/dd/63c5e1dd-e07b-4fef-9a84-eb2579cd2400\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/f6/0c/27/63f60c27-8f89-4e79-b592-91787f3b4de1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/c3/cb/ba/63c3cbba-faf5-46f7-a076-151cfe8bf50f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/fe/ae/2b/63feae2b-461f-4327-9c24-1d3486313dd3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/63/8a/bc/2c/638abc2c-f895-4e7d-a449-ffcf8983f899\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/71/15/97/0d711597-9d36-40bd-b7d2-0ecbbda00abc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/96/b3/c4/0d96b3c4-d15c-4637-81fe-b171f0334b41\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/e2/44/78/0de24478-1ab0-41c5-b49e-e4db1c3db288\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/22/59/01/0d225901-ba65-4233-99a1-71705f6d564b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/70/6a/94/0d706a94-bf51-404e-9ea8-f2125a8954fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/0b/db/35/0d0bdb35-11b7-4603-8edc-bf967a907b20\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/d5/f3/f3/0dd5f3f3-b896-4f0c-a6ca-6d2dac433546\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/c7/68/ac/0dc768ac-a7b7-486d-9131-224bb1c913b5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/b7/cc/eb/0db7cceb-4c12-4ca1-bd96-71fa6aa13dab\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/b7/23/9d/0db7239d-e1bf-42b1-986b-9eaab537dd1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/fc/d4/82/0dfcd482-ff71-41e4-9d02-a383ebf9b686\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/4e/e6/ef/0d4ee6ef-af50-4bc4-876a-f40fb59234e2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/d0/6f/54/0dd06f54-a46c-463a-ad49-3a11c9f93292\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/44/a1/71/0d44a171-a57c-4c70-8f0d-d5e85a0e76e0\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/63/66/6c/0d63666c-85ca-4319-b066-55174bff003c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/f2/33/4e/0df2334e-4d6c-4c4e-a066-cbc4ecd6c0fe\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/67/ab/5b/0d67ab5b-e816-49ef-9907-9f98d9df823c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/10/b2/88/0d10b288-559c-4de3-9803-80fcab555a0a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/0d/1a/15/d2/0d1a15d2-c249-4aa2-abf5-82ca1199bad4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/76/1a/16/c0761a16-c94a-49a8-a092-d8c34727cf38\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/9b/37/8c/c09b378c-5ed3-4b57-981e-80e3b3131fd4\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/fd/9e/24/c0fd9e24-0b08-45a7-a061-4d5a97fde232\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/43/77/71/c0437771-002e-4b60-9df0-f3fb9308a813\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/33/7d/4c/c0337d4c-2088-4446-9a8f-8dd39abc4053\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/6c/94/db/c06c94db-41a9-41c1-a47c-3aa64df2c52b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/92/e8/92/c092e892-5397-44de-9f1e-dd0eea5fb087\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/ba/44/f5/c0ba44f5-3064-42f9-9cd3-76028ff5fd47\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/67/82/8c/c067828c-898e-422b-a302-f214ba78f6d7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/60/6c/b6/c0606cb6-5121-4613-afe5-0d4111d4c658\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/01/eb/34/c001eb34-07e4-4790-ade7-2b2628526dd9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/e7/ce/69/c0e7ce69-b609-4d84-b7db-ec956df1a448\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/b1/9b/45/c0b19b45-a4a3-4a52-80f4-3f0d0eb4b822\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/42/8d/64/c0428d64-38c8-4f32-8bf0-415974540cc1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/7e/10/48/c07e1048-7d3d-4dcb-b44f-3660b5ca5d86\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/d1/1a/d0/c0d11ad0-3808-4893-90d0-e207455a80c9\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/96/66/39/c0966639-d8c5-49f7-8939-4ab5437cee96\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/9e/71/10/c09e7110-fb88-4989-9e3c-62e9ee426bdc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/38/9f/19/c0389f19-9a36-4b51-856e-cccfc1cfbcb2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/cc/8f/f0/c0cc8ff0-95a6-4d56-b238-47ba9c24b354\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/b6/27/d9/c0b627d9-1d7b-4b9e-8a83-ffbd19809cb5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/48/54/0c/c048540c-7deb-4476-991e-644b1e1fb9d8\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/53/83/1a/c053831a-8282-4ad4-ba8c-d16ff9a427ca\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/c0/29/41/ba/c02941ba-75a9-41b4-bc80-12d7af16bbbd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/9f/e5/94/fb9fe594-a725-450d-9d47-107bb19ed477\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/b2/7e/84/fbb27e84-19f3-4c91-aece-2d72fa48d007\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/89/23/38/fb892338-80cb-4c91-83d4-ee5f31981756\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/89/2d/9f/fb892d9f-6e1d-4504-9da8-4fb50250b881\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/9e/da/ad/fb9edaad-3ac3-4cb6-a87e-973c305301fd\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/8f/0a/fc/fb8f0afc-4023-4b05-ae52-ef47afde102e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/09/2c/5c/fb092c5c-8ff5-4c28-a11f-b033b1e0cd5c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/f5/cc/52/fbf5cc52-ad0f-47d1-9888-30374275bc8a\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/da/29/42/fbda2942-ab18-4abd-9cdd-a42539a345c2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/ac/15/4d/fbac154d-a9ea-4613-8f2b-91b2a5ea9da2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/3c/87/5b/fb3c875b-8851-4371-8c88-ea766f140538\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/70/c9/3d/fb70c93d-98dd-4f42-bb76-2def28521e85\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/30/23/55/fb302355-9787-49e2-ad65-2b962a6f548c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/4e/49/35/fb4e4935-ad8d-4169-922b-1157345eb782\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/6e/3e/da/fb6e3eda-33cb-4c82-a56e-d76c47e17985\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/74/c6/82/fb74c682-c454-4249-80df-18812b49f055\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/7e/16/c1/fb7e16c1-f32f-409c-a3a0-32f3b5f4c16c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/40/48/55/fb404855-e95b-4a68-b8c2-3868230d8012\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/44/80/ed/fb4480ed-d005-466b-b29a-97ecb8c64dc5\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/c1/76/05/fbc17605-2dfa-457d-b0eb-75979fe7370c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/f0/e3/0f/fbf0e30f-88f2-487d-ac9b-0628498e8ab2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/a3/38/9b/fba3389b-6ab4-4dcc-aa09-a30aeed51767\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/fa/cd/a2/fbfacda2-23d3-4fea-9454-edf030e3ced6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fb/c4/d0/84/fbc4d084-8228-402c-85cc-202bd1152a1b\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/53/1c/dd/1f531cdd-3fda-4756-8d6a-db6a8e1ed825\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/be/f2/a5/1fbef2a5-dcf7-4aca-9560-a133c8827b8c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/18/00/db/1f1800db-86ad-4f3d-b481-5dbc466c0a82\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/9f/b3/91/1f9fb391-124d-4641-afa4-af64fa3564b7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/e6/c2/95/1fe6c295-768f-4d73-a232-d171e2fe08db\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/3c/9a/01/1f3c9a01-525a-47f7-9ea5-7cc8cefe5837\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/db/0b/4e/1fdb0b4e-9ba5-4b92-8074-c34d7648546e\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/f7/02/72/1ff70272-669f-4eb4-95e7-07d69d6e4b8f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/67/01/b5/1f6701b5-c521-4088-992c-98512f5f29e7\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/3f/07/53/1f3f0753-6b8d-4d12-89b7-784b82ca32f6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/6f/2a/66/1f6f2a66-c3ce-4e8f-b327-25bb0421e5c1\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/11/a7/0b/1f11a70b-8c7a-40ac-ae20-50e82e7defa2\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/11/90/2b/1f11902b-a9b5-4e7f-9b23-dba642b3a5eb\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/09/ec/8c/1f09ec8c-d27c-4770-9d1b-874f5abf7ea3\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/4d/a2/ca/1f4da2ca-4ff8-42c5-a5fa-f54539658af6\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/52/b4/1f/1f52b41f-5293-43ea-b701-e748a24b90ae\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/9b/05/b2/1f9b05b2-1451-48b1-8796-f375b80494fc\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/4a/22/c3/1f4a22c3-c60e-4543-ab0a-72c60a6efe1c\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/69/ec/24/1f69ec24-2719-4cb5-88b6-53799095b6ac\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/b5/d3/65/1fb5d365-ce22-4c21-8506-fdbf9de92838\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/af/87/c5/1faf87c5-06e3-4716-a5b3-b6dcbb1d1148\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/55/88/e1/1f5588e1-c8b2-4c90-89fa-38524c133639\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/95/14/05/1f951405-fa2a-45d9-afc8-200d5499614f\"\n  }, {\n    \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/1f/bc/8d/a4/1fbc8da4-9565-4b8e-80be-db5ce92b7f5a\"\n  } ]\n}, {\n  \"@id\" : \"http://localhost:8984/rest/4e/38/da/ba/4e38daba-a6b9-4ffb-a138-52041782f2cb/fcr:export?format=jcr/xml\",\n  \"http://purl.org/dc/elements/1.1/format\" : [ {\n    \"@id\" : \"http://fedora.info/definitions/v4/repository#jcr/xml\"\n  } ]\n} ]\n"
  },
  {
    "path": "example-files/poe-context.jsonld",
    "content": "{\n \"@context\": {\n    \"odrl\":    \"http://www.w3.org/ns/odrl/2/\",\n    \"rdf\":     \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n    \"rdfs\":    \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"owl\":     \"http://www.w3.org/2002/07/owl#\",\n    \"skos\":    \"http://www.w3.org/2004/02/skos/core#\",\n    \"dct\":     \"http://purl.org/dc/terms/\",\n    \"xsd\":     \"http://www.w3.org/2001/XMLSchema#\",\n\n    \"id\":      {\"@type\": \"@id\", \"@id\": \"@id\"},\n    \"type\":    {\"@type\": \"@id\", \"@id\": \"@type\"},\n\n    \"Policy\":           \"odrl:Policy\",\n    \"Rule\":             \"odrl:Rule\",\n    \"profile\":          {\"@type\": \"@id\", \"@id\": \"odrl:profile\"},\n\n    \"inheritAllowed\":   {\"@type\": \"xsd:boolean\", \"@id\": \"odrl:inheritAllowed\"},\n    \"inheritFrom\":      {\"@type\": \"@id\", \"@id\": \"odrl:inheritFrom\"},\n    \"inheritRelation\":  {\"@type\": \"@id\", \"@id\": \"odrl:inheritRelation\"},\n\n    \"ConflictTerm\":     \"odrl:ConflictTerm\",\n    \"conflict\":         {\"@type\": \"@id\", \"@id\": \"odrl:conflict\"},\n    \"perm\":             \"odrl:perm\",\n    \"prohibit\":         \"odrl:prohibit\",\n    \"invalid\":          \"odrl:invalid\",\n\n    \"UndefinedTerm\":     \"odrl:UndefinedTerm\",\n    \"undefined\":         {\"@type\": \"@id\", \"@id\": \"odrl:undefined\"},\n    \"ignore\":            \"odrl:ignore\",\n    \"invalid\":           \"odrl:invalid\",\n    \"support\":           \"odrl:support\",\n\n    \"Agreement\":           \"odrl:Agreement\",\n    \"Assertion\":           \"odrl:Assertion\",\n    \"Offer\":               \"odrl:Offer\",\n    \"Privacy\":             \"odrl:Privacy\",\n    \"Request\":             \"odrl:Request\",\n    \"Set\":                 \"odrl:Set\",\n    \"Ticket\":              \"odrl:Ticket\",\n\n    \"Asset\":               \"odrl:Asset\",\n    \"relation\":            {\"@type\": \"@id\", \"@id\": \"odrl:relation\"},\n    \"scope\":               {\"@type\": \"@id\", \"@id\": \"odrl:scope\"},\n\n    \"target\":             {\"@type\": \"@id\", \"@id\": \"odrl:target\"},\n    \"output\":             {\"@type\": \"@id\", \"@id\": \"odrl:output\"},\n\n    \"Party\":              \"odrl:Party\",\n    \"function\":           {\"@type\": \"@id\", \"@id\": \"odrl:fuction\"},\n    \"PartyScope\":         \"odrl:PartyScope\",\n    \"scope\":              {\"@type\": \"@id\", \"@id\": \"odrl:scope\"},\n\n    \"assignee\":             {\"@type\": \"@id\", \"@id\": \"odrl:assignee\"},\n    \"assigner\":             {\"@type\": \"@id\", \"@id\": \"odrl:assigner\"},\n    \"attributedParty\":      {\"@type\": \"@id\", \"@id\": \"odrl:attributedParty\"},\n    \"compensatedParty\":     {\"@type\": \"@id\", \"@id\": \"odrl:compensatedParty\"},\n    \"compensatingParty\":    {\"@type\": \"@id\", \"@id\": \"odrl:compensatingParty\"},\n    \"consentingParty\":      {\"@type\": \"@id\", \"@id\": \"odrl:consentingParty\"},\n    \"informedParty\":        {\"@type\": \"@id\", \"@id\": \"odrl:informedParty\"},\n    \"trackingParty\":        {\"@type\": \"@id\", \"@id\": \"odrl:trackingParty\"},\n\n    \"Group\":                 \"odrl:Group\",\n    \"Individual\":            \"odrl:Individual\",\n    \"All\":                   \"odrl:All\",\n    \"AllConnections\":        \"odrl:AllConnections\",\n    \"All2ndConnections\":     \"odrl:All2ndConnections\",\n    \"AllGroups\":             \"odrl:AllGroups\",\n\n    \"Action\":                \"odrl:Action\",\n    \"action\":                {\"@type\": \"@id\", \"@id\": \"odrl:action\"},\n    \n    \"Permission\":            \"odrl:Permission\",\n    \"permission\":            {\"@type\": \"@id\", \"@id\": \"odrl:permission\"},\n\n    \"Prohibition\":           \"odrl:Prohibition\",\n    \"prohibition\":           {\"@type\": \"@id\", \"@id\": \"odrl:prohibition\"},\n\n    \"use\":                   \"odrl:use\",\n    \"grantUse\":              \"odrl:grantUse\",\n    \"aggregate\":             \"odrl:aggregate\",\n    \"annotate\":              \"odrl:annotate\",\n    \"anonymize\":             \"odrl:anonymize\",\n    \"archive\":               \"odrl:archive\",\n    \"concurrentUse\":         \"odrl:concurrentUse\",\n    \"derive\":                \"odrl:derive\",\n    \"digitize\":              \"odrl:digitize\",\n    \"display\":               \"odrl:display\",\n    \"distribute\":            \"odrl:distribute\",\n    \"execute\":               \"odrl:execute\",\n    \"extract\":               \"odrl:extract\",\n    \"give\":                  \"odrl:give\",\n    \"index\":                 \"odrl:index\",\n    \"install\":               \"odrl:install\",\n    \"modify\":                \"odrl:modify\",\n    \"move\":                  \"odrl:move\",\n    \"play\":                  \"odrl:play\",\n    \"present\":               \"odrl:present\",\n    \"print\":                 \"odrl:print\",\n    \"read\":                  \"odrl:read\",\n    \"reproduce\":             \"odrl:reproduce\",\n    \"sell\":                  \"odrl:sell\",\n    \"textToSpeech\":          \"odrl:textToSpeech\",\n    \"transfer\":              \"odrl:transfer\",\n    \"transform\":             \"odrl:transform\",\n    \"translate\":             \"odrl:translate\",\n    \n    \"Duty\":                 \"odrl:Duty\",\n    \"duty\":                 {\"@type\": \"@id\", \"@id\": \"odrl:duty\"},\n\n    \"acceptTracking\":       \"odrl:acceptTracking\",\n    \"attribute\":            \"odrl:attribute\",\n    \"compensate\":           \"odrl:compensate\",\n    \"delete\":               \"odrl:delete\",\n    \"ensureExclusivity\":    \"odrl:ensureExclusivity\",\n    \"include\":              \"odrl:include\",\n    \"inform\":               \"odrl:inform\",\n    \"nextPolicy\":           \"odrl:nextPolicy\",\n    \"obtainConsent\":        \"odrl:obtainConsent\",\n    \"reviewPolicy\":         \"odrl:reviewPolicy\",\n    \"uninstall\":            \"odrl:uninstall\",\n    \"watermark\":            \"odrl:watermark\",\n    \n    \"Constraint\":           \"odrl:Constraint\",\n    \"constraint\":           {\"@type\": \"@id\", \"@id\": \"odrl:constraint\"},\n    \"Operator\":             \"odrl:Operator\",\n    \"operator\":             {\"@type\": \"@id\", \"@id\": \"odrl:operator\"},\n\t\"RightOperand\":         \"odrl:RightOperand\",\n    \"rightOperand\":         \"odrl:rightOperand\",\n    \"rightOperandReference\":{\"@type\": \"xsd:anyURI\", \"@id\": \"odrl:rightOperandReference\"},\n\t\"LeftOperand\":          \"odrl:LeftOperand\",\n\t\"leftOperand\":          {\"@type\": \"@id\", \"@id\": \"odrl:leftOperand\"},\n    \"unit\":                 \"odrl:unit\",\n    \"dataType\":             {\"@type\": \"xsd:anyType\", \"@id\": \"odrl:datatype\"},\n    \"status\":               \"odrl:status\",\n\n    \"absolutePosition\":        \"odrl:absolutePosition\",\n    \"absoluteSpatialPosition\": \"odrl:absoluteSpatialPosition\",\n    \"absoluteTemporalPosition\":\"odrl:absoluteTemporalPosition\",\n    \"absoluteSize\":            \"odrl:absoluteSize\",\n    \"count\":                   \"odrl:count\",\n    \"dateTime\":                \"odrl:dateTime\",\n    \"delayPeriod\":             \"odrl:delayPeriod\",\n    \"deliveryChannel\":         \"odrl:deliveryChannel\",\n    \"elapsedTime\":             \"odrl:elapsedTime\",\n    \"event\":                   \"odrl:event\",\n    \"fileFormat\":              \"odrl:fileFormat\",\n    \"industry\":                \"odrlindustry:\",\n    \"language\":                \"odrl:language\",\n    \"media\":                   \"odrl:media\",\n    \"meteredTime\":             \"odrl:meteredTime\",\n    \"payAmount\":               \"odrl:payAmount\",\n    \"percentage\":              \"odrl:percentage\",\n    \"product\":                 \"odrl:product\",\n    \"purpose\":                 \"odrl:purpose\",\n    \"recipient\":               \"odrl:recipient\",\n    \"relativePosition\":        \"odrl:relativePosition\",\n    \"relativeSpatialPosition\": \"odrl:relativeSpatialPosition\",\n    \"relativeTemporalPosition\":\"odrl:relativeTemporalPosition\",\n    \"relativeSize\":            \"odrl:relativeSize\",\n    \"resolution\":              \"odrl:resolution\",\n    \"spatial\":                 \"odrl:spatial\",\n    \"spatialCoordinates\":      \"odrl:spatialCoordinates\",\n    \"systemDevice\":            \"odrl:systemDevice\",\n    \"timeInterval\":            \"odrl:timeInterval\",\n    \"unitOfCount\":             \"odrl:unitOfCount\",\n    \"version\":                 \"odrl:version\",\n    \"virtualLocation\":         \"odrl:virtualLocation\",\n\n    \"eq\":                   \"odrl:eq\",\n    \"gt\":                   \"odrl:gt\",\n    \"gteq\":                 \"odrl:gteq\",\n    \"lt\":                   \"odrl:lt\",\n    \"lteq\":                 \"odrl:lteq\",\n    \"neq\":                  \"odrl:neg\",\n    \"isA\":                  \"odrl:isA\",\n    \"hasPart\":              \"odrl:hasPart\",\n    \"isPartOf\":             \"odrl:isPartOf\",\n    \"isAllOf\":              \"odrl:isAllOf\",\n    \"isAnyOf\":              \"odrl:isAnyOf\",\n    \"isNoneOf\":             \"odrl:isNoneOf\",\n    \"or\":                   \"odrl:or\",\n    \"xor\":                  \"odrl:xor\",\n    \"and\":                  \"odrl:and\",\n    \"andSequence\":          \"odrl:andSequence\",\n\n    \"policyUsage\":                \"odrl:policyUsage\"\n    \n    }\n}"
  },
  {
    "path": "example-files/pr-509.jsonld",
    "content": "{\n  \"@context\": {\n    \"name\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@list\",\n      \"@id\": \"https://schema.org/name\"\n    }\n  },\n  \"name\": []\n}"
  },
  {
    "path": "example-files/rdf.ttl",
    "content": "@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n@prefix owl: <http://www.w3.org/2002/07/owl#> .\n@prefix dc: <http://purl.org/dc/elements/1.1/> .\n\n<http://www.w3.org/1999/02/22-rdf-syntax-ns#> a owl:Ontology ;\n\tdc:title \"The RDF Concepts Vocabulary (RDF)\" ;\n\tdc:description \"This is the RDF Schema for the RDF vocabulary terms in the RDF Namespace, defined in RDF 1.1 Concepts.\" .\n\nrdf:HTML a rdfs:Datatype ;\n\trdfs:subClassOf rdfs:Literal ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-html> ;\n\trdfs:label \"HTML\" ;\n\trdfs:comment \"The datatype of RDF literals storing fragments of HTML content\" .\n\nrdf:langString a rdfs:Datatype ;\n\trdfs:subClassOf rdfs:Literal ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:seeAlso <http://www.w3.org/TR/rdf11-concepts/#section-Graph-Literal> ;\n\trdfs:label \"langString\" ;\n\trdfs:comment \"The datatype of language-tagged string values\" .\n\nrdf:PlainLiteral a rdfs:Datatype ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:subClassOf rdfs:Literal ;\n\trdfs:seeAlso <http://www.w3.org/TR/rdf-plain-literal/> ;\n\trdfs:label \"PlainLiteral\" ;\n\trdfs:comment \"The class of plain (i.e. untyped) literal values, as used in RIF and OWL 2\" .\n\nrdf:type a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"type\" ;\n\trdfs:comment \"The subject is an instance of a class.\" ;\n\trdfs:range rdfs:Class ;\n\trdfs:domain rdfs:Resource .\n\nrdf:Property a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"Property\" ;\n\trdfs:comment \"The class of RDF properties.\" ;\n\trdfs:subClassOf rdfs:Resource .\n\nrdf:Statement a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"Statement\" ;\n\trdfs:subClassOf rdfs:Resource ;\n\trdfs:comment \"The class of RDF statements.\" .\n\nrdf:subject a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"subject\" ;\n\trdfs:comment \"The subject of the subject RDF statement.\" ;\n\trdfs:domain rdf:Statement ;\n\trdfs:range rdfs:Resource .\n\nrdf:predicate a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"predicate\" ;\n\trdfs:comment \"The predicate of the subject RDF statement.\" ;\n\trdfs:domain rdf:Statement ;\n\trdfs:range rdfs:Resource .\n\nrdf:object a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"object\" ;\n\trdfs:comment \"The object of the subject RDF statement.\" ;\n\trdfs:domain rdf:Statement ;\n\trdfs:range rdfs:Resource .\n\nrdf:Bag a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"Bag\" ;\n\trdfs:comment \"The class of unordered containers.\" ;\n\trdfs:subClassOf rdfs:Container .\n\nrdf:Seq a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"Seq\" ;\n\trdfs:comment \"The class of ordered containers.\" ;\n\trdfs:subClassOf rdfs:Container .\n\nrdf:Alt a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"Alt\" ;\n\trdfs:comment \"The class of containers of alternatives.\" ;\n\trdfs:subClassOf rdfs:Container .\n\nrdf:value a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"value\" ;\n\trdfs:comment \"Idiomatic property used for structured values.\" ;\n\trdfs:domain rdfs:Resource ;\n\trdfs:range rdfs:Resource .\n\nrdf:List a rdfs:Class ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"List\" ;\n\trdfs:comment \"The class of RDF Lists.\" ;\n\trdfs:subClassOf rdfs:Resource .\n\nrdf:nil a rdf:List ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"nil\" ;\n\trdfs:comment \"The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it.\" .\n\nrdf:first a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"first\" ;\n\trdfs:comment \"The first item in the subject RDF list.\" ;\n\trdfs:domain rdf:List ;\n\trdfs:range rdfs:Resource .\n\nrdf:rest a rdf:Property ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"rest\" ;\n\trdfs:comment \"The rest of the subject RDF list after the first item.\" ;\n\trdfs:domain rdf:List ;\n\trdfs:range rdf:List .\n\nrdf:XMLLiteral a rdfs:Datatype ;\n\trdfs:subClassOf rdfs:Literal ;\n\trdfs:isDefinedBy <http://www.w3.org/1999/02/22-rdf-syntax-ns#> ;\n\trdfs:label \"XMLLiteral\" ;\n\trdfs:comment \"The datatype of XML literal values.\" .\n"
  },
  {
    "path": "example-files/schema-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\": \"http://schema.org/\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"schema\": \"http://schema.org/\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n\n    \"rdfs:subClassOf\": {\"@type\": \"@id\"},\n    \"name\": \"rdfs:label\",\n    \"description\": \"rdfs:comment\"\n  }\n}\n"
  },
  {
    "path": "example-files/schema-context.rb",
    "content": "# -*- encoding: utf-8 -*-\n# frozen_string_literal: true\n# This file generated automatically from http://schema.org\nrequire 'json/ld'\nclass JSON::LD::Context\n  add_preloaded(\"http://schema.org/\") do\n    new(vocab: \"http://schema.org/\", term_definitions: {\n      \"type\" => TermDefinition.new(\"type\", id: \"@type\", simple: true),\n      \"id\" => TermDefinition.new(\"id\", id: \"@id\", simple: true),\n      \"schema\" => TermDefinition.new(\"schema\", id: \"http://schema.org/\", simple: true),\n      \"cat\" => TermDefinition.new(\"cat\", id: \"http://www.w3.org/ns/dcat#\", simple: true),\n      \"cc\" => TermDefinition.new(\"cc\", id: \"http://creativecommons.org/ns#\", simple: true),\n      \"cnt\" => TermDefinition.new(\"cnt\", id: \"http://www.w3.org/2008/content#\", simple: true),\n      \"ctag\" => TermDefinition.new(\"ctag\", id: \"http://commontag.org/ns#\", simple: true),\n      \"dc\" => TermDefinition.new(\"dc\", id: \"http://purl.org/dc/terms/\", simple: true),\n      \"dcat\" => TermDefinition.new(\"dcat\", id: \"http://www.w3.org/ns/dcat#\", simple: true),\n      \"dcterms\" => TermDefinition.new(\"dcterms\", id: \"http://purl.org/dc/terms/\", simple: true),\n      \"describedby\" => TermDefinition.new(\"describedby\", id: \"http://www.w3.org/2007/05/powder-s#describedby\", simple: true),\n      \"earl\" => TermDefinition.new(\"earl\", id: \"http://www.w3.org/ns/earl#\", simple: true),\n      \"foaf\" => TermDefinition.new(\"foaf\", id: \"http://xmlns.com/foaf/0.1/\", simple: true),\n      \"gldp\" => TermDefinition.new(\"gldp\", id: \"http://www.w3.org/ns/people#\", simple: true),\n      \"gr\" => TermDefinition.new(\"gr\", id: \"http://purl.org/goodrelations/v1#\", simple: true),\n      \"grddl\" => TermDefinition.new(\"grddl\", id: \"http://www.w3.org/2003/g/data-view#\", simple: true),\n      \"ht\" => TermDefinition.new(\"ht\", id: \"http://www.w3.org/2006/http#\", simple: true),\n      \"ical\" => TermDefinition.new(\"ical\", id: \"http://www.w3.org/2002/12/cal/icaltzd#\", simple: true),\n      \"license\" => TermDefinition.new(\"license\", id: \"http://schema.org/license\", type_mapping: \"@id\"),\n      \"ma\" => TermDefinition.new(\"ma\", id: \"http://www.w3.org/ns/ma-ont#\", simple: true),\n      \"og\" => TermDefinition.new(\"og\", id: \"http://ogp.me/ns#\", simple: true),\n      \"org\" => TermDefinition.new(\"org\", id: \"http://www.w3.org/ns/org#\", simple: true),\n      \"owl\" => TermDefinition.new(\"owl\", id: \"http://www.w3.org/2002/07/owl#\", simple: true),\n      \"prov\" => TermDefinition.new(\"prov\", id: \"http://www.w3.org/ns/prov#\", simple: true),\n      \"ptr\" => TermDefinition.new(\"ptr\", id: \"http://www.w3.org/2009/pointers#\", simple: true),\n      \"qb\" => TermDefinition.new(\"qb\", id: \"http://purl.org/linked-data/cube#\", simple: true),\n      \"rdf\" => TermDefinition.new(\"rdf\", id: \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\", simple: true),\n      \"rdfa\" => TermDefinition.new(\"rdfa\", id: \"http://www.w3.org/ns/rdfa#\", simple: true),\n      \"rdfs\" => TermDefinition.new(\"rdfs\", id: \"http://www.w3.org/2000/01/rdf-schema#\", simple: true),\n      \"rev\" => TermDefinition.new(\"rev\", id: \"http://purl.org/stuff/rev#\", simple: true),\n      \"rif\" => TermDefinition.new(\"rif\", id: \"http://www.w3.org/2007/rif#\", simple: true),\n      \"role\" => TermDefinition.new(\"role\", id: \"http://www.w3.org/1999/xhtml/vocab#role\", simple: true),\n      \"rr\" => TermDefinition.new(\"rr\", id: \"http://www.w3.org/ns/r2rml#\", simple: true),\n      \"sd\" => TermDefinition.new(\"sd\", id: \"http://www.w3.org/ns/sparql-service-description#\", simple: true),\n      \"sioc\" => TermDefinition.new(\"sioc\", id: \"http://rdfs.org/sioc/ns#\", simple: true),\n      \"skos\" => TermDefinition.new(\"skos\", id: \"http://www.w3.org/2004/02/skos/core#\", simple: true),\n      \"skosxl\" => TermDefinition.new(\"skosxl\", id: \"http://www.w3.org/2008/05/skos-xl#\", simple: true),\n      \"v\" => TermDefinition.new(\"v\", id: \"http://rdf.data-vocabulary.org/#\", simple: true),\n      \"vcard\" => TermDefinition.new(\"vcard\", id: \"http://www.w3.org/2006/vcard/ns#\", simple: true),\n      \"void\" => TermDefinition.new(\"void\", id: \"http://rdfs.org/ns/void#\", simple: true),\n      \"wdr\" => TermDefinition.new(\"wdr\", id: \"http://www.w3.org/2007/05/powder#\", simple: true),\n      \"wdrs\" => TermDefinition.new(\"wdrs\", id: \"http://www.w3.org/2007/05/powder-s#\", simple: true),\n      \"xhv\" => TermDefinition.new(\"xhv\", id: \"http://www.w3.org/1999/xhtml/vocab#\", simple: true),\n      \"xml\" => TermDefinition.new(\"xml\", id: \"http://www.w3.org/XML/1998/namespace\", simple: true),\n      \"xsd\" => TermDefinition.new(\"xsd\", id: \"http://www.w3.org/2001/XMLSchema#\", simple: true),\n      \"APIReference\" => TermDefinition.new(\"APIReference\", id: \"http://schema.org/APIReference\"),\n      \"Abdomen\" => TermDefinition.new(\"Abdomen\", id: \"http://schema.org/Abdomen\"),\n      \"AboutPage\" => TermDefinition.new(\"AboutPage\", id: \"http://schema.org/AboutPage\"),\n      \"AcceptAction\" => TermDefinition.new(\"AcceptAction\", id: \"http://schema.org/AcceptAction\"),\n      \"Accommodation\" => TermDefinition.new(\"Accommodation\", id: \"http://schema.org/Accommodation\"),\n      \"AccountingService\" => TermDefinition.new(\"AccountingService\", id: \"http://schema.org/AccountingService\"),\n      \"AchieveAction\" => TermDefinition.new(\"AchieveAction\", id: \"http://schema.org/AchieveAction\"),\n      \"Action\" => TermDefinition.new(\"Action\", id: \"http://schema.org/Action\"),\n      \"ActionStatusType\" => TermDefinition.new(\"ActionStatusType\", id: \"http://schema.org/ActionStatusType\"),\n      \"ActivateAction\" => TermDefinition.new(\"ActivateAction\", id: \"http://schema.org/ActivateAction\"),\n      \"ActiveActionStatus\" => TermDefinition.new(\"ActiveActionStatus\", id: \"http://schema.org/ActiveActionStatus\"),\n      \"ActiveNotRecruiting\" => TermDefinition.new(\"ActiveNotRecruiting\", id: \"http://schema.org/ActiveNotRecruiting\"),\n      \"AddAction\" => TermDefinition.new(\"AddAction\", id: \"http://schema.org/AddAction\"),\n      \"AdministrativeArea\" => TermDefinition.new(\"AdministrativeArea\", id: \"http://schema.org/AdministrativeArea\"),\n      \"AdultEntertainment\" => TermDefinition.new(\"AdultEntertainment\", id: \"http://schema.org/AdultEntertainment\"),\n      \"AerobicActivity\" => TermDefinition.new(\"AerobicActivity\", id: \"http://schema.org/AerobicActivity\"),\n      \"AggregateOffer\" => TermDefinition.new(\"AggregateOffer\", id: \"http://schema.org/AggregateOffer\"),\n      \"AggregateRating\" => TermDefinition.new(\"AggregateRating\", id: \"http://schema.org/AggregateRating\"),\n      \"AgreeAction\" => TermDefinition.new(\"AgreeAction\", id: \"http://schema.org/AgreeAction\"),\n      \"Airline\" => TermDefinition.new(\"Airline\", id: \"http://schema.org/Airline\"),\n      \"Airport\" => TermDefinition.new(\"Airport\", id: \"http://schema.org/Airport\"),\n      \"AlbumRelease\" => TermDefinition.new(\"AlbumRelease\", id: \"http://schema.org/AlbumRelease\"),\n      \"AlignmentObject\" => TermDefinition.new(\"AlignmentObject\", id: \"http://schema.org/AlignmentObject\"),\n      \"AllWheelDriveConfiguration\" => TermDefinition.new(\"AllWheelDriveConfiguration\", id: \"http://schema.org/AllWheelDriveConfiguration\"),\n      \"AllocateAction\" => TermDefinition.new(\"AllocateAction\", id: \"http://schema.org/AllocateAction\"),\n      \"AmusementPark\" => TermDefinition.new(\"AmusementPark\", id: \"http://schema.org/AmusementPark\"),\n      \"AnaerobicActivity\" => TermDefinition.new(\"AnaerobicActivity\", id: \"http://schema.org/AnaerobicActivity\"),\n      \"AnatomicalStructure\" => TermDefinition.new(\"AnatomicalStructure\", id: \"http://schema.org/AnatomicalStructure\"),\n      \"AnatomicalSystem\" => TermDefinition.new(\"AnatomicalSystem\", id: \"http://schema.org/AnatomicalSystem\"),\n      \"Anesthesia\" => TermDefinition.new(\"Anesthesia\", id: \"http://schema.org/Anesthesia\"),\n      \"AnimalShelter\" => TermDefinition.new(\"AnimalShelter\", id: \"http://schema.org/AnimalShelter\"),\n      \"Answer\" => TermDefinition.new(\"Answer\", id: \"http://schema.org/Answer\"),\n      \"Apartment\" => TermDefinition.new(\"Apartment\", id: \"http://schema.org/Apartment\"),\n      \"ApartmentComplex\" => TermDefinition.new(\"ApartmentComplex\", id: \"http://schema.org/ApartmentComplex\"),\n      \"Appearance\" => TermDefinition.new(\"Appearance\", id: \"http://schema.org/Appearance\"),\n      \"AppendAction\" => TermDefinition.new(\"AppendAction\", id: \"http://schema.org/AppendAction\"),\n      \"ApplyAction\" => TermDefinition.new(\"ApplyAction\", id: \"http://schema.org/ApplyAction\"),\n      \"ApprovedIndication\" => TermDefinition.new(\"ApprovedIndication\", id: \"http://schema.org/ApprovedIndication\"),\n      \"Aquarium\" => TermDefinition.new(\"Aquarium\", id: \"http://schema.org/Aquarium\"),\n      \"ArriveAction\" => TermDefinition.new(\"ArriveAction\", id: \"http://schema.org/ArriveAction\"),\n      \"ArtGallery\" => TermDefinition.new(\"ArtGallery\", id: \"http://schema.org/ArtGallery\"),\n      \"Artery\" => TermDefinition.new(\"Artery\", id: \"http://schema.org/Artery\"),\n      \"Article\" => TermDefinition.new(\"Article\", id: \"http://schema.org/Article\"),\n      \"AskAction\" => TermDefinition.new(\"AskAction\", id: \"http://schema.org/AskAction\"),\n      \"AssessAction\" => TermDefinition.new(\"AssessAction\", id: \"http://schema.org/AssessAction\"),\n      \"AssignAction\" => TermDefinition.new(\"AssignAction\", id: \"http://schema.org/AssignAction\"),\n      \"Atlas\" => TermDefinition.new(\"Atlas\", id: \"http://schema.org/Atlas\"),\n      \"Attorney\" => TermDefinition.new(\"Attorney\", id: \"http://schema.org/Attorney\"),\n      \"Audience\" => TermDefinition.new(\"Audience\", id: \"http://schema.org/Audience\"),\n      \"AudioObject\" => TermDefinition.new(\"AudioObject\", id: \"http://schema.org/AudioObject\"),\n      \"Audiobook\" => TermDefinition.new(\"Audiobook\", id: \"http://schema.org/Audiobook\"),\n      \"AudiobookFormat\" => TermDefinition.new(\"AudiobookFormat\", id: \"http://schema.org/AudiobookFormat\"),\n      \"AuthorizeAction\" => TermDefinition.new(\"AuthorizeAction\", id: \"http://schema.org/AuthorizeAction\"),\n      \"AutoBodyShop\" => TermDefinition.new(\"AutoBodyShop\", id: \"http://schema.org/AutoBodyShop\"),\n      \"AutoDealer\" => TermDefinition.new(\"AutoDealer\", id: \"http://schema.org/AutoDealer\"),\n      \"AutoPartsStore\" => TermDefinition.new(\"AutoPartsStore\", id: \"http://schema.org/AutoPartsStore\"),\n      \"AutoRental\" => TermDefinition.new(\"AutoRental\", id: \"http://schema.org/AutoRental\"),\n      \"AutoRepair\" => TermDefinition.new(\"AutoRepair\", id: \"http://schema.org/AutoRepair\"),\n      \"AutoWash\" => TermDefinition.new(\"AutoWash\", id: \"http://schema.org/AutoWash\"),\n      \"AutomatedTeller\" => TermDefinition.new(\"AutomatedTeller\", id: \"http://schema.org/AutomatedTeller\"),\n      \"AutomotiveBusiness\" => TermDefinition.new(\"AutomotiveBusiness\", id: \"http://schema.org/AutomotiveBusiness\"),\n      \"Ayurvedic\" => TermDefinition.new(\"Ayurvedic\", id: \"http://schema.org/Ayurvedic\"),\n      \"Bacteria\" => TermDefinition.new(\"Bacteria\", id: \"http://schema.org/Bacteria\"),\n      \"Bakery\" => TermDefinition.new(\"Bakery\", id: \"http://schema.org/Bakery\"),\n      \"Balance\" => TermDefinition.new(\"Balance\", id: \"http://schema.org/Balance\"),\n      \"BankAccount\" => TermDefinition.new(\"BankAccount\", id: \"http://schema.org/BankAccount\"),\n      \"BankOrCreditUnion\" => TermDefinition.new(\"BankOrCreditUnion\", id: \"http://schema.org/BankOrCreditUnion\"),\n      \"BarOrPub\" => TermDefinition.new(\"BarOrPub\", id: \"http://schema.org/BarOrPub\"),\n      \"Barcode\" => TermDefinition.new(\"Barcode\", id: \"http://schema.org/Barcode\"),\n      \"Beach\" => TermDefinition.new(\"Beach\", id: \"http://schema.org/Beach\"),\n      \"BeautySalon\" => TermDefinition.new(\"BeautySalon\", id: \"http://schema.org/BeautySalon\"),\n      \"BedAndBreakfast\" => TermDefinition.new(\"BedAndBreakfast\", id: \"http://schema.org/BedAndBreakfast\"),\n      \"BedDetails\" => TermDefinition.new(\"BedDetails\", id: \"http://schema.org/BedDetails\"),\n      \"BedType\" => TermDefinition.new(\"BedType\", id: \"http://schema.org/BedType\"),\n      \"BefriendAction\" => TermDefinition.new(\"BefriendAction\", id: \"http://schema.org/BefriendAction\"),\n      \"BikeStore\" => TermDefinition.new(\"BikeStore\", id: \"http://schema.org/BikeStore\"),\n      \"Blog\" => TermDefinition.new(\"Blog\", id: \"http://schema.org/Blog\"),\n      \"BlogPosting\" => TermDefinition.new(\"BlogPosting\", id: \"http://schema.org/BlogPosting\"),\n      \"BloodTest\" => TermDefinition.new(\"BloodTest\", id: \"http://schema.org/BloodTest\"),\n      \"BoardingPolicyType\" => TermDefinition.new(\"BoardingPolicyType\", id: \"http://schema.org/BoardingPolicyType\"),\n      \"BodyOfWater\" => TermDefinition.new(\"BodyOfWater\", id: \"http://schema.org/BodyOfWater\"),\n      \"Bone\" => TermDefinition.new(\"Bone\", id: \"http://schema.org/Bone\"),\n      \"Book\" => TermDefinition.new(\"Book\", id: \"http://schema.org/Book\"),\n      \"BookFormatType\" => TermDefinition.new(\"BookFormatType\", id: \"http://schema.org/BookFormatType\"),\n      \"BookSeries\" => TermDefinition.new(\"BookSeries\", id: \"http://schema.org/BookSeries\"),\n      \"BookStore\" => TermDefinition.new(\"BookStore\", id: \"http://schema.org/BookStore\"),\n      \"BookmarkAction\" => TermDefinition.new(\"BookmarkAction\", id: \"http://schema.org/BookmarkAction\"),\n      \"Boolean\" => TermDefinition.new(\"Boolean\", id: \"http://schema.org/Boolean\"),\n      \"BorrowAction\" => TermDefinition.new(\"BorrowAction\", id: \"http://schema.org/BorrowAction\"),\n      \"BowlingAlley\" => TermDefinition.new(\"BowlingAlley\", id: \"http://schema.org/BowlingAlley\"),\n      \"BrainStructure\" => TermDefinition.new(\"BrainStructure\", id: \"http://schema.org/BrainStructure\"),\n      \"Brand\" => TermDefinition.new(\"Brand\", id: \"http://schema.org/Brand\"),\n      \"BreadcrumbList\" => TermDefinition.new(\"BreadcrumbList\", id: \"http://schema.org/BreadcrumbList\"),\n      \"Brewery\" => TermDefinition.new(\"Brewery\", id: \"http://schema.org/Brewery\"),\n      \"Bridge\" => TermDefinition.new(\"Bridge\", id: \"http://schema.org/Bridge\"),\n      \"BroadcastChannel\" => TermDefinition.new(\"BroadcastChannel\", id: \"http://schema.org/BroadcastChannel\"),\n      \"BroadcastEvent\" => TermDefinition.new(\"BroadcastEvent\", id: \"http://schema.org/BroadcastEvent\"),\n      \"BroadcastFrequencySpecification\" => TermDefinition.new(\"BroadcastFrequencySpecification\", id: \"http://schema.org/BroadcastFrequencySpecification\"),\n      \"BroadcastRelease\" => TermDefinition.new(\"BroadcastRelease\", id: \"http://schema.org/BroadcastRelease\"),\n      \"BroadcastService\" => TermDefinition.new(\"BroadcastService\", id: \"http://schema.org/BroadcastService\"),\n      \"BuddhistTemple\" => TermDefinition.new(\"BuddhistTemple\", id: \"http://schema.org/BuddhistTemple\"),\n      \"BusOrCoach\" => TermDefinition.new(\"BusOrCoach\", id: \"http://schema.org/BusOrCoach\"),\n      \"BusReservation\" => TermDefinition.new(\"BusReservation\", id: \"http://schema.org/BusReservation\"),\n      \"BusStation\" => TermDefinition.new(\"BusStation\", id: \"http://schema.org/BusStation\"),\n      \"BusStop\" => TermDefinition.new(\"BusStop\", id: \"http://schema.org/BusStop\"),\n      \"BusTrip\" => TermDefinition.new(\"BusTrip\", id: \"http://schema.org/BusTrip\"),\n      \"BusinessAudience\" => TermDefinition.new(\"BusinessAudience\", id: \"http://schema.org/BusinessAudience\"),\n      \"BusinessEntityType\" => TermDefinition.new(\"BusinessEntityType\", id: \"http://schema.org/BusinessEntityType\"),\n      \"BusinessEvent\" => TermDefinition.new(\"BusinessEvent\", id: \"http://schema.org/BusinessEvent\"),\n      \"BusinessFunction\" => TermDefinition.new(\"BusinessFunction\", id: \"http://schema.org/BusinessFunction\"),\n      \"BuyAction\" => TermDefinition.new(\"BuyAction\", id: \"http://schema.org/BuyAction\"),\n      \"CDFormat\" => TermDefinition.new(\"CDFormat\", id: \"http://schema.org/CDFormat\"),\n      \"CT\" => TermDefinition.new(\"CT\", id: \"http://schema.org/CT\"),\n      \"CableOrSatelliteService\" => TermDefinition.new(\"CableOrSatelliteService\", id: \"http://schema.org/CableOrSatelliteService\"),\n      \"CafeOrCoffeeShop\" => TermDefinition.new(\"CafeOrCoffeeShop\", id: \"http://schema.org/CafeOrCoffeeShop\"),\n      \"Campground\" => TermDefinition.new(\"Campground\", id: \"http://schema.org/Campground\"),\n      \"CampingPitch\" => TermDefinition.new(\"CampingPitch\", id: \"http://schema.org/CampingPitch\"),\n      \"Canal\" => TermDefinition.new(\"Canal\", id: \"http://schema.org/Canal\"),\n      \"CancelAction\" => TermDefinition.new(\"CancelAction\", id: \"http://schema.org/CancelAction\"),\n      \"Car\" => TermDefinition.new(\"Car\", id: \"http://schema.org/Car\"),\n      \"CarUsageType\" => TermDefinition.new(\"CarUsageType\", id: \"http://schema.org/CarUsageType\"),\n      \"Cardiovascular\" => TermDefinition.new(\"Cardiovascular\", id: \"http://schema.org/Cardiovascular\"),\n      \"CardiovascularExam\" => TermDefinition.new(\"CardiovascularExam\", id: \"http://schema.org/CardiovascularExam\"),\n      \"CaseSeries\" => TermDefinition.new(\"CaseSeries\", id: \"http://schema.org/CaseSeries\"),\n      \"Casino\" => TermDefinition.new(\"Casino\", id: \"http://schema.org/Casino\"),\n      \"CassetteFormat\" => TermDefinition.new(\"CassetteFormat\", id: \"http://schema.org/CassetteFormat\"),\n      \"CatholicChurch\" => TermDefinition.new(\"CatholicChurch\", id: \"http://schema.org/CatholicChurch\"),\n      \"Cemetery\" => TermDefinition.new(\"Cemetery\", id: \"http://schema.org/Cemetery\"),\n      \"Chapter\" => TermDefinition.new(\"Chapter\", id: \"http://schema.org/Chapter\"),\n      \"CheckAction\" => TermDefinition.new(\"CheckAction\", id: \"http://schema.org/CheckAction\"),\n      \"CheckInAction\" => TermDefinition.new(\"CheckInAction\", id: \"http://schema.org/CheckInAction\"),\n      \"CheckOutAction\" => TermDefinition.new(\"CheckOutAction\", id: \"http://schema.org/CheckOutAction\"),\n      \"CheckoutPage\" => TermDefinition.new(\"CheckoutPage\", id: \"http://schema.org/CheckoutPage\"),\n      \"ChildCare\" => TermDefinition.new(\"ChildCare\", id: \"http://schema.org/ChildCare\"),\n      \"ChildrensEvent\" => TermDefinition.new(\"ChildrensEvent\", id: \"http://schema.org/ChildrensEvent\"),\n      \"Chiropractic\" => TermDefinition.new(\"Chiropractic\", id: \"http://schema.org/Chiropractic\"),\n      \"ChooseAction\" => TermDefinition.new(\"ChooseAction\", id: \"http://schema.org/ChooseAction\"),\n      \"Church\" => TermDefinition.new(\"Church\", id: \"http://schema.org/Church\"),\n      \"City\" => TermDefinition.new(\"City\", id: \"http://schema.org/City\"),\n      \"CityHall\" => TermDefinition.new(\"CityHall\", id: \"http://schema.org/CityHall\"),\n      \"CivicStructure\" => TermDefinition.new(\"CivicStructure\", id: \"http://schema.org/CivicStructure\"),\n      \"ClaimReview\" => TermDefinition.new(\"ClaimReview\", id: \"http://schema.org/ClaimReview\"),\n      \"Class\" => TermDefinition.new(\"Class\", id: \"http://schema.org/Class\"),\n      \"Clinician\" => TermDefinition.new(\"Clinician\", id: \"http://schema.org/Clinician\"),\n      \"Clip\" => TermDefinition.new(\"Clip\", id: \"http://schema.org/Clip\"),\n      \"ClothingStore\" => TermDefinition.new(\"ClothingStore\", id: \"http://schema.org/ClothingStore\"),\n      \"CoOp\" => TermDefinition.new(\"CoOp\", id: \"http://schema.org/CoOp\"),\n      \"Code\" => TermDefinition.new(\"Code\", id: \"http://schema.org/Code\"),\n      \"CohortStudy\" => TermDefinition.new(\"CohortStudy\", id: \"http://schema.org/CohortStudy\"),\n      \"Collection\" => TermDefinition.new(\"Collection\", id: \"http://schema.org/Collection\"),\n      \"CollectionPage\" => TermDefinition.new(\"CollectionPage\", id: \"http://schema.org/CollectionPage\"),\n      \"CollegeOrUniversity\" => TermDefinition.new(\"CollegeOrUniversity\", id: \"http://schema.org/CollegeOrUniversity\"),\n      \"ComedyClub\" => TermDefinition.new(\"ComedyClub\", id: \"http://schema.org/ComedyClub\"),\n      \"ComedyEvent\" => TermDefinition.new(\"ComedyEvent\", id: \"http://schema.org/ComedyEvent\"),\n      \"ComicCoverArt\" => TermDefinition.new(\"ComicCoverArt\", id: \"http://schema.org/ComicCoverArt\"),\n      \"ComicIssue\" => TermDefinition.new(\"ComicIssue\", id: \"http://schema.org/ComicIssue\"),\n      \"ComicSeries\" => TermDefinition.new(\"ComicSeries\", id: \"http://schema.org/ComicSeries\"),\n      \"ComicStory\" => TermDefinition.new(\"ComicStory\", id: \"http://schema.org/ComicStory\"),\n      \"Comment\" => TermDefinition.new(\"Comment\", id: \"http://schema.org/Comment\"),\n      \"CommentAction\" => TermDefinition.new(\"CommentAction\", id: \"http://schema.org/CommentAction\"),\n      \"CommentPermission\" => TermDefinition.new(\"CommentPermission\", id: \"http://schema.org/CommentPermission\"),\n      \"CommunicateAction\" => TermDefinition.new(\"CommunicateAction\", id: \"http://schema.org/CommunicateAction\"),\n      \"CommunityHealth\" => TermDefinition.new(\"CommunityHealth\", id: \"http://schema.org/CommunityHealth\"),\n      \"CompilationAlbum\" => TermDefinition.new(\"CompilationAlbum\", id: \"http://schema.org/CompilationAlbum\"),\n      \"Completed\" => TermDefinition.new(\"Completed\", id: \"http://schema.org/Completed\"),\n      \"CompletedActionStatus\" => TermDefinition.new(\"CompletedActionStatus\", id: \"http://schema.org/CompletedActionStatus\"),\n      \"CompoundPriceSpecification\" => TermDefinition.new(\"CompoundPriceSpecification\", id: \"http://schema.org/CompoundPriceSpecification\"),\n      \"ComputerLanguage\" => TermDefinition.new(\"ComputerLanguage\", id: \"http://schema.org/ComputerLanguage\"),\n      \"ComputerStore\" => TermDefinition.new(\"ComputerStore\", id: \"http://schema.org/ComputerStore\"),\n      \"ConfirmAction\" => TermDefinition.new(\"ConfirmAction\", id: \"http://schema.org/ConfirmAction\"),\n      \"ConsumeAction\" => TermDefinition.new(\"ConsumeAction\", id: \"http://schema.org/ConsumeAction\"),\n      \"ContactPage\" => TermDefinition.new(\"ContactPage\", id: \"http://schema.org/ContactPage\"),\n      \"ContactPoint\" => TermDefinition.new(\"ContactPoint\", id: \"http://schema.org/ContactPoint\"),\n      \"ContactPointOption\" => TermDefinition.new(\"ContactPointOption\", id: \"http://schema.org/ContactPointOption\"),\n      \"Continent\" => TermDefinition.new(\"Continent\", id: \"http://schema.org/Continent\"),\n      \"ControlAction\" => TermDefinition.new(\"ControlAction\", id: \"http://schema.org/ControlAction\"),\n      \"ConvenienceStore\" => TermDefinition.new(\"ConvenienceStore\", id: \"http://schema.org/ConvenienceStore\"),\n      \"Conversation\" => TermDefinition.new(\"Conversation\", id: \"http://schema.org/Conversation\"),\n      \"CookAction\" => TermDefinition.new(\"CookAction\", id: \"http://schema.org/CookAction\"),\n      \"Corporation\" => TermDefinition.new(\"Corporation\", id: \"http://schema.org/Corporation\"),\n      \"Country\" => TermDefinition.new(\"Country\", id: \"http://schema.org/Country\"),\n      \"Course\" => TermDefinition.new(\"Course\", id: \"http://schema.org/Course\"),\n      \"CourseInstance\" => TermDefinition.new(\"CourseInstance\", id: \"http://schema.org/CourseInstance\"),\n      \"Courthouse\" => TermDefinition.new(\"Courthouse\", id: \"http://schema.org/Courthouse\"),\n      \"CoverArt\" => TermDefinition.new(\"CoverArt\", id: \"http://schema.org/CoverArt\"),\n      \"CreateAction\" => TermDefinition.new(\"CreateAction\", id: \"http://schema.org/CreateAction\"),\n      \"CreativeWork\" => TermDefinition.new(\"CreativeWork\", id: \"http://schema.org/CreativeWork\"),\n      \"CreativeWorkSeason\" => TermDefinition.new(\"CreativeWorkSeason\", id: \"http://schema.org/CreativeWorkSeason\"),\n      \"CreativeWorkSeries\" => TermDefinition.new(\"CreativeWorkSeries\", id: \"http://schema.org/CreativeWorkSeries\"),\n      \"CreditCard\" => TermDefinition.new(\"CreditCard\", id: \"http://schema.org/CreditCard\"),\n      \"Crematorium\" => TermDefinition.new(\"Crematorium\", id: \"http://schema.org/Crematorium\"),\n      \"CrossSectional\" => TermDefinition.new(\"CrossSectional\", id: \"http://schema.org/CrossSectional\"),\n      \"CurrencyConversionService\" => TermDefinition.new(\"CurrencyConversionService\", id: \"http://schema.org/CurrencyConversionService\"),\n      \"DDxElement\" => TermDefinition.new(\"DDxElement\", id: \"http://schema.org/DDxElement\"),\n      \"DJMixAlbum\" => TermDefinition.new(\"DJMixAlbum\", id: \"http://schema.org/DJMixAlbum\"),\n      \"DVDFormat\" => TermDefinition.new(\"DVDFormat\", id: \"http://schema.org/DVDFormat\"),\n      \"DamagedCondition\" => TermDefinition.new(\"DamagedCondition\", id: \"http://schema.org/DamagedCondition\"),\n      \"DanceEvent\" => TermDefinition.new(\"DanceEvent\", id: \"http://schema.org/DanceEvent\"),\n      \"DanceGroup\" => TermDefinition.new(\"DanceGroup\", id: \"http://schema.org/DanceGroup\"),\n      \"DataCatalog\" => TermDefinition.new(\"DataCatalog\", id: \"http://schema.org/DataCatalog\"),\n      \"DataDownload\" => TermDefinition.new(\"DataDownload\", id: \"http://schema.org/DataDownload\"),\n      \"DataFeed\" => TermDefinition.new(\"DataFeed\", id: \"http://schema.org/DataFeed\"),\n      \"DataFeedItem\" => TermDefinition.new(\"DataFeedItem\", id: \"http://schema.org/DataFeedItem\"),\n      \"DataType\" => TermDefinition.new(\"DataType\", id: \"http://schema.org/DataType\"),\n      \"Dataset\" => TermDefinition.new(\"Dataset\", id: \"http://schema.org/Dataset\"),\n      \"Date\" => TermDefinition.new(\"Date\", id: \"http://schema.org/Date\"),\n      \"DateTime\" => TermDefinition.new(\"DateTime\", id: \"http://schema.org/DateTime\"),\n      \"DatedMoneySpecification\" => TermDefinition.new(\"DatedMoneySpecification\", id: \"http://schema.org/DatedMoneySpecification\"),\n      \"DayOfWeek\" => TermDefinition.new(\"DayOfWeek\", id: \"http://schema.org/DayOfWeek\"),\n      \"DaySpa\" => TermDefinition.new(\"DaySpa\", id: \"http://schema.org/DaySpa\"),\n      \"DeactivateAction\" => TermDefinition.new(\"DeactivateAction\", id: \"http://schema.org/DeactivateAction\"),\n      \"DefenceEstablishment\" => TermDefinition.new(\"DefenceEstablishment\", id: \"http://schema.org/DefenceEstablishment\"),\n      \"DeleteAction\" => TermDefinition.new(\"DeleteAction\", id: \"http://schema.org/DeleteAction\"),\n      \"DeliveryChargeSpecification\" => TermDefinition.new(\"DeliveryChargeSpecification\", id: \"http://schema.org/DeliveryChargeSpecification\"),\n      \"DeliveryEvent\" => TermDefinition.new(\"DeliveryEvent\", id: \"http://schema.org/DeliveryEvent\"),\n      \"DeliveryMethod\" => TermDefinition.new(\"DeliveryMethod\", id: \"http://schema.org/DeliveryMethod\"),\n      \"Demand\" => TermDefinition.new(\"Demand\", id: \"http://schema.org/Demand\"),\n      \"DemoAlbum\" => TermDefinition.new(\"DemoAlbum\", id: \"http://schema.org/DemoAlbum\"),\n      \"Dentist\" => TermDefinition.new(\"Dentist\", id: \"http://schema.org/Dentist\"),\n      \"Dentistry\" => TermDefinition.new(\"Dentistry\", id: \"http://schema.org/Dentistry\"),\n      \"DepartAction\" => TermDefinition.new(\"DepartAction\", id: \"http://schema.org/DepartAction\"),\n      \"DepartmentStore\" => TermDefinition.new(\"DepartmentStore\", id: \"http://schema.org/DepartmentStore\"),\n      \"DepositAccount\" => TermDefinition.new(\"DepositAccount\", id: \"http://schema.org/DepositAccount\"),\n      \"Dermatologic\" => TermDefinition.new(\"Dermatologic\", id: \"http://schema.org/Dermatologic\"),\n      \"Dermatology\" => TermDefinition.new(\"Dermatology\", id: \"http://schema.org/Dermatology\"),\n      \"DiabeticDiet\" => TermDefinition.new(\"DiabeticDiet\", id: \"http://schema.org/DiabeticDiet\"),\n      \"Diagnostic\" => TermDefinition.new(\"Diagnostic\", id: \"http://schema.org/Diagnostic\"),\n      \"DiagnosticLab\" => TermDefinition.new(\"DiagnosticLab\", id: \"http://schema.org/DiagnosticLab\"),\n      \"DiagnosticProcedure\" => TermDefinition.new(\"DiagnosticProcedure\", id: \"http://schema.org/DiagnosticProcedure\"),\n      \"Diet\" => TermDefinition.new(\"Diet\", id: \"http://schema.org/Diet\"),\n      \"DietNutrition\" => TermDefinition.new(\"DietNutrition\", id: \"http://schema.org/DietNutrition\"),\n      \"DietarySupplement\" => TermDefinition.new(\"DietarySupplement\", id: \"http://schema.org/DietarySupplement\"),\n      \"DigitalAudioTapeFormat\" => TermDefinition.new(\"DigitalAudioTapeFormat\", id: \"http://schema.org/DigitalAudioTapeFormat\"),\n      \"DigitalDocument\" => TermDefinition.new(\"DigitalDocument\", id: \"http://schema.org/DigitalDocument\"),\n      \"DigitalDocumentPermission\" => TermDefinition.new(\"DigitalDocumentPermission\", id: \"http://schema.org/DigitalDocumentPermission\"),\n      \"DigitalDocumentPermissionType\" => TermDefinition.new(\"DigitalDocumentPermissionType\", id: \"http://schema.org/DigitalDocumentPermissionType\"),\n      \"DigitalFormat\" => TermDefinition.new(\"DigitalFormat\", id: \"http://schema.org/DigitalFormat\"),\n      \"DisagreeAction\" => TermDefinition.new(\"DisagreeAction\", id: \"http://schema.org/DisagreeAction\"),\n      \"Discontinued\" => TermDefinition.new(\"Discontinued\", id: \"http://schema.org/Discontinued\"),\n      \"DiscoverAction\" => TermDefinition.new(\"DiscoverAction\", id: \"http://schema.org/DiscoverAction\"),\n      \"DiscussionForumPosting\" => TermDefinition.new(\"DiscussionForumPosting\", id: \"http://schema.org/DiscussionForumPosting\"),\n      \"DislikeAction\" => TermDefinition.new(\"DislikeAction\", id: \"http://schema.org/DislikeAction\"),\n      \"Distance\" => TermDefinition.new(\"Distance\", id: \"http://schema.org/Distance\"),\n      \"Distillery\" => TermDefinition.new(\"Distillery\", id: \"http://schema.org/Distillery\"),\n      \"DonateAction\" => TermDefinition.new(\"DonateAction\", id: \"http://schema.org/DonateAction\"),\n      \"DoseSchedule\" => TermDefinition.new(\"DoseSchedule\", id: \"http://schema.org/DoseSchedule\"),\n      \"DoubleBlindedTrial\" => TermDefinition.new(\"DoubleBlindedTrial\", id: \"http://schema.org/DoubleBlindedTrial\"),\n      \"DownloadAction\" => TermDefinition.new(\"DownloadAction\", id: \"http://schema.org/DownloadAction\"),\n      \"DrawAction\" => TermDefinition.new(\"DrawAction\", id: \"http://schema.org/DrawAction\"),\n      \"DrinkAction\" => TermDefinition.new(\"DrinkAction\", id: \"http://schema.org/DrinkAction\"),\n      \"DriveWheelConfigurationValue\" => TermDefinition.new(\"DriveWheelConfigurationValue\", id: \"http://schema.org/DriveWheelConfigurationValue\"),\n      \"DrivingSchoolVehicleUsage\" => TermDefinition.new(\"DrivingSchoolVehicleUsage\", id: \"http://schema.org/DrivingSchoolVehicleUsage\"),\n      \"Drug\" => TermDefinition.new(\"Drug\", id: \"http://schema.org/Drug\"),\n      \"DrugClass\" => TermDefinition.new(\"DrugClass\", id: \"http://schema.org/DrugClass\"),\n      \"DrugCost\" => TermDefinition.new(\"DrugCost\", id: \"http://schema.org/DrugCost\"),\n      \"DrugCostCategory\" => TermDefinition.new(\"DrugCostCategory\", id: \"http://schema.org/DrugCostCategory\"),\n      \"DrugLegalStatus\" => TermDefinition.new(\"DrugLegalStatus\", id: \"http://schema.org/DrugLegalStatus\"),\n      \"DrugPregnancyCategory\" => TermDefinition.new(\"DrugPregnancyCategory\", id: \"http://schema.org/DrugPregnancyCategory\"),\n      \"DrugPrescriptionStatus\" => TermDefinition.new(\"DrugPrescriptionStatus\", id: \"http://schema.org/DrugPrescriptionStatus\"),\n      \"DrugStrength\" => TermDefinition.new(\"DrugStrength\", id: \"http://schema.org/DrugStrength\"),\n      \"DryCleaningOrLaundry\" => TermDefinition.new(\"DryCleaningOrLaundry\", id: \"http://schema.org/DryCleaningOrLaundry\"),\n      \"Duration\" => TermDefinition.new(\"Duration\", id: \"http://schema.org/Duration\"),\n      \"EBook\" => TermDefinition.new(\"EBook\", id: \"http://schema.org/EBook\"),\n      \"EPRelease\" => TermDefinition.new(\"EPRelease\", id: \"http://schema.org/EPRelease\"),\n      \"Ear\" => TermDefinition.new(\"Ear\", id: \"http://schema.org/Ear\"),\n      \"EatAction\" => TermDefinition.new(\"EatAction\", id: \"http://schema.org/EatAction\"),\n      \"EducationEvent\" => TermDefinition.new(\"EducationEvent\", id: \"http://schema.org/EducationEvent\"),\n      \"EducationalAudience\" => TermDefinition.new(\"EducationalAudience\", id: \"http://schema.org/EducationalAudience\"),\n      \"EducationalOrganization\" => TermDefinition.new(\"EducationalOrganization\", id: \"http://schema.org/EducationalOrganization\"),\n      \"Electrician\" => TermDefinition.new(\"Electrician\", id: \"http://schema.org/Electrician\"),\n      \"ElectronicsStore\" => TermDefinition.new(\"ElectronicsStore\", id: \"http://schema.org/ElectronicsStore\"),\n      \"ElementarySchool\" => TermDefinition.new(\"ElementarySchool\", id: \"http://schema.org/ElementarySchool\"),\n      \"EmailMessage\" => TermDefinition.new(\"EmailMessage\", id: \"http://schema.org/EmailMessage\"),\n      \"Embassy\" => TermDefinition.new(\"Embassy\", id: \"http://schema.org/Embassy\"),\n      \"Emergency\" => TermDefinition.new(\"Emergency\", id: \"http://schema.org/Emergency\"),\n      \"EmergencyService\" => TermDefinition.new(\"EmergencyService\", id: \"http://schema.org/EmergencyService\"),\n      \"EmployeeRole\" => TermDefinition.new(\"EmployeeRole\", id: \"http://schema.org/EmployeeRole\"),\n      \"EmploymentAgency\" => TermDefinition.new(\"EmploymentAgency\", id: \"http://schema.org/EmploymentAgency\"),\n      \"Endocrine\" => TermDefinition.new(\"Endocrine\", id: \"http://schema.org/Endocrine\"),\n      \"EndorseAction\" => TermDefinition.new(\"EndorseAction\", id: \"http://schema.org/EndorseAction\"),\n      \"Energy\" => TermDefinition.new(\"Energy\", id: \"http://schema.org/Energy\"),\n      \"EngineSpecification\" => TermDefinition.new(\"EngineSpecification\", id: \"http://schema.org/EngineSpecification\"),\n      \"EnrollingByInvitation\" => TermDefinition.new(\"EnrollingByInvitation\", id: \"http://schema.org/EnrollingByInvitation\"),\n      \"EntertainmentBusiness\" => TermDefinition.new(\"EntertainmentBusiness\", id: \"http://schema.org/EntertainmentBusiness\"),\n      \"EntryPoint\" => TermDefinition.new(\"EntryPoint\", id: \"http://schema.org/EntryPoint\"),\n      \"Enumeration\" => TermDefinition.new(\"Enumeration\", id: \"http://schema.org/Enumeration\"),\n      \"EnumerationValue\" => TermDefinition.new(\"EnumerationValue\", id: \"http://schema.org/EnumerationValue\"),\n      \"EnumerationValueSet\" => TermDefinition.new(\"EnumerationValueSet\", id: \"http://schema.org/EnumerationValueSet\"),\n      \"Episode\" => TermDefinition.new(\"Episode\", id: \"http://schema.org/Episode\"),\n      \"Event\" => TermDefinition.new(\"Event\", id: \"http://schema.org/Event\"),\n      \"EventCancelled\" => TermDefinition.new(\"EventCancelled\", id: \"http://schema.org/EventCancelled\"),\n      \"EventPostponed\" => TermDefinition.new(\"EventPostponed\", id: \"http://schema.org/EventPostponed\"),\n      \"EventRescheduled\" => TermDefinition.new(\"EventRescheduled\", id: \"http://schema.org/EventRescheduled\"),\n      \"EventReservation\" => TermDefinition.new(\"EventReservation\", id: \"http://schema.org/EventReservation\"),\n      \"EventScheduled\" => TermDefinition.new(\"EventScheduled\", id: \"http://schema.org/EventScheduled\"),\n      \"EventSeries\" => TermDefinition.new(\"EventSeries\", id: \"http://schema.org/EventSeries\"),\n      \"EventStatusType\" => TermDefinition.new(\"EventStatusType\", id: \"http://schema.org/EventStatusType\"),\n      \"EventVenue\" => TermDefinition.new(\"EventVenue\", id: \"http://schema.org/EventVenue\"),\n      \"EvidenceLevelA\" => TermDefinition.new(\"EvidenceLevelA\", id: \"http://schema.org/EvidenceLevelA\"),\n      \"EvidenceLevelB\" => TermDefinition.new(\"EvidenceLevelB\", id: \"http://schema.org/EvidenceLevelB\"),\n      \"EvidenceLevelC\" => TermDefinition.new(\"EvidenceLevelC\", id: \"http://schema.org/EvidenceLevelC\"),\n      \"ExerciseAction\" => TermDefinition.new(\"ExerciseAction\", id: \"http://schema.org/ExerciseAction\"),\n      \"ExerciseGym\" => TermDefinition.new(\"ExerciseGym\", id: \"http://schema.org/ExerciseGym\"),\n      \"ExercisePlan\" => TermDefinition.new(\"ExercisePlan\", id: \"http://schema.org/ExercisePlan\"),\n      \"ExhibitionEvent\" => TermDefinition.new(\"ExhibitionEvent\", id: \"http://schema.org/ExhibitionEvent\"),\n      \"Eye\" => TermDefinition.new(\"Eye\", id: \"http://schema.org/Eye\"),\n      \"FDAcategoryA\" => TermDefinition.new(\"FDAcategoryA\", id: \"http://schema.org/FDAcategoryA\"),\n      \"FDAcategoryB\" => TermDefinition.new(\"FDAcategoryB\", id: \"http://schema.org/FDAcategoryB\"),\n      \"FDAcategoryC\" => TermDefinition.new(\"FDAcategoryC\", id: \"http://schema.org/FDAcategoryC\"),\n      \"FDAcategoryD\" => TermDefinition.new(\"FDAcategoryD\", id: \"http://schema.org/FDAcategoryD\"),\n      \"FDAcategoryX\" => TermDefinition.new(\"FDAcategoryX\", id: \"http://schema.org/FDAcategoryX\"),\n      \"FDAnotEvaluated\" => TermDefinition.new(\"FDAnotEvaluated\", id: \"http://schema.org/FDAnotEvaluated\"),\n      \"FailedActionStatus\" => TermDefinition.new(\"FailedActionStatus\", id: \"http://schema.org/FailedActionStatus\"),\n      \"FastFoodRestaurant\" => TermDefinition.new(\"FastFoodRestaurant\", id: \"http://schema.org/FastFoodRestaurant\"),\n      \"Female\" => TermDefinition.new(\"Female\", id: \"http://schema.org/Female\"),\n      \"Festival\" => TermDefinition.new(\"Festival\", id: \"http://schema.org/Festival\"),\n      \"FilmAction\" => TermDefinition.new(\"FilmAction\", id: \"http://schema.org/FilmAction\"),\n      \"FinancialProduct\" => TermDefinition.new(\"FinancialProduct\", id: \"http://schema.org/FinancialProduct\"),\n      \"FinancialService\" => TermDefinition.new(\"FinancialService\", id: \"http://schema.org/FinancialService\"),\n      \"FindAction\" => TermDefinition.new(\"FindAction\", id: \"http://schema.org/FindAction\"),\n      \"FireStation\" => TermDefinition.new(\"FireStation\", id: \"http://schema.org/FireStation\"),\n      \"Flexibility\" => TermDefinition.new(\"Flexibility\", id: \"http://schema.org/Flexibility\"),\n      \"Flight\" => TermDefinition.new(\"Flight\", id: \"http://schema.org/Flight\"),\n      \"FlightReservation\" => TermDefinition.new(\"FlightReservation\", id: \"http://schema.org/FlightReservation\"),\n      \"Float\" => TermDefinition.new(\"Float\", id: \"http://schema.org/Float\"),\n      \"Florist\" => TermDefinition.new(\"Florist\", id: \"http://schema.org/Florist\"),\n      \"FollowAction\" => TermDefinition.new(\"FollowAction\", id: \"http://schema.org/FollowAction\"),\n      \"FoodEstablishment\" => TermDefinition.new(\"FoodEstablishment\", id: \"http://schema.org/FoodEstablishment\"),\n      \"FoodEstablishmentReservation\" => TermDefinition.new(\"FoodEstablishmentReservation\", id: \"http://schema.org/FoodEstablishmentReservation\"),\n      \"FoodEvent\" => TermDefinition.new(\"FoodEvent\", id: \"http://schema.org/FoodEvent\"),\n      \"FoodService\" => TermDefinition.new(\"FoodService\", id: \"http://schema.org/FoodService\"),\n      \"FourWheelDriveConfiguration\" => TermDefinition.new(\"FourWheelDriveConfiguration\", id: \"http://schema.org/FourWheelDriveConfiguration\"),\n      \"Friday\" => TermDefinition.new(\"Friday\", id: \"http://schema.org/Friday\"),\n      \"FrontWheelDriveConfiguration\" => TermDefinition.new(\"FrontWheelDriveConfiguration\", id: \"http://schema.org/FrontWheelDriveConfiguration\"),\n      \"Fungus\" => TermDefinition.new(\"Fungus\", id: \"http://schema.org/Fungus\"),\n      \"FurnitureStore\" => TermDefinition.new(\"FurnitureStore\", id: \"http://schema.org/FurnitureStore\"),\n      \"Game\" => TermDefinition.new(\"Game\", id: \"http://schema.org/Game\"),\n      \"GamePlayMode\" => TermDefinition.new(\"GamePlayMode\", id: \"http://schema.org/GamePlayMode\"),\n      \"GameServer\" => TermDefinition.new(\"GameServer\", id: \"http://schema.org/GameServer\"),\n      \"GameServerStatus\" => TermDefinition.new(\"GameServerStatus\", id: \"http://schema.org/GameServerStatus\"),\n      \"GardenStore\" => TermDefinition.new(\"GardenStore\", id: \"http://schema.org/GardenStore\"),\n      \"GasStation\" => TermDefinition.new(\"GasStation\", id: \"http://schema.org/GasStation\"),\n      \"Gastroenterologic\" => TermDefinition.new(\"Gastroenterologic\", id: \"http://schema.org/Gastroenterologic\"),\n      \"GatedResidenceCommunity\" => TermDefinition.new(\"GatedResidenceCommunity\", id: \"http://schema.org/GatedResidenceCommunity\"),\n      \"GenderType\" => TermDefinition.new(\"GenderType\", id: \"http://schema.org/GenderType\"),\n      \"GeneralContractor\" => TermDefinition.new(\"GeneralContractor\", id: \"http://schema.org/GeneralContractor\"),\n      \"Genetic\" => TermDefinition.new(\"Genetic\", id: \"http://schema.org/Genetic\"),\n      \"Genitourinary\" => TermDefinition.new(\"Genitourinary\", id: \"http://schema.org/Genitourinary\"),\n      \"GeoCircle\" => TermDefinition.new(\"GeoCircle\", id: \"http://schema.org/GeoCircle\"),\n      \"GeoCoordinates\" => TermDefinition.new(\"GeoCoordinates\", id: \"http://schema.org/GeoCoordinates\"),\n      \"GeoShape\" => TermDefinition.new(\"GeoShape\", id: \"http://schema.org/GeoShape\"),\n      \"Geriatric\" => TermDefinition.new(\"Geriatric\", id: \"http://schema.org/Geriatric\"),\n      \"GiveAction\" => TermDefinition.new(\"GiveAction\", id: \"http://schema.org/GiveAction\"),\n      \"GlutenFreeDiet\" => TermDefinition.new(\"GlutenFreeDiet\", id: \"http://schema.org/GlutenFreeDiet\"),\n      \"GolfCourse\" => TermDefinition.new(\"GolfCourse\", id: \"http://schema.org/GolfCourse\"),\n      \"GovernmentBuilding\" => TermDefinition.new(\"GovernmentBuilding\", id: \"http://schema.org/GovernmentBuilding\"),\n      \"GovernmentOffice\" => TermDefinition.new(\"GovernmentOffice\", id: \"http://schema.org/GovernmentOffice\"),\n      \"GovernmentOrganization\" => TermDefinition.new(\"GovernmentOrganization\", id: \"http://schema.org/GovernmentOrganization\"),\n      \"GovernmentPermit\" => TermDefinition.new(\"GovernmentPermit\", id: \"http://schema.org/GovernmentPermit\"),\n      \"GovernmentService\" => TermDefinition.new(\"GovernmentService\", id: \"http://schema.org/GovernmentService\"),\n      \"GraphicNovel\" => TermDefinition.new(\"GraphicNovel\", id: \"http://schema.org/GraphicNovel\"),\n      \"GroceryStore\" => TermDefinition.new(\"GroceryStore\", id: \"http://schema.org/GroceryStore\"),\n      \"GroupBoardingPolicy\" => TermDefinition.new(\"GroupBoardingPolicy\", id: \"http://schema.org/GroupBoardingPolicy\"),\n      \"Gynecologic\" => TermDefinition.new(\"Gynecologic\", id: \"http://schema.org/Gynecologic\"),\n      \"HVACBusiness\" => TermDefinition.new(\"HVACBusiness\", id: \"http://schema.org/HVACBusiness\"),\n      \"HairSalon\" => TermDefinition.new(\"HairSalon\", id: \"http://schema.org/HairSalon\"),\n      \"HalalDiet\" => TermDefinition.new(\"HalalDiet\", id: \"http://schema.org/HalalDiet\"),\n      \"Hardcover\" => TermDefinition.new(\"Hardcover\", id: \"http://schema.org/Hardcover\"),\n      \"HardwareStore\" => TermDefinition.new(\"HardwareStore\", id: \"http://schema.org/HardwareStore\"),\n      \"Head\" => TermDefinition.new(\"Head\", id: \"http://schema.org/Head\"),\n      \"HealthAndBeautyBusiness\" => TermDefinition.new(\"HealthAndBeautyBusiness\", id: \"http://schema.org/HealthAndBeautyBusiness\"),\n      \"HealthClub\" => TermDefinition.new(\"HealthClub\", id: \"http://schema.org/HealthClub\"),\n      \"HealthInsurancePlan\" => TermDefinition.new(\"HealthInsurancePlan\", id: \"http://schema.org/HealthInsurancePlan\"),\n      \"HealthPlanCostSharingSpecification\" => TermDefinition.new(\"HealthPlanCostSharingSpecification\", id: \"http://schema.org/HealthPlanCostSharingSpecification\"),\n      \"HealthPlanFormulary\" => TermDefinition.new(\"HealthPlanFormulary\", id: \"http://schema.org/HealthPlanFormulary\"),\n      \"HealthPlanNetwork\" => TermDefinition.new(\"HealthPlanNetwork\", id: \"http://schema.org/HealthPlanNetwork\"),\n      \"HearingImpairedSupported\" => TermDefinition.new(\"HearingImpairedSupported\", id: \"http://schema.org/HearingImpairedSupported\"),\n      \"Hematologic\" => TermDefinition.new(\"Hematologic\", id: \"http://schema.org/Hematologic\"),\n      \"HighSchool\" => TermDefinition.new(\"HighSchool\", id: \"http://schema.org/HighSchool\"),\n      \"HinduDiet\" => TermDefinition.new(\"HinduDiet\", id: \"http://schema.org/HinduDiet\"),\n      \"HinduTemple\" => TermDefinition.new(\"HinduTemple\", id: \"http://schema.org/HinduTemple\"),\n      \"HobbyShop\" => TermDefinition.new(\"HobbyShop\", id: \"http://schema.org/HobbyShop\"),\n      \"HomeAndConstructionBusiness\" => TermDefinition.new(\"HomeAndConstructionBusiness\", id: \"http://schema.org/HomeAndConstructionBusiness\"),\n      \"HomeGoodsStore\" => TermDefinition.new(\"HomeGoodsStore\", id: \"http://schema.org/HomeGoodsStore\"),\n      \"Homeopathic\" => TermDefinition.new(\"Homeopathic\", id: \"http://schema.org/Homeopathic\"),\n      \"Hospital\" => TermDefinition.new(\"Hospital\", id: \"http://schema.org/Hospital\"),\n      \"Hostel\" => TermDefinition.new(\"Hostel\", id: \"http://schema.org/Hostel\"),\n      \"Hotel\" => TermDefinition.new(\"Hotel\", id: \"http://schema.org/Hotel\"),\n      \"HotelRoom\" => TermDefinition.new(\"HotelRoom\", id: \"http://schema.org/HotelRoom\"),\n      \"House\" => TermDefinition.new(\"House\", id: \"http://schema.org/House\"),\n      \"HousePainter\" => TermDefinition.new(\"HousePainter\", id: \"http://schema.org/HousePainter\"),\n      \"IceCreamShop\" => TermDefinition.new(\"IceCreamShop\", id: \"http://schema.org/IceCreamShop\"),\n      \"IgnoreAction\" => TermDefinition.new(\"IgnoreAction\", id: \"http://schema.org/IgnoreAction\"),\n      \"ImageGallery\" => TermDefinition.new(\"ImageGallery\", id: \"http://schema.org/ImageGallery\"),\n      \"ImageObject\" => TermDefinition.new(\"ImageObject\", id: \"http://schema.org/ImageObject\"),\n      \"ImagingTest\" => TermDefinition.new(\"ImagingTest\", id: \"http://schema.org/ImagingTest\"),\n      \"InStock\" => TermDefinition.new(\"InStock\", id: \"http://schema.org/InStock\"),\n      \"InStoreOnly\" => TermDefinition.new(\"InStoreOnly\", id: \"http://schema.org/InStoreOnly\"),\n      \"IndividualProduct\" => TermDefinition.new(\"IndividualProduct\", id: \"http://schema.org/IndividualProduct\"),\n      \"Infectious\" => TermDefinition.new(\"Infectious\", id: \"http://schema.org/Infectious\"),\n      \"InfectiousAgentClass\" => TermDefinition.new(\"InfectiousAgentClass\", id: \"http://schema.org/InfectiousAgentClass\"),\n      \"InfectiousDisease\" => TermDefinition.new(\"InfectiousDisease\", id: \"http://schema.org/InfectiousDisease\"),\n      \"InformAction\" => TermDefinition.new(\"InformAction\", id: \"http://schema.org/InformAction\"),\n      \"InsertAction\" => TermDefinition.new(\"InsertAction\", id: \"http://schema.org/InsertAction\"),\n      \"InstallAction\" => TermDefinition.new(\"InstallAction\", id: \"http://schema.org/InstallAction\"),\n      \"InsuranceAgency\" => TermDefinition.new(\"InsuranceAgency\", id: \"http://schema.org/InsuranceAgency\"),\n      \"Intangible\" => TermDefinition.new(\"Intangible\", id: \"http://schema.org/Intangible\"),\n      \"Integer\" => TermDefinition.new(\"Integer\", id: \"http://schema.org/Integer\"),\n      \"InteractAction\" => TermDefinition.new(\"InteractAction\", id: \"http://schema.org/InteractAction\"),\n      \"InteractionCounter\" => TermDefinition.new(\"InteractionCounter\", id: \"http://schema.org/InteractionCounter\"),\n      \"InternationalTrial\" => TermDefinition.new(\"InternationalTrial\", id: \"http://schema.org/InternationalTrial\"),\n      \"InternetCafe\" => TermDefinition.new(\"InternetCafe\", id: \"http://schema.org/InternetCafe\"),\n      \"InvestmentOrDeposit\" => TermDefinition.new(\"InvestmentOrDeposit\", id: \"http://schema.org/InvestmentOrDeposit\"),\n      \"InviteAction\" => TermDefinition.new(\"InviteAction\", id: \"http://schema.org/InviteAction\"),\n      \"Invoice\" => TermDefinition.new(\"Invoice\", id: \"http://schema.org/Invoice\"),\n      \"ItemAvailability\" => TermDefinition.new(\"ItemAvailability\", id: \"http://schema.org/ItemAvailability\"),\n      \"ItemList\" => TermDefinition.new(\"ItemList\", id: \"http://schema.org/ItemList\"),\n      \"ItemListOrderAscending\" => TermDefinition.new(\"ItemListOrderAscending\", id: \"http://schema.org/ItemListOrderAscending\"),\n      \"ItemListOrderDescending\" => TermDefinition.new(\"ItemListOrderDescending\", id: \"http://schema.org/ItemListOrderDescending\"),\n      \"ItemListOrderType\" => TermDefinition.new(\"ItemListOrderType\", id: \"http://schema.org/ItemListOrderType\"),\n      \"ItemListUnordered\" => TermDefinition.new(\"ItemListUnordered\", id: \"http://schema.org/ItemListUnordered\"),\n      \"ItemPage\" => TermDefinition.new(\"ItemPage\", id: \"http://schema.org/ItemPage\"),\n      \"JewelryStore\" => TermDefinition.new(\"JewelryStore\", id: \"http://schema.org/JewelryStore\"),\n      \"JobPosting\" => TermDefinition.new(\"JobPosting\", id: \"http://schema.org/JobPosting\"),\n      \"JoinAction\" => TermDefinition.new(\"JoinAction\", id: \"http://schema.org/JoinAction\"),\n      \"Joint\" => TermDefinition.new(\"Joint\", id: \"http://schema.org/Joint\"),\n      \"KosherDiet\" => TermDefinition.new(\"KosherDiet\", id: \"http://schema.org/KosherDiet\"),\n      \"LaboratoryScience\" => TermDefinition.new(\"LaboratoryScience\", id: \"http://schema.org/LaboratoryScience\"),\n      \"LakeBodyOfWater\" => TermDefinition.new(\"LakeBodyOfWater\", id: \"http://schema.org/LakeBodyOfWater\"),\n      \"Landform\" => TermDefinition.new(\"Landform\", id: \"http://schema.org/Landform\"),\n      \"LandmarksOrHistoricalBuildings\" => TermDefinition.new(\"LandmarksOrHistoricalBuildings\", id: \"http://schema.org/LandmarksOrHistoricalBuildings\"),\n      \"Language\" => TermDefinition.new(\"Language\", id: \"http://schema.org/Language\"),\n      \"LaserDiscFormat\" => TermDefinition.new(\"LaserDiscFormat\", id: \"http://schema.org/LaserDiscFormat\"),\n      \"LeaveAction\" => TermDefinition.new(\"LeaveAction\", id: \"http://schema.org/LeaveAction\"),\n      \"LeftHandDriving\" => TermDefinition.new(\"LeftHandDriving\", id: \"http://schema.org/LeftHandDriving\"),\n      \"LegalService\" => TermDefinition.new(\"LegalService\", id: \"http://schema.org/LegalService\"),\n      \"LegislativeBuilding\" => TermDefinition.new(\"LegislativeBuilding\", id: \"http://schema.org/LegislativeBuilding\"),\n      \"LeisureTimeActivity\" => TermDefinition.new(\"LeisureTimeActivity\", id: \"http://schema.org/LeisureTimeActivity\"),\n      \"LendAction\" => TermDefinition.new(\"LendAction\", id: \"http://schema.org/LendAction\"),\n      \"Library\" => TermDefinition.new(\"Library\", id: \"http://schema.org/Library\"),\n      \"LifestyleModification\" => TermDefinition.new(\"LifestyleModification\", id: \"http://schema.org/LifestyleModification\"),\n      \"Ligament\" => TermDefinition.new(\"Ligament\", id: \"http://schema.org/Ligament\"),\n      \"LikeAction\" => TermDefinition.new(\"LikeAction\", id: \"http://schema.org/LikeAction\"),\n      \"LimitedAvailability\" => TermDefinition.new(\"LimitedAvailability\", id: \"http://schema.org/LimitedAvailability\"),\n      \"LinkRole\" => TermDefinition.new(\"LinkRole\", id: \"http://schema.org/LinkRole\"),\n      \"LiquorStore\" => TermDefinition.new(\"LiquorStore\", id: \"http://schema.org/LiquorStore\"),\n      \"ListItem\" => TermDefinition.new(\"ListItem\", id: \"http://schema.org/ListItem\"),\n      \"ListenAction\" => TermDefinition.new(\"ListenAction\", id: \"http://schema.org/ListenAction\"),\n      \"LiteraryEvent\" => TermDefinition.new(\"LiteraryEvent\", id: \"http://schema.org/LiteraryEvent\"),\n      \"LiveAlbum\" => TermDefinition.new(\"LiveAlbum\", id: \"http://schema.org/LiveAlbum\"),\n      \"LiveBlogPosting\" => TermDefinition.new(\"LiveBlogPosting\", id: \"http://schema.org/LiveBlogPosting\"),\n      \"LoanOrCredit\" => TermDefinition.new(\"LoanOrCredit\", id: \"http://schema.org/LoanOrCredit\"),\n      \"LocalBusiness\" => TermDefinition.new(\"LocalBusiness\", id: \"http://schema.org/LocalBusiness\"),\n      \"LocationFeatureSpecification\" => TermDefinition.new(\"LocationFeatureSpecification\", id: \"http://schema.org/LocationFeatureSpecification\"),\n      \"LockerDelivery\" => TermDefinition.new(\"LockerDelivery\", id: \"http://schema.org/LockerDelivery\"),\n      \"Locksmith\" => TermDefinition.new(\"Locksmith\", id: \"http://schema.org/Locksmith\"),\n      \"LodgingBusiness\" => TermDefinition.new(\"LodgingBusiness\", id: \"http://schema.org/LodgingBusiness\"),\n      \"LodgingReservation\" => TermDefinition.new(\"LodgingReservation\", id: \"http://schema.org/LodgingReservation\"),\n      \"Longitudinal\" => TermDefinition.new(\"Longitudinal\", id: \"http://schema.org/Longitudinal\"),\n      \"LoseAction\" => TermDefinition.new(\"LoseAction\", id: \"http://schema.org/LoseAction\"),\n      \"LowCalorieDiet\" => TermDefinition.new(\"LowCalorieDiet\", id: \"http://schema.org/LowCalorieDiet\"),\n      \"LowFatDiet\" => TermDefinition.new(\"LowFatDiet\", id: \"http://schema.org/LowFatDiet\"),\n      \"LowLactoseDiet\" => TermDefinition.new(\"LowLactoseDiet\", id: \"http://schema.org/LowLactoseDiet\"),\n      \"LowSaltDiet\" => TermDefinition.new(\"LowSaltDiet\", id: \"http://schema.org/LowSaltDiet\"),\n      \"Lung\" => TermDefinition.new(\"Lung\", id: \"http://schema.org/Lung\"),\n      \"LymphaticVessel\" => TermDefinition.new(\"LymphaticVessel\", id: \"http://schema.org/LymphaticVessel\"),\n      \"MRI\" => TermDefinition.new(\"MRI\", id: \"http://schema.org/MRI\"),\n      \"Male\" => TermDefinition.new(\"Male\", id: \"http://schema.org/Male\"),\n      \"Map\" => TermDefinition.new(\"Map\", id: \"http://schema.org/Map\"),\n      \"MapCategoryType\" => TermDefinition.new(\"MapCategoryType\", id: \"http://schema.org/MapCategoryType\"),\n      \"MarryAction\" => TermDefinition.new(\"MarryAction\", id: \"http://schema.org/MarryAction\"),\n      \"Mass\" => TermDefinition.new(\"Mass\", id: \"http://schema.org/Mass\"),\n      \"MaximumDoseSchedule\" => TermDefinition.new(\"MaximumDoseSchedule\", id: \"http://schema.org/MaximumDoseSchedule\"),\n      \"MediaObject\" => TermDefinition.new(\"MediaObject\", id: \"http://schema.org/MediaObject\"),\n      \"MedicalAudience\" => TermDefinition.new(\"MedicalAudience\", id: \"http://schema.org/MedicalAudience\"),\n      \"MedicalBusiness\" => TermDefinition.new(\"MedicalBusiness\", id: \"http://schema.org/MedicalBusiness\"),\n      \"MedicalCause\" => TermDefinition.new(\"MedicalCause\", id: \"http://schema.org/MedicalCause\"),\n      \"MedicalClinic\" => TermDefinition.new(\"MedicalClinic\", id: \"http://schema.org/MedicalClinic\"),\n      \"MedicalCode\" => TermDefinition.new(\"MedicalCode\", id: \"http://schema.org/MedicalCode\"),\n      \"MedicalCondition\" => TermDefinition.new(\"MedicalCondition\", id: \"http://schema.org/MedicalCondition\"),\n      \"MedicalConditionStage\" => TermDefinition.new(\"MedicalConditionStage\", id: \"http://schema.org/MedicalConditionStage\"),\n      \"MedicalContraindication\" => TermDefinition.new(\"MedicalContraindication\", id: \"http://schema.org/MedicalContraindication\"),\n      \"MedicalDevice\" => TermDefinition.new(\"MedicalDevice\", id: \"http://schema.org/MedicalDevice\"),\n      \"MedicalDevicePurpose\" => TermDefinition.new(\"MedicalDevicePurpose\", id: \"http://schema.org/MedicalDevicePurpose\"),\n      \"MedicalEntity\" => TermDefinition.new(\"MedicalEntity\", id: \"http://schema.org/MedicalEntity\"),\n      \"MedicalEnumeration\" => TermDefinition.new(\"MedicalEnumeration\", id: \"http://schema.org/MedicalEnumeration\"),\n      \"MedicalEvidenceLevel\" => TermDefinition.new(\"MedicalEvidenceLevel\", id: \"http://schema.org/MedicalEvidenceLevel\"),\n      \"MedicalGuideline\" => TermDefinition.new(\"MedicalGuideline\", id: \"http://schema.org/MedicalGuideline\"),\n      \"MedicalGuidelineContraindication\" => TermDefinition.new(\"MedicalGuidelineContraindication\", id: \"http://schema.org/MedicalGuidelineContraindication\"),\n      \"MedicalGuidelineRecommendation\" => TermDefinition.new(\"MedicalGuidelineRecommendation\", id: \"http://schema.org/MedicalGuidelineRecommendation\"),\n      \"MedicalImagingTechnique\" => TermDefinition.new(\"MedicalImagingTechnique\", id: \"http://schema.org/MedicalImagingTechnique\"),\n      \"MedicalIndication\" => TermDefinition.new(\"MedicalIndication\", id: \"http://schema.org/MedicalIndication\"),\n      \"MedicalIntangible\" => TermDefinition.new(\"MedicalIntangible\", id: \"http://schema.org/MedicalIntangible\"),\n      \"MedicalObservationalStudy\" => TermDefinition.new(\"MedicalObservationalStudy\", id: \"http://schema.org/MedicalObservationalStudy\"),\n      \"MedicalObservationalStudyDesign\" => TermDefinition.new(\"MedicalObservationalStudyDesign\", id: \"http://schema.org/MedicalObservationalStudyDesign\"),\n      \"MedicalOrganization\" => TermDefinition.new(\"MedicalOrganization\", id: \"http://schema.org/MedicalOrganization\"),\n      \"MedicalProcedure\" => TermDefinition.new(\"MedicalProcedure\", id: \"http://schema.org/MedicalProcedure\"),\n      \"MedicalProcedureType\" => TermDefinition.new(\"MedicalProcedureType\", id: \"http://schema.org/MedicalProcedureType\"),\n      \"MedicalResearcher\" => TermDefinition.new(\"MedicalResearcher\", id: \"http://schema.org/MedicalResearcher\"),\n      \"MedicalRiskCalculator\" => TermDefinition.new(\"MedicalRiskCalculator\", id: \"http://schema.org/MedicalRiskCalculator\"),\n      \"MedicalRiskEstimator\" => TermDefinition.new(\"MedicalRiskEstimator\", id: \"http://schema.org/MedicalRiskEstimator\"),\n      \"MedicalRiskFactor\" => TermDefinition.new(\"MedicalRiskFactor\", id: \"http://schema.org/MedicalRiskFactor\"),\n      \"MedicalRiskScore\" => TermDefinition.new(\"MedicalRiskScore\", id: \"http://schema.org/MedicalRiskScore\"),\n      \"MedicalScholarlyArticle\" => TermDefinition.new(\"MedicalScholarlyArticle\", id: \"http://schema.org/MedicalScholarlyArticle\"),\n      \"MedicalSign\" => TermDefinition.new(\"MedicalSign\", id: \"http://schema.org/MedicalSign\"),\n      \"MedicalSignOrSymptom\" => TermDefinition.new(\"MedicalSignOrSymptom\", id: \"http://schema.org/MedicalSignOrSymptom\"),\n      \"MedicalSpecialty\" => TermDefinition.new(\"MedicalSpecialty\", id: \"http://schema.org/MedicalSpecialty\"),\n      \"MedicalStudy\" => TermDefinition.new(\"MedicalStudy\", id: \"http://schema.org/MedicalStudy\"),\n      \"MedicalStudyStatus\" => TermDefinition.new(\"MedicalStudyStatus\", id: \"http://schema.org/MedicalStudyStatus\"),\n      \"MedicalSymptom\" => TermDefinition.new(\"MedicalSymptom\", id: \"http://schema.org/MedicalSymptom\"),\n      \"MedicalTest\" => TermDefinition.new(\"MedicalTest\", id: \"http://schema.org/MedicalTest\"),\n      \"MedicalTestPanel\" => TermDefinition.new(\"MedicalTestPanel\", id: \"http://schema.org/MedicalTestPanel\"),\n      \"MedicalTherapy\" => TermDefinition.new(\"MedicalTherapy\", id: \"http://schema.org/MedicalTherapy\"),\n      \"MedicalTrial\" => TermDefinition.new(\"MedicalTrial\", id: \"http://schema.org/MedicalTrial\"),\n      \"MedicalTrialDesign\" => TermDefinition.new(\"MedicalTrialDesign\", id: \"http://schema.org/MedicalTrialDesign\"),\n      \"MedicalWebPage\" => TermDefinition.new(\"MedicalWebPage\", id: \"http://schema.org/MedicalWebPage\"),\n      \"MedicineSystem\" => TermDefinition.new(\"MedicineSystem\", id: \"http://schema.org/MedicineSystem\"),\n      \"MeetingRoom\" => TermDefinition.new(\"MeetingRoom\", id: \"http://schema.org/MeetingRoom\"),\n      \"MensClothingStore\" => TermDefinition.new(\"MensClothingStore\", id: \"http://schema.org/MensClothingStore\"),\n      \"Message\" => TermDefinition.new(\"Message\", id: \"http://schema.org/Message\"),\n      \"MiddleSchool\" => TermDefinition.new(\"MiddleSchool\", id: \"http://schema.org/MiddleSchool\"),\n      \"Midwifery\" => TermDefinition.new(\"Midwifery\", id: \"http://schema.org/Midwifery\"),\n      \"MixtapeAlbum\" => TermDefinition.new(\"MixtapeAlbum\", id: \"http://schema.org/MixtapeAlbum\"),\n      \"MobileApplication\" => TermDefinition.new(\"MobileApplication\", id: \"http://schema.org/MobileApplication\"),\n      \"MobilePhoneStore\" => TermDefinition.new(\"MobilePhoneStore\", id: \"http://schema.org/MobilePhoneStore\"),\n      \"Monday\" => TermDefinition.new(\"Monday\", id: \"http://schema.org/Monday\"),\n      \"MonetaryAmount\" => TermDefinition.new(\"MonetaryAmount\", id: \"http://schema.org/MonetaryAmount\"),\n      \"Mosque\" => TermDefinition.new(\"Mosque\", id: \"http://schema.org/Mosque\"),\n      \"Motel\" => TermDefinition.new(\"Motel\", id: \"http://schema.org/Motel\"),\n      \"Motorcycle\" => TermDefinition.new(\"Motorcycle\", id: \"http://schema.org/Motorcycle\"),\n      \"MotorcycleDealer\" => TermDefinition.new(\"MotorcycleDealer\", id: \"http://schema.org/MotorcycleDealer\"),\n      \"MotorcycleRepair\" => TermDefinition.new(\"MotorcycleRepair\", id: \"http://schema.org/MotorcycleRepair\"),\n      \"MotorizedBicycle\" => TermDefinition.new(\"MotorizedBicycle\", id: \"http://schema.org/MotorizedBicycle\"),\n      \"Mountain\" => TermDefinition.new(\"Mountain\", id: \"http://schema.org/Mountain\"),\n      \"MoveAction\" => TermDefinition.new(\"MoveAction\", id: \"http://schema.org/MoveAction\"),\n      \"Movie\" => TermDefinition.new(\"Movie\", id: \"http://schema.org/Movie\"),\n      \"MovieClip\" => TermDefinition.new(\"MovieClip\", id: \"http://schema.org/MovieClip\"),\n      \"MovieRentalStore\" => TermDefinition.new(\"MovieRentalStore\", id: \"http://schema.org/MovieRentalStore\"),\n      \"MovieSeries\" => TermDefinition.new(\"MovieSeries\", id: \"http://schema.org/MovieSeries\"),\n      \"MovieTheater\" => TermDefinition.new(\"MovieTheater\", id: \"http://schema.org/MovieTheater\"),\n      \"MovingCompany\" => TermDefinition.new(\"MovingCompany\", id: \"http://schema.org/MovingCompany\"),\n      \"MultiCenterTrial\" => TermDefinition.new(\"MultiCenterTrial\", id: \"http://schema.org/MultiCenterTrial\"),\n      \"MultiPlayer\" => TermDefinition.new(\"MultiPlayer\", id: \"http://schema.org/MultiPlayer\"),\n      \"MulticellularParasite\" => TermDefinition.new(\"MulticellularParasite\", id: \"http://schema.org/MulticellularParasite\"),\n      \"Muscle\" => TermDefinition.new(\"Muscle\", id: \"http://schema.org/Muscle\"),\n      \"Musculoskeletal\" => TermDefinition.new(\"Musculoskeletal\", id: \"http://schema.org/Musculoskeletal\"),\n      \"MusculoskeletalExam\" => TermDefinition.new(\"MusculoskeletalExam\", id: \"http://schema.org/MusculoskeletalExam\"),\n      \"Museum\" => TermDefinition.new(\"Museum\", id: \"http://schema.org/Museum\"),\n      \"MusicAlbum\" => TermDefinition.new(\"MusicAlbum\", id: \"http://schema.org/MusicAlbum\"),\n      \"MusicAlbumProductionType\" => TermDefinition.new(\"MusicAlbumProductionType\", id: \"http://schema.org/MusicAlbumProductionType\"),\n      \"MusicAlbumReleaseType\" => TermDefinition.new(\"MusicAlbumReleaseType\", id: \"http://schema.org/MusicAlbumReleaseType\"),\n      \"MusicComposition\" => TermDefinition.new(\"MusicComposition\", id: \"http://schema.org/MusicComposition\"),\n      \"MusicEvent\" => TermDefinition.new(\"MusicEvent\", id: \"http://schema.org/MusicEvent\"),\n      \"MusicGroup\" => TermDefinition.new(\"MusicGroup\", id: \"http://schema.org/MusicGroup\"),\n      \"MusicPlaylist\" => TermDefinition.new(\"MusicPlaylist\", id: \"http://schema.org/MusicPlaylist\"),\n      \"MusicRecording\" => TermDefinition.new(\"MusicRecording\", id: \"http://schema.org/MusicRecording\"),\n      \"MusicRelease\" => TermDefinition.new(\"MusicRelease\", id: \"http://schema.org/MusicRelease\"),\n      \"MusicReleaseFormatType\" => TermDefinition.new(\"MusicReleaseFormatType\", id: \"http://schema.org/MusicReleaseFormatType\"),\n      \"MusicStore\" => TermDefinition.new(\"MusicStore\", id: \"http://schema.org/MusicStore\"),\n      \"MusicVenue\" => TermDefinition.new(\"MusicVenue\", id: \"http://schema.org/MusicVenue\"),\n      \"MusicVideoObject\" => TermDefinition.new(\"MusicVideoObject\", id: \"http://schema.org/MusicVideoObject\"),\n      \"NGO\" => TermDefinition.new(\"NGO\", id: \"http://schema.org/NGO\"),\n      \"NailSalon\" => TermDefinition.new(\"NailSalon\", id: \"http://schema.org/NailSalon\"),\n      \"Neck\" => TermDefinition.new(\"Neck\", id: \"http://schema.org/Neck\"),\n      \"Nerve\" => TermDefinition.new(\"Nerve\", id: \"http://schema.org/Nerve\"),\n      \"Neuro\" => TermDefinition.new(\"Neuro\", id: \"http://schema.org/Neuro\"),\n      \"Neurologic\" => TermDefinition.new(\"Neurologic\", id: \"http://schema.org/Neurologic\"),\n      \"NewCondition\" => TermDefinition.new(\"NewCondition\", id: \"http://schema.org/NewCondition\"),\n      \"NewsArticle\" => TermDefinition.new(\"NewsArticle\", id: \"http://schema.org/NewsArticle\"),\n      \"Newspaper\" => TermDefinition.new(\"Newspaper\", id: \"http://schema.org/Newspaper\"),\n      \"NightClub\" => TermDefinition.new(\"NightClub\", id: \"http://schema.org/NightClub\"),\n      \"NoninvasiveProcedure\" => TermDefinition.new(\"NoninvasiveProcedure\", id: \"http://schema.org/NoninvasiveProcedure\"),\n      \"Nose\" => TermDefinition.new(\"Nose\", id: \"http://schema.org/Nose\"),\n      \"NotYetRecruiting\" => TermDefinition.new(\"NotYetRecruiting\", id: \"http://schema.org/NotYetRecruiting\"),\n      \"Notary\" => TermDefinition.new(\"Notary\", id: \"http://schema.org/Notary\"),\n      \"NoteDigitalDocument\" => TermDefinition.new(\"NoteDigitalDocument\", id: \"http://schema.org/NoteDigitalDocument\"),\n      \"Number\" => TermDefinition.new(\"Number\", id: \"http://schema.org/Number\"),\n      \"Nursing\" => TermDefinition.new(\"Nursing\", id: \"http://schema.org/Nursing\"),\n      \"NutritionInformation\" => TermDefinition.new(\"NutritionInformation\", id: \"http://schema.org/NutritionInformation\"),\n      \"OTC\" => TermDefinition.new(\"OTC\", id: \"http://schema.org/OTC\"),\n      \"Observational\" => TermDefinition.new(\"Observational\", id: \"http://schema.org/Observational\"),\n      \"Obstetric\" => TermDefinition.new(\"Obstetric\", id: \"http://schema.org/Obstetric\"),\n      \"OccupationalActivity\" => TermDefinition.new(\"OccupationalActivity\", id: \"http://schema.org/OccupationalActivity\"),\n      \"OccupationalTherapy\" => TermDefinition.new(\"OccupationalTherapy\", id: \"http://schema.org/OccupationalTherapy\"),\n      \"OceanBodyOfWater\" => TermDefinition.new(\"OceanBodyOfWater\", id: \"http://schema.org/OceanBodyOfWater\"),\n      \"Offer\" => TermDefinition.new(\"Offer\", id: \"http://schema.org/Offer\"),\n      \"OfferCatalog\" => TermDefinition.new(\"OfferCatalog\", id: \"http://schema.org/OfferCatalog\"),\n      \"OfferItemCondition\" => TermDefinition.new(\"OfferItemCondition\", id: \"http://schema.org/OfferItemCondition\"),\n      \"OfficeEquipmentStore\" => TermDefinition.new(\"OfficeEquipmentStore\", id: \"http://schema.org/OfficeEquipmentStore\"),\n      \"OfflinePermanently\" => TermDefinition.new(\"OfflinePermanently\", id: \"http://schema.org/OfflinePermanently\"),\n      \"OfflineTemporarily\" => TermDefinition.new(\"OfflineTemporarily\", id: \"http://schema.org/OfflineTemporarily\"),\n      \"OnDemandEvent\" => TermDefinition.new(\"OnDemandEvent\", id: \"http://schema.org/OnDemandEvent\"),\n      \"OnSitePickup\" => TermDefinition.new(\"OnSitePickup\", id: \"http://schema.org/OnSitePickup\"),\n      \"Oncologic\" => TermDefinition.new(\"Oncologic\", id: \"http://schema.org/Oncologic\"),\n      \"Online\" => TermDefinition.new(\"Online\", id: \"http://schema.org/Online\"),\n      \"OnlineFull\" => TermDefinition.new(\"OnlineFull\", id: \"http://schema.org/OnlineFull\"),\n      \"OnlineOnly\" => TermDefinition.new(\"OnlineOnly\", id: \"http://schema.org/OnlineOnly\"),\n      \"OpenTrial\" => TermDefinition.new(\"OpenTrial\", id: \"http://schema.org/OpenTrial\"),\n      \"OpeningHoursSpecification\" => TermDefinition.new(\"OpeningHoursSpecification\", id: \"http://schema.org/OpeningHoursSpecification\"),\n      \"Optician\" => TermDefinition.new(\"Optician\", id: \"http://schema.org/Optician\"),\n      \"Optometric\" => TermDefinition.new(\"Optometric\", id: \"http://schema.org/Optometric\"),\n      \"Order\" => TermDefinition.new(\"Order\", id: \"http://schema.org/Order\"),\n      \"OrderAction\" => TermDefinition.new(\"OrderAction\", id: \"http://schema.org/OrderAction\"),\n      \"OrderCancelled\" => TermDefinition.new(\"OrderCancelled\", id: \"http://schema.org/OrderCancelled\"),\n      \"OrderDelivered\" => TermDefinition.new(\"OrderDelivered\", id: \"http://schema.org/OrderDelivered\"),\n      \"OrderInTransit\" => TermDefinition.new(\"OrderInTransit\", id: \"http://schema.org/OrderInTransit\"),\n      \"OrderItem\" => TermDefinition.new(\"OrderItem\", id: \"http://schema.org/OrderItem\"),\n      \"OrderPaymentDue\" => TermDefinition.new(\"OrderPaymentDue\", id: \"http://schema.org/OrderPaymentDue\"),\n      \"OrderPickupAvailable\" => TermDefinition.new(\"OrderPickupAvailable\", id: \"http://schema.org/OrderPickupAvailable\"),\n      \"OrderProblem\" => TermDefinition.new(\"OrderProblem\", id: \"http://schema.org/OrderProblem\"),\n      \"OrderProcessing\" => TermDefinition.new(\"OrderProcessing\", id: \"http://schema.org/OrderProcessing\"),\n      \"OrderReturned\" => TermDefinition.new(\"OrderReturned\", id: \"http://schema.org/OrderReturned\"),\n      \"OrderStatus\" => TermDefinition.new(\"OrderStatus\", id: \"http://schema.org/OrderStatus\"),\n      \"Organization\" => TermDefinition.new(\"Organization\", id: \"http://schema.org/Organization\"),\n      \"OrganizationRole\" => TermDefinition.new(\"OrganizationRole\", id: \"http://schema.org/OrganizationRole\"),\n      \"OrganizeAction\" => TermDefinition.new(\"OrganizeAction\", id: \"http://schema.org/OrganizeAction\"),\n      \"Osteopathic\" => TermDefinition.new(\"Osteopathic\", id: \"http://schema.org/Osteopathic\"),\n      \"Otolaryngologic\" => TermDefinition.new(\"Otolaryngologic\", id: \"http://schema.org/Otolaryngologic\"),\n      \"OutOfStock\" => TermDefinition.new(\"OutOfStock\", id: \"http://schema.org/OutOfStock\"),\n      \"OutletStore\" => TermDefinition.new(\"OutletStore\", id: \"http://schema.org/OutletStore\"),\n      \"OwnershipInfo\" => TermDefinition.new(\"OwnershipInfo\", id: \"http://schema.org/OwnershipInfo\"),\n      \"PET\" => TermDefinition.new(\"PET\", id: \"http://schema.org/PET\"),\n      \"PaintAction\" => TermDefinition.new(\"PaintAction\", id: \"http://schema.org/PaintAction\"),\n      \"Painting\" => TermDefinition.new(\"Painting\", id: \"http://schema.org/Painting\"),\n      \"PalliativeProcedure\" => TermDefinition.new(\"PalliativeProcedure\", id: \"http://schema.org/PalliativeProcedure\"),\n      \"Paperback\" => TermDefinition.new(\"Paperback\", id: \"http://schema.org/Paperback\"),\n      \"ParcelDelivery\" => TermDefinition.new(\"ParcelDelivery\", id: \"http://schema.org/ParcelDelivery\"),\n      \"ParcelService\" => TermDefinition.new(\"ParcelService\", id: \"http://schema.org/ParcelService\"),\n      \"ParentAudience\" => TermDefinition.new(\"ParentAudience\", id: \"http://schema.org/ParentAudience\"),\n      \"Park\" => TermDefinition.new(\"Park\", id: \"http://schema.org/Park\"),\n      \"ParkingFacility\" => TermDefinition.new(\"ParkingFacility\", id: \"http://schema.org/ParkingFacility\"),\n      \"ParkingMap\" => TermDefinition.new(\"ParkingMap\", id: \"http://schema.org/ParkingMap\"),\n      \"Pathology\" => TermDefinition.new(\"Pathology\", id: \"http://schema.org/Pathology\"),\n      \"PathologyTest\" => TermDefinition.new(\"PathologyTest\", id: \"http://schema.org/PathologyTest\"),\n      \"Patient\" => TermDefinition.new(\"Patient\", id: \"http://schema.org/Patient\"),\n      \"PawnShop\" => TermDefinition.new(\"PawnShop\", id: \"http://schema.org/PawnShop\"),\n      \"PayAction\" => TermDefinition.new(\"PayAction\", id: \"http://schema.org/PayAction\"),\n      \"PaymentAutomaticallyApplied\" => TermDefinition.new(\"PaymentAutomaticallyApplied\", id: \"http://schema.org/PaymentAutomaticallyApplied\"),\n      \"PaymentCard\" => TermDefinition.new(\"PaymentCard\", id: \"http://schema.org/PaymentCard\"),\n      \"PaymentChargeSpecification\" => TermDefinition.new(\"PaymentChargeSpecification\", id: \"http://schema.org/PaymentChargeSpecification\"),\n      \"PaymentComplete\" => TermDefinition.new(\"PaymentComplete\", id: \"http://schema.org/PaymentComplete\"),\n      \"PaymentDeclined\" => TermDefinition.new(\"PaymentDeclined\", id: \"http://schema.org/PaymentDeclined\"),\n      \"PaymentDue\" => TermDefinition.new(\"PaymentDue\", id: \"http://schema.org/PaymentDue\"),\n      \"PaymentMethod\" => TermDefinition.new(\"PaymentMethod\", id: \"http://schema.org/PaymentMethod\"),\n      \"PaymentPastDue\" => TermDefinition.new(\"PaymentPastDue\", id: \"http://schema.org/PaymentPastDue\"),\n      \"PaymentService\" => TermDefinition.new(\"PaymentService\", id: \"http://schema.org/PaymentService\"),\n      \"PaymentStatusType\" => TermDefinition.new(\"PaymentStatusType\", id: \"http://schema.org/PaymentStatusType\"),\n      \"Pediatric\" => TermDefinition.new(\"Pediatric\", id: \"http://schema.org/Pediatric\"),\n      \"PeopleAudience\" => TermDefinition.new(\"PeopleAudience\", id: \"http://schema.org/PeopleAudience\"),\n      \"PercutaneousProcedure\" => TermDefinition.new(\"PercutaneousProcedure\", id: \"http://schema.org/PercutaneousProcedure\"),\n      \"PerformAction\" => TermDefinition.new(\"PerformAction\", id: \"http://schema.org/PerformAction\"),\n      \"PerformanceRole\" => TermDefinition.new(\"PerformanceRole\", id: \"http://schema.org/PerformanceRole\"),\n      \"PerformingArtsTheater\" => TermDefinition.new(\"PerformingArtsTheater\", id: \"http://schema.org/PerformingArtsTheater\"),\n      \"PerformingGroup\" => TermDefinition.new(\"PerformingGroup\", id: \"http://schema.org/PerformingGroup\"),\n      \"Periodical\" => TermDefinition.new(\"Periodical\", id: \"http://schema.org/Periodical\"),\n      \"Permit\" => TermDefinition.new(\"Permit\", id: \"http://schema.org/Permit\"),\n      \"Person\" => TermDefinition.new(\"Person\", id: \"http://schema.org/Person\"),\n      \"PetStore\" => TermDefinition.new(\"PetStore\", id: \"http://schema.org/PetStore\"),\n      \"Pharmacy\" => TermDefinition.new(\"Pharmacy\", id: \"http://schema.org/Pharmacy\"),\n      \"PharmacySpecialty\" => TermDefinition.new(\"PharmacySpecialty\", id: \"http://schema.org/PharmacySpecialty\"),\n      \"Photograph\" => TermDefinition.new(\"Photograph\", id: \"http://schema.org/Photograph\"),\n      \"PhotographAction\" => TermDefinition.new(\"PhotographAction\", id: \"http://schema.org/PhotographAction\"),\n      \"PhysicalActivity\" => TermDefinition.new(\"PhysicalActivity\", id: \"http://schema.org/PhysicalActivity\"),\n      \"PhysicalActivityCategory\" => TermDefinition.new(\"PhysicalActivityCategory\", id: \"http://schema.org/PhysicalActivityCategory\"),\n      \"PhysicalExam\" => TermDefinition.new(\"PhysicalExam\", id: \"http://schema.org/PhysicalExam\"),\n      \"PhysicalTherapy\" => TermDefinition.new(\"PhysicalTherapy\", id: \"http://schema.org/PhysicalTherapy\"),\n      \"Physician\" => TermDefinition.new(\"Physician\", id: \"http://schema.org/Physician\"),\n      \"Physiotherapy\" => TermDefinition.new(\"Physiotherapy\", id: \"http://schema.org/Physiotherapy\"),\n      \"Place\" => TermDefinition.new(\"Place\", id: \"http://schema.org/Place\"),\n      \"PlaceOfWorship\" => TermDefinition.new(\"PlaceOfWorship\", id: \"http://schema.org/PlaceOfWorship\"),\n      \"PlaceboControlledTrial\" => TermDefinition.new(\"PlaceboControlledTrial\", id: \"http://schema.org/PlaceboControlledTrial\"),\n      \"PlanAction\" => TermDefinition.new(\"PlanAction\", id: \"http://schema.org/PlanAction\"),\n      \"PlasticSurgery\" => TermDefinition.new(\"PlasticSurgery\", id: \"http://schema.org/PlasticSurgery\"),\n      \"PlayAction\" => TermDefinition.new(\"PlayAction\", id: \"http://schema.org/PlayAction\"),\n      \"Playground\" => TermDefinition.new(\"Playground\", id: \"http://schema.org/Playground\"),\n      \"Plumber\" => TermDefinition.new(\"Plumber\", id: \"http://schema.org/Plumber\"),\n      \"Podiatric\" => TermDefinition.new(\"Podiatric\", id: \"http://schema.org/Podiatric\"),\n      \"PoliceStation\" => TermDefinition.new(\"PoliceStation\", id: \"http://schema.org/PoliceStation\"),\n      \"Pond\" => TermDefinition.new(\"Pond\", id: \"http://schema.org/Pond\"),\n      \"PostOffice\" => TermDefinition.new(\"PostOffice\", id: \"http://schema.org/PostOffice\"),\n      \"PostalAddress\" => TermDefinition.new(\"PostalAddress\", id: \"http://schema.org/PostalAddress\"),\n      \"PotentialActionStatus\" => TermDefinition.new(\"PotentialActionStatus\", id: \"http://schema.org/PotentialActionStatus\"),\n      \"PreOrder\" => TermDefinition.new(\"PreOrder\", id: \"http://schema.org/PreOrder\"),\n      \"PreOrderAction\" => TermDefinition.new(\"PreOrderAction\", id: \"http://schema.org/PreOrderAction\"),\n      \"PreSale\" => TermDefinition.new(\"PreSale\", id: \"http://schema.org/PreSale\"),\n      \"PrependAction\" => TermDefinition.new(\"PrependAction\", id: \"http://schema.org/PrependAction\"),\n      \"Preschool\" => TermDefinition.new(\"Preschool\", id: \"http://schema.org/Preschool\"),\n      \"PrescriptionOnly\" => TermDefinition.new(\"PrescriptionOnly\", id: \"http://schema.org/PrescriptionOnly\"),\n      \"PresentationDigitalDocument\" => TermDefinition.new(\"PresentationDigitalDocument\", id: \"http://schema.org/PresentationDigitalDocument\"),\n      \"PreventionIndication\" => TermDefinition.new(\"PreventionIndication\", id: \"http://schema.org/PreventionIndication\"),\n      \"PriceSpecification\" => TermDefinition.new(\"PriceSpecification\", id: \"http://schema.org/PriceSpecification\"),\n      \"PrimaryCare\" => TermDefinition.new(\"PrimaryCare\", id: \"http://schema.org/PrimaryCare\"),\n      \"Prion\" => TermDefinition.new(\"Prion\", id: \"http://schema.org/Prion\"),\n      \"Product\" => TermDefinition.new(\"Product\", id: \"http://schema.org/Product\"),\n      \"ProductModel\" => TermDefinition.new(\"ProductModel\", id: \"http://schema.org/ProductModel\"),\n      \"ProfessionalService\" => TermDefinition.new(\"ProfessionalService\", id: \"http://schema.org/ProfessionalService\"),\n      \"ProfilePage\" => TermDefinition.new(\"ProfilePage\", id: \"http://schema.org/ProfilePage\"),\n      \"ProgramMembership\" => TermDefinition.new(\"ProgramMembership\", id: \"http://schema.org/ProgramMembership\"),\n      \"Property\" => TermDefinition.new(\"Property\", id: \"http://schema.org/Property\"),\n      \"PropertyValue\" => TermDefinition.new(\"PropertyValue\", id: \"http://schema.org/PropertyValue\"),\n      \"PropertyValueSpecification\" => TermDefinition.new(\"PropertyValueSpecification\", id: \"http://schema.org/PropertyValueSpecification\"),\n      \"Protozoa\" => TermDefinition.new(\"Protozoa\", id: \"http://schema.org/Protozoa\"),\n      \"Psychiatric\" => TermDefinition.new(\"Psychiatric\", id: \"http://schema.org/Psychiatric\"),\n      \"PsychologicalTreatment\" => TermDefinition.new(\"PsychologicalTreatment\", id: \"http://schema.org/PsychologicalTreatment\"),\n      \"PublicHealth\" => TermDefinition.new(\"PublicHealth\", id: \"http://schema.org/PublicHealth\"),\n      \"PublicHolidays\" => TermDefinition.new(\"PublicHolidays\", id: \"http://schema.org/PublicHolidays\"),\n      \"PublicSwimmingPool\" => TermDefinition.new(\"PublicSwimmingPool\", id: \"http://schema.org/PublicSwimmingPool\"),\n      \"PublicationEvent\" => TermDefinition.new(\"PublicationEvent\", id: \"http://schema.org/PublicationEvent\"),\n      \"PublicationIssue\" => TermDefinition.new(\"PublicationIssue\", id: \"http://schema.org/PublicationIssue\"),\n      \"PublicationVolume\" => TermDefinition.new(\"PublicationVolume\", id: \"http://schema.org/PublicationVolume\"),\n      \"Pulmonary\" => TermDefinition.new(\"Pulmonary\", id: \"http://schema.org/Pulmonary\"),\n      \"QAPage\" => TermDefinition.new(\"QAPage\", id: \"http://schema.org/QAPage\"),\n      \"QualitativeValue\" => TermDefinition.new(\"QualitativeValue\", id: \"http://schema.org/QualitativeValue\"),\n      \"QuantitativeValue\" => TermDefinition.new(\"QuantitativeValue\", id: \"http://schema.org/QuantitativeValue\"),\n      \"Quantity\" => TermDefinition.new(\"Quantity\", id: \"http://schema.org/Quantity\"),\n      \"Question\" => TermDefinition.new(\"Question\", id: \"http://schema.org/Question\"),\n      \"Quotation\" => TermDefinition.new(\"Quotation\", id: \"http://schema.org/Quotation\"),\n      \"QuoteAction\" => TermDefinition.new(\"QuoteAction\", id: \"http://schema.org/QuoteAction\"),\n      \"RVPark\" => TermDefinition.new(\"RVPark\", id: \"http://schema.org/RVPark\"),\n      \"RadiationTherapy\" => TermDefinition.new(\"RadiationTherapy\", id: \"http://schema.org/RadiationTherapy\"),\n      \"RadioChannel\" => TermDefinition.new(\"RadioChannel\", id: \"http://schema.org/RadioChannel\"),\n      \"RadioClip\" => TermDefinition.new(\"RadioClip\", id: \"http://schema.org/RadioClip\"),\n      \"RadioEpisode\" => TermDefinition.new(\"RadioEpisode\", id: \"http://schema.org/RadioEpisode\"),\n      \"RadioSeason\" => TermDefinition.new(\"RadioSeason\", id: \"http://schema.org/RadioSeason\"),\n      \"RadioSeries\" => TermDefinition.new(\"RadioSeries\", id: \"http://schema.org/RadioSeries\"),\n      \"RadioStation\" => TermDefinition.new(\"RadioStation\", id: \"http://schema.org/RadioStation\"),\n      \"Radiography\" => TermDefinition.new(\"Radiography\", id: \"http://schema.org/Radiography\"),\n      \"RandomizedTrial\" => TermDefinition.new(\"RandomizedTrial\", id: \"http://schema.org/RandomizedTrial\"),\n      \"Rating\" => TermDefinition.new(\"Rating\", id: \"http://schema.org/Rating\"),\n      \"ReactAction\" => TermDefinition.new(\"ReactAction\", id: \"http://schema.org/ReactAction\"),\n      \"ReadAction\" => TermDefinition.new(\"ReadAction\", id: \"http://schema.org/ReadAction\"),\n      \"ReadPermission\" => TermDefinition.new(\"ReadPermission\", id: \"http://schema.org/ReadPermission\"),\n      \"RealEstateAgent\" => TermDefinition.new(\"RealEstateAgent\", id: \"http://schema.org/RealEstateAgent\"),\n      \"RearWheelDriveConfiguration\" => TermDefinition.new(\"RearWheelDriveConfiguration\", id: \"http://schema.org/RearWheelDriveConfiguration\"),\n      \"ReceiveAction\" => TermDefinition.new(\"ReceiveAction\", id: \"http://schema.org/ReceiveAction\"),\n      \"Recipe\" => TermDefinition.new(\"Recipe\", id: \"http://schema.org/Recipe\"),\n      \"RecommendedDoseSchedule\" => TermDefinition.new(\"RecommendedDoseSchedule\", id: \"http://schema.org/RecommendedDoseSchedule\"),\n      \"Recruiting\" => TermDefinition.new(\"Recruiting\", id: \"http://schema.org/Recruiting\"),\n      \"RecyclingCenter\" => TermDefinition.new(\"RecyclingCenter\", id: \"http://schema.org/RecyclingCenter\"),\n      \"RefurbishedCondition\" => TermDefinition.new(\"RefurbishedCondition\", id: \"http://schema.org/RefurbishedCondition\"),\n      \"RegisterAction\" => TermDefinition.new(\"RegisterAction\", id: \"http://schema.org/RegisterAction\"),\n      \"Registry\" => TermDefinition.new(\"Registry\", id: \"http://schema.org/Registry\"),\n      \"ReimbursementCap\" => TermDefinition.new(\"ReimbursementCap\", id: \"http://schema.org/ReimbursementCap\"),\n      \"RejectAction\" => TermDefinition.new(\"RejectAction\", id: \"http://schema.org/RejectAction\"),\n      \"RemixAlbum\" => TermDefinition.new(\"RemixAlbum\", id: \"http://schema.org/RemixAlbum\"),\n      \"Renal\" => TermDefinition.new(\"Renal\", id: \"http://schema.org/Renal\"),\n      \"RentAction\" => TermDefinition.new(\"RentAction\", id: \"http://schema.org/RentAction\"),\n      \"RentalCarReservation\" => TermDefinition.new(\"RentalCarReservation\", id: \"http://schema.org/RentalCarReservation\"),\n      \"RentalVehicleUsage\" => TermDefinition.new(\"RentalVehicleUsage\", id: \"http://schema.org/RentalVehicleUsage\"),\n      \"ReplaceAction\" => TermDefinition.new(\"ReplaceAction\", id: \"http://schema.org/ReplaceAction\"),\n      \"ReplyAction\" => TermDefinition.new(\"ReplyAction\", id: \"http://schema.org/ReplyAction\"),\n      \"Report\" => TermDefinition.new(\"Report\", id: \"http://schema.org/Report\"),\n      \"ReportedDoseSchedule\" => TermDefinition.new(\"ReportedDoseSchedule\", id: \"http://schema.org/ReportedDoseSchedule\"),\n      \"Reservation\" => TermDefinition.new(\"Reservation\", id: \"http://schema.org/Reservation\"),\n      \"ReservationCancelled\" => TermDefinition.new(\"ReservationCancelled\", id: \"http://schema.org/ReservationCancelled\"),\n      \"ReservationConfirmed\" => TermDefinition.new(\"ReservationConfirmed\", id: \"http://schema.org/ReservationConfirmed\"),\n      \"ReservationHold\" => TermDefinition.new(\"ReservationHold\", id: \"http://schema.org/ReservationHold\"),\n      \"ReservationPackage\" => TermDefinition.new(\"ReservationPackage\", id: \"http://schema.org/ReservationPackage\"),\n      \"ReservationPending\" => TermDefinition.new(\"ReservationPending\", id: \"http://schema.org/ReservationPending\"),\n      \"ReservationStatusType\" => TermDefinition.new(\"ReservationStatusType\", id: \"http://schema.org/ReservationStatusType\"),\n      \"ReserveAction\" => TermDefinition.new(\"ReserveAction\", id: \"http://schema.org/ReserveAction\"),\n      \"Reservoir\" => TermDefinition.new(\"Reservoir\", id: \"http://schema.org/Reservoir\"),\n      \"Residence\" => TermDefinition.new(\"Residence\", id: \"http://schema.org/Residence\"),\n      \"Resort\" => TermDefinition.new(\"Resort\", id: \"http://schema.org/Resort\"),\n      \"RespiratoryTherapy\" => TermDefinition.new(\"RespiratoryTherapy\", id: \"http://schema.org/RespiratoryTherapy\"),\n      \"Restaurant\" => TermDefinition.new(\"Restaurant\", id: \"http://schema.org/Restaurant\"),\n      \"RestrictedDiet\" => TermDefinition.new(\"RestrictedDiet\", id: \"http://schema.org/RestrictedDiet\"),\n      \"ResultsAvailable\" => TermDefinition.new(\"ResultsAvailable\", id: \"http://schema.org/ResultsAvailable\"),\n      \"ResultsNotAvailable\" => TermDefinition.new(\"ResultsNotAvailable\", id: \"http://schema.org/ResultsNotAvailable\"),\n      \"ResumeAction\" => TermDefinition.new(\"ResumeAction\", id: \"http://schema.org/ResumeAction\"),\n      \"Retail\" => TermDefinition.new(\"Retail\", id: \"http://schema.org/Retail\"),\n      \"ReturnAction\" => TermDefinition.new(\"ReturnAction\", id: \"http://schema.org/ReturnAction\"),\n      \"Review\" => TermDefinition.new(\"Review\", id: \"http://schema.org/Review\"),\n      \"ReviewAction\" => TermDefinition.new(\"ReviewAction\", id: \"http://schema.org/ReviewAction\"),\n      \"Rheumatologic\" => TermDefinition.new(\"Rheumatologic\", id: \"http://schema.org/Rheumatologic\"),\n      \"RightHandDriving\" => TermDefinition.new(\"RightHandDriving\", id: \"http://schema.org/RightHandDriving\"),\n      \"RiverBodyOfWater\" => TermDefinition.new(\"RiverBodyOfWater\", id: \"http://schema.org/RiverBodyOfWater\"),\n      \"Role\" => TermDefinition.new(\"Role\", id: \"http://schema.org/Role\"),\n      \"RoofingContractor\" => TermDefinition.new(\"RoofingContractor\", id: \"http://schema.org/RoofingContractor\"),\n      \"Room\" => TermDefinition.new(\"Room\", id: \"http://schema.org/Room\"),\n      \"RsvpAction\" => TermDefinition.new(\"RsvpAction\", id: \"http://schema.org/RsvpAction\"),\n      \"RsvpResponseMaybe\" => TermDefinition.new(\"RsvpResponseMaybe\", id: \"http://schema.org/RsvpResponseMaybe\"),\n      \"RsvpResponseNo\" => TermDefinition.new(\"RsvpResponseNo\", id: \"http://schema.org/RsvpResponseNo\"),\n      \"RsvpResponseType\" => TermDefinition.new(\"RsvpResponseType\", id: \"http://schema.org/RsvpResponseType\"),\n      \"RsvpResponseYes\" => TermDefinition.new(\"RsvpResponseYes\", id: \"http://schema.org/RsvpResponseYes\"),\n      \"SaleEvent\" => TermDefinition.new(\"SaleEvent\", id: \"http://schema.org/SaleEvent\"),\n      \"Saturday\" => TermDefinition.new(\"Saturday\", id: \"http://schema.org/Saturday\"),\n      \"ScheduleAction\" => TermDefinition.new(\"ScheduleAction\", id: \"http://schema.org/ScheduleAction\"),\n      \"ScholarlyArticle\" => TermDefinition.new(\"ScholarlyArticle\", id: \"http://schema.org/ScholarlyArticle\"),\n      \"School\" => TermDefinition.new(\"School\", id: \"http://schema.org/School\"),\n      \"ScreeningEvent\" => TermDefinition.new(\"ScreeningEvent\", id: \"http://schema.org/ScreeningEvent\"),\n      \"Sculpture\" => TermDefinition.new(\"Sculpture\", id: \"http://schema.org/Sculpture\"),\n      \"SeaBodyOfWater\" => TermDefinition.new(\"SeaBodyOfWater\", id: \"http://schema.org/SeaBodyOfWater\"),\n      \"SearchAction\" => TermDefinition.new(\"SearchAction\", id: \"http://schema.org/SearchAction\"),\n      \"SearchResultsPage\" => TermDefinition.new(\"SearchResultsPage\", id: \"http://schema.org/SearchResultsPage\"),\n      \"Season\" => TermDefinition.new(\"Season\", id: \"http://schema.org/Season\"),\n      \"Seat\" => TermDefinition.new(\"Seat\", id: \"http://schema.org/Seat\"),\n      \"SeatingMap\" => TermDefinition.new(\"SeatingMap\", id: \"http://schema.org/SeatingMap\"),\n      \"SelfStorage\" => TermDefinition.new(\"SelfStorage\", id: \"http://schema.org/SelfStorage\"),\n      \"SellAction\" => TermDefinition.new(\"SellAction\", id: \"http://schema.org/SellAction\"),\n      \"SendAction\" => TermDefinition.new(\"SendAction\", id: \"http://schema.org/SendAction\"),\n      \"Series\" => TermDefinition.new(\"Series\", id: \"http://schema.org/Series\"),\n      \"Service\" => TermDefinition.new(\"Service\", id: \"http://schema.org/Service\"),\n      \"ServiceChannel\" => TermDefinition.new(\"ServiceChannel\", id: \"http://schema.org/ServiceChannel\"),\n      \"ShareAction\" => TermDefinition.new(\"ShareAction\", id: \"http://schema.org/ShareAction\"),\n      \"ShoeStore\" => TermDefinition.new(\"ShoeStore\", id: \"http://schema.org/ShoeStore\"),\n      \"ShoppingCenter\" => TermDefinition.new(\"ShoppingCenter\", id: \"http://schema.org/ShoppingCenter\"),\n      \"SingleBlindedTrial\" => TermDefinition.new(\"SingleBlindedTrial\", id: \"http://schema.org/SingleBlindedTrial\"),\n      \"SingleCenterTrial\" => TermDefinition.new(\"SingleCenterTrial\", id: \"http://schema.org/SingleCenterTrial\"),\n      \"SingleFamilyResidence\" => TermDefinition.new(\"SingleFamilyResidence\", id: \"http://schema.org/SingleFamilyResidence\"),\n      \"SinglePlayer\" => TermDefinition.new(\"SinglePlayer\", id: \"http://schema.org/SinglePlayer\"),\n      \"SingleRelease\" => TermDefinition.new(\"SingleRelease\", id: \"http://schema.org/SingleRelease\"),\n      \"SiteNavigationElement\" => TermDefinition.new(\"SiteNavigationElement\", id: \"http://schema.org/SiteNavigationElement\"),\n      \"SkiResort\" => TermDefinition.new(\"SkiResort\", id: \"http://schema.org/SkiResort\"),\n      \"Skin\" => TermDefinition.new(\"Skin\", id: \"http://schema.org/Skin\"),\n      \"SocialEvent\" => TermDefinition.new(\"SocialEvent\", id: \"http://schema.org/SocialEvent\"),\n      \"SocialMediaPosting\" => TermDefinition.new(\"SocialMediaPosting\", id: \"http://schema.org/SocialMediaPosting\"),\n      \"SoftwareApplication\" => TermDefinition.new(\"SoftwareApplication\", id: \"http://schema.org/SoftwareApplication\"),\n      \"SoftwareSourceCode\" => TermDefinition.new(\"SoftwareSourceCode\", id: \"http://schema.org/SoftwareSourceCode\"),\n      \"SoldOut\" => TermDefinition.new(\"SoldOut\", id: \"http://schema.org/SoldOut\"),\n      \"SomeProducts\" => TermDefinition.new(\"SomeProducts\", id: \"http://schema.org/SomeProducts\"),\n      \"SoundtrackAlbum\" => TermDefinition.new(\"SoundtrackAlbum\", id: \"http://schema.org/SoundtrackAlbum\"),\n      \"Specialty\" => TermDefinition.new(\"Specialty\", id: \"http://schema.org/Specialty\"),\n      \"SpeechPathology\" => TermDefinition.new(\"SpeechPathology\", id: \"http://schema.org/SpeechPathology\"),\n      \"SpokenWordAlbum\" => TermDefinition.new(\"SpokenWordAlbum\", id: \"http://schema.org/SpokenWordAlbum\"),\n      \"SportingGoodsStore\" => TermDefinition.new(\"SportingGoodsStore\", id: \"http://schema.org/SportingGoodsStore\"),\n      \"SportsActivityLocation\" => TermDefinition.new(\"SportsActivityLocation\", id: \"http://schema.org/SportsActivityLocation\"),\n      \"SportsClub\" => TermDefinition.new(\"SportsClub\", id: \"http://schema.org/SportsClub\"),\n      \"SportsEvent\" => TermDefinition.new(\"SportsEvent\", id: \"http://schema.org/SportsEvent\"),\n      \"SportsOrganization\" => TermDefinition.new(\"SportsOrganization\", id: \"http://schema.org/SportsOrganization\"),\n      \"SportsTeam\" => TermDefinition.new(\"SportsTeam\", id: \"http://schema.org/SportsTeam\"),\n      \"SpreadsheetDigitalDocument\" => TermDefinition.new(\"SpreadsheetDigitalDocument\", id: \"http://schema.org/SpreadsheetDigitalDocument\"),\n      \"StadiumOrArena\" => TermDefinition.new(\"StadiumOrArena\", id: \"http://schema.org/StadiumOrArena\"),\n      \"State\" => TermDefinition.new(\"State\", id: \"http://schema.org/State\"),\n      \"SteeringPositionValue\" => TermDefinition.new(\"SteeringPositionValue\", id: \"http://schema.org/SteeringPositionValue\"),\n      \"Store\" => TermDefinition.new(\"Store\", id: \"http://schema.org/Store\"),\n      \"StrengthTraining\" => TermDefinition.new(\"StrengthTraining\", id: \"http://schema.org/StrengthTraining\"),\n      \"StructuredValue\" => TermDefinition.new(\"StructuredValue\", id: \"http://schema.org/StructuredValue\"),\n      \"StudioAlbum\" => TermDefinition.new(\"StudioAlbum\", id: \"http://schema.org/StudioAlbum\"),\n      \"SubscribeAction\" => TermDefinition.new(\"SubscribeAction\", id: \"http://schema.org/SubscribeAction\"),\n      \"Substance\" => TermDefinition.new(\"Substance\", id: \"http://schema.org/Substance\"),\n      \"SubwayStation\" => TermDefinition.new(\"SubwayStation\", id: \"http://schema.org/SubwayStation\"),\n      \"Suite\" => TermDefinition.new(\"Suite\", id: \"http://schema.org/Suite\"),\n      \"Sunday\" => TermDefinition.new(\"Sunday\", id: \"http://schema.org/Sunday\"),\n      \"SuperficialAnatomy\" => TermDefinition.new(\"SuperficialAnatomy\", id: \"http://schema.org/SuperficialAnatomy\"),\n      \"Surgical\" => TermDefinition.new(\"Surgical\", id: \"http://schema.org/Surgical\"),\n      \"SurgicalProcedure\" => TermDefinition.new(\"SurgicalProcedure\", id: \"http://schema.org/SurgicalProcedure\"),\n      \"SuspendAction\" => TermDefinition.new(\"SuspendAction\", id: \"http://schema.org/SuspendAction\"),\n      \"Suspended\" => TermDefinition.new(\"Suspended\", id: \"http://schema.org/Suspended\"),\n      \"Synagogue\" => TermDefinition.new(\"Synagogue\", id: \"http://schema.org/Synagogue\"),\n      \"TVClip\" => TermDefinition.new(\"TVClip\", id: \"http://schema.org/TVClip\"),\n      \"TVEpisode\" => TermDefinition.new(\"TVEpisode\", id: \"http://schema.org/TVEpisode\"),\n      \"TVSeason\" => TermDefinition.new(\"TVSeason\", id: \"http://schema.org/TVSeason\"),\n      \"TVSeries\" => TermDefinition.new(\"TVSeries\", id: \"http://schema.org/TVSeries\"),\n      \"Table\" => TermDefinition.new(\"Table\", id: \"http://schema.org/Table\"),\n      \"TakeAction\" => TermDefinition.new(\"TakeAction\", id: \"http://schema.org/TakeAction\"),\n      \"TattooParlor\" => TermDefinition.new(\"TattooParlor\", id: \"http://schema.org/TattooParlor\"),\n      \"Taxi\" => TermDefinition.new(\"Taxi\", id: \"http://schema.org/Taxi\"),\n      \"TaxiReservation\" => TermDefinition.new(\"TaxiReservation\", id: \"http://schema.org/TaxiReservation\"),\n      \"TaxiService\" => TermDefinition.new(\"TaxiService\", id: \"http://schema.org/TaxiService\"),\n      \"TaxiStand\" => TermDefinition.new(\"TaxiStand\", id: \"http://schema.org/TaxiStand\"),\n      \"TaxiVehicleUsage\" => TermDefinition.new(\"TaxiVehicleUsage\", id: \"http://schema.org/TaxiVehicleUsage\"),\n      \"TechArticle\" => TermDefinition.new(\"TechArticle\", id: \"http://schema.org/TechArticle\"),\n      \"TelevisionChannel\" => TermDefinition.new(\"TelevisionChannel\", id: \"http://schema.org/TelevisionChannel\"),\n      \"TelevisionStation\" => TermDefinition.new(\"TelevisionStation\", id: \"http://schema.org/TelevisionStation\"),\n      \"TennisComplex\" => TermDefinition.new(\"TennisComplex\", id: \"http://schema.org/TennisComplex\"),\n      \"Terminated\" => TermDefinition.new(\"Terminated\", id: \"http://schema.org/Terminated\"),\n      \"Text\" => TermDefinition.new(\"Text\", id: \"http://schema.org/Text\"),\n      \"TextDigitalDocument\" => TermDefinition.new(\"TextDigitalDocument\", id: \"http://schema.org/TextDigitalDocument\"),\n      \"TheaterEvent\" => TermDefinition.new(\"TheaterEvent\", id: \"http://schema.org/TheaterEvent\"),\n      \"TheaterGroup\" => TermDefinition.new(\"TheaterGroup\", id: \"http://schema.org/TheaterGroup\"),\n      \"Therapeutic\" => TermDefinition.new(\"Therapeutic\", id: \"http://schema.org/Therapeutic\"),\n      \"TherapeuticProcedure\" => TermDefinition.new(\"TherapeuticProcedure\", id: \"http://schema.org/TherapeuticProcedure\"),\n      \"Thesis\" => TermDefinition.new(\"Thesis\", id: \"http://schema.org/Thesis\"),\n      \"Thing\" => TermDefinition.new(\"Thing\", id: \"http://schema.org/Thing\"),\n      \"Throat\" => TermDefinition.new(\"Throat\", id: \"http://schema.org/Throat\"),\n      \"Thursday\" => TermDefinition.new(\"Thursday\", id: \"http://schema.org/Thursday\"),\n      \"Ticket\" => TermDefinition.new(\"Ticket\", id: \"http://schema.org/Ticket\"),\n      \"TieAction\" => TermDefinition.new(\"TieAction\", id: \"http://schema.org/TieAction\"),\n      \"Time\" => TermDefinition.new(\"Time\", id: \"http://schema.org/Time\"),\n      \"TipAction\" => TermDefinition.new(\"TipAction\", id: \"http://schema.org/TipAction\"),\n      \"TireShop\" => TermDefinition.new(\"TireShop\", id: \"http://schema.org/TireShop\"),\n      \"TollFree\" => TermDefinition.new(\"TollFree\", id: \"http://schema.org/TollFree\"),\n      \"TouristAttraction\" => TermDefinition.new(\"TouristAttraction\", id: \"http://schema.org/TouristAttraction\"),\n      \"TouristInformationCenter\" => TermDefinition.new(\"TouristInformationCenter\", id: \"http://schema.org/TouristInformationCenter\"),\n      \"Toxicologic\" => TermDefinition.new(\"Toxicologic\", id: \"http://schema.org/Toxicologic\"),\n      \"ToyStore\" => TermDefinition.new(\"ToyStore\", id: \"http://schema.org/ToyStore\"),\n      \"TrackAction\" => TermDefinition.new(\"TrackAction\", id: \"http://schema.org/TrackAction\"),\n      \"TradeAction\" => TermDefinition.new(\"TradeAction\", id: \"http://schema.org/TradeAction\"),\n      \"TraditionalChinese\" => TermDefinition.new(\"TraditionalChinese\", id: \"http://schema.org/TraditionalChinese\"),\n      \"TrainReservation\" => TermDefinition.new(\"TrainReservation\", id: \"http://schema.org/TrainReservation\"),\n      \"TrainStation\" => TermDefinition.new(\"TrainStation\", id: \"http://schema.org/TrainStation\"),\n      \"TrainTrip\" => TermDefinition.new(\"TrainTrip\", id: \"http://schema.org/TrainTrip\"),\n      \"TransferAction\" => TermDefinition.new(\"TransferAction\", id: \"http://schema.org/TransferAction\"),\n      \"TransitMap\" => TermDefinition.new(\"TransitMap\", id: \"http://schema.org/TransitMap\"),\n      \"TravelAction\" => TermDefinition.new(\"TravelAction\", id: \"http://schema.org/TravelAction\"),\n      \"TravelAgency\" => TermDefinition.new(\"TravelAgency\", id: \"http://schema.org/TravelAgency\"),\n      \"TreatmentIndication\" => TermDefinition.new(\"TreatmentIndication\", id: \"http://schema.org/TreatmentIndication\"),\n      \"TripleBlindedTrial\" => TermDefinition.new(\"TripleBlindedTrial\", id: \"http://schema.org/TripleBlindedTrial\"),\n      \"Tuesday\" => TermDefinition.new(\"Tuesday\", id: \"http://schema.org/Tuesday\"),\n      \"TypeAndQuantityNode\" => TermDefinition.new(\"TypeAndQuantityNode\", id: \"http://schema.org/TypeAndQuantityNode\"),\n      \"URL\" => TermDefinition.new(\"URL\", id: \"http://schema.org/URL\"),\n      \"Ultrasound\" => TermDefinition.new(\"Ultrasound\", id: \"http://schema.org/Ultrasound\"),\n      \"UnRegisterAction\" => TermDefinition.new(\"UnRegisterAction\", id: \"http://schema.org/UnRegisterAction\"),\n      \"UnitPriceSpecification\" => TermDefinition.new(\"UnitPriceSpecification\", id: \"http://schema.org/UnitPriceSpecification\"),\n      \"UpdateAction\" => TermDefinition.new(\"UpdateAction\", id: \"http://schema.org/UpdateAction\"),\n      \"Urologic\" => TermDefinition.new(\"Urologic\", id: \"http://schema.org/Urologic\"),\n      \"UseAction\" => TermDefinition.new(\"UseAction\", id: \"http://schema.org/UseAction\"),\n      \"UsedCondition\" => TermDefinition.new(\"UsedCondition\", id: \"http://schema.org/UsedCondition\"),\n      \"UserBlocks\" => TermDefinition.new(\"UserBlocks\", id: \"http://schema.org/UserBlocks\"),\n      \"UserCheckins\" => TermDefinition.new(\"UserCheckins\", id: \"http://schema.org/UserCheckins\"),\n      \"UserComments\" => TermDefinition.new(\"UserComments\", id: \"http://schema.org/UserComments\"),\n      \"UserDownloads\" => TermDefinition.new(\"UserDownloads\", id: \"http://schema.org/UserDownloads\"),\n      \"UserInteraction\" => TermDefinition.new(\"UserInteraction\", id: \"http://schema.org/UserInteraction\"),\n      \"UserLikes\" => TermDefinition.new(\"UserLikes\", id: \"http://schema.org/UserLikes\"),\n      \"UserPageVisits\" => TermDefinition.new(\"UserPageVisits\", id: \"http://schema.org/UserPageVisits\"),\n      \"UserPlays\" => TermDefinition.new(\"UserPlays\", id: \"http://schema.org/UserPlays\"),\n      \"UserPlusOnes\" => TermDefinition.new(\"UserPlusOnes\", id: \"http://schema.org/UserPlusOnes\"),\n      \"UserTweets\" => TermDefinition.new(\"UserTweets\", id: \"http://schema.org/UserTweets\"),\n      \"VeganDiet\" => TermDefinition.new(\"VeganDiet\", id: \"http://schema.org/VeganDiet\"),\n      \"VegetarianDiet\" => TermDefinition.new(\"VegetarianDiet\", id: \"http://schema.org/VegetarianDiet\"),\n      \"Vehicle\" => TermDefinition.new(\"Vehicle\", id: \"http://schema.org/Vehicle\"),\n      \"Vein\" => TermDefinition.new(\"Vein\", id: \"http://schema.org/Vein\"),\n      \"VenueMap\" => TermDefinition.new(\"VenueMap\", id: \"http://schema.org/VenueMap\"),\n      \"Vessel\" => TermDefinition.new(\"Vessel\", id: \"http://schema.org/Vessel\"),\n      \"VeterinaryCare\" => TermDefinition.new(\"VeterinaryCare\", id: \"http://schema.org/VeterinaryCare\"),\n      \"VideoGallery\" => TermDefinition.new(\"VideoGallery\", id: \"http://schema.org/VideoGallery\"),\n      \"VideoGame\" => TermDefinition.new(\"VideoGame\", id: \"http://schema.org/VideoGame\"),\n      \"VideoGameClip\" => TermDefinition.new(\"VideoGameClip\", id: \"http://schema.org/VideoGameClip\"),\n      \"VideoGameSeries\" => TermDefinition.new(\"VideoGameSeries\", id: \"http://schema.org/VideoGameSeries\"),\n      \"VideoObject\" => TermDefinition.new(\"VideoObject\", id: \"http://schema.org/VideoObject\"),\n      \"ViewAction\" => TermDefinition.new(\"ViewAction\", id: \"http://schema.org/ViewAction\"),\n      \"VinylFormat\" => TermDefinition.new(\"VinylFormat\", id: \"http://schema.org/VinylFormat\"),\n      \"Virus\" => TermDefinition.new(\"Virus\", id: \"http://schema.org/Virus\"),\n      \"VisualArtsEvent\" => TermDefinition.new(\"VisualArtsEvent\", id: \"http://schema.org/VisualArtsEvent\"),\n      \"VisualArtwork\" => TermDefinition.new(\"VisualArtwork\", id: \"http://schema.org/VisualArtwork\"),\n      \"VitalSign\" => TermDefinition.new(\"VitalSign\", id: \"http://schema.org/VitalSign\"),\n      \"Volcano\" => TermDefinition.new(\"Volcano\", id: \"http://schema.org/Volcano\"),\n      \"VoteAction\" => TermDefinition.new(\"VoteAction\", id: \"http://schema.org/VoteAction\"),\n      \"WPAdBlock\" => TermDefinition.new(\"WPAdBlock\", id: \"http://schema.org/WPAdBlock\"),\n      \"WPFooter\" => TermDefinition.new(\"WPFooter\", id: \"http://schema.org/WPFooter\"),\n      \"WPHeader\" => TermDefinition.new(\"WPHeader\", id: \"http://schema.org/WPHeader\"),\n      \"WPSideBar\" => TermDefinition.new(\"WPSideBar\", id: \"http://schema.org/WPSideBar\"),\n      \"WantAction\" => TermDefinition.new(\"WantAction\", id: \"http://schema.org/WantAction\"),\n      \"WarrantyPromise\" => TermDefinition.new(\"WarrantyPromise\", id: \"http://schema.org/WarrantyPromise\"),\n      \"WarrantyScope\" => TermDefinition.new(\"WarrantyScope\", id: \"http://schema.org/WarrantyScope\"),\n      \"WatchAction\" => TermDefinition.new(\"WatchAction\", id: \"http://schema.org/WatchAction\"),\n      \"Waterfall\" => TermDefinition.new(\"Waterfall\", id: \"http://schema.org/Waterfall\"),\n      \"WearAction\" => TermDefinition.new(\"WearAction\", id: \"http://schema.org/WearAction\"),\n      \"WebApplication\" => TermDefinition.new(\"WebApplication\", id: \"http://schema.org/WebApplication\"),\n      \"WebPage\" => TermDefinition.new(\"WebPage\", id: \"http://schema.org/WebPage\"),\n      \"WebPageElement\" => TermDefinition.new(\"WebPageElement\", id: \"http://schema.org/WebPageElement\"),\n      \"WebSite\" => TermDefinition.new(\"WebSite\", id: \"http://schema.org/WebSite\"),\n      \"Wednesday\" => TermDefinition.new(\"Wednesday\", id: \"http://schema.org/Wednesday\"),\n      \"WesternConventional\" => TermDefinition.new(\"WesternConventional\", id: \"http://schema.org/WesternConventional\"),\n      \"Wholesale\" => TermDefinition.new(\"Wholesale\", id: \"http://schema.org/Wholesale\"),\n      \"WholesaleStore\" => TermDefinition.new(\"WholesaleStore\", id: \"http://schema.org/WholesaleStore\"),\n      \"WinAction\" => TermDefinition.new(\"WinAction\", id: \"http://schema.org/WinAction\"),\n      \"Winery\" => TermDefinition.new(\"Winery\", id: \"http://schema.org/Winery\"),\n      \"Withdrawn\" => TermDefinition.new(\"Withdrawn\", id: \"http://schema.org/Withdrawn\"),\n      \"WorkersUnion\" => TermDefinition.new(\"WorkersUnion\", id: \"http://schema.org/WorkersUnion\"),\n      \"WriteAction\" => TermDefinition.new(\"WriteAction\", id: \"http://schema.org/WriteAction\"),\n      \"WritePermission\" => TermDefinition.new(\"WritePermission\", id: \"http://schema.org/WritePermission\"),\n      \"XRay\" => TermDefinition.new(\"XRay\", id: \"http://schema.org/XRay\"),\n      \"ZoneBoardingPolicy\" => TermDefinition.new(\"ZoneBoardingPolicy\", id: \"http://schema.org/ZoneBoardingPolicy\"),\n      \"Zoo\" => TermDefinition.new(\"Zoo\", id: \"http://schema.org/Zoo\"),\n      \"about\" => TermDefinition.new(\"about\", id: \"http://schema.org/about\"),\n      \"abridged\" => TermDefinition.new(\"abridged\", id: \"http://schema.org/abridged\"),\n      \"accelerationTime\" => TermDefinition.new(\"accelerationTime\", id: \"http://schema.org/accelerationTime\"),\n      \"acceptedAnswer\" => TermDefinition.new(\"acceptedAnswer\", id: \"http://schema.org/acceptedAnswer\"),\n      \"acceptedOffer\" => TermDefinition.new(\"acceptedOffer\", id: \"http://schema.org/acceptedOffer\"),\n      \"acceptedPaymentMethod\" => TermDefinition.new(\"acceptedPaymentMethod\", id: \"http://schema.org/acceptedPaymentMethod\"),\n      \"acceptsReservations\" => TermDefinition.new(\"acceptsReservations\", id: \"http://schema.org/acceptsReservations\", type_mapping: \"@id\"),\n      \"accessCode\" => TermDefinition.new(\"accessCode\", id: \"http://schema.org/accessCode\"),\n      \"accessMode\" => TermDefinition.new(\"accessMode\", id: \"http://schema.org/accessMode\"),\n      \"accessModeSufficient\" => TermDefinition.new(\"accessModeSufficient\", id: \"http://schema.org/accessModeSufficient\"),\n      \"accessibilityAPI\" => TermDefinition.new(\"accessibilityAPI\", id: \"http://schema.org/accessibilityAPI\"),\n      \"accessibilityControl\" => TermDefinition.new(\"accessibilityControl\", id: \"http://schema.org/accessibilityControl\"),\n      \"accessibilityFeature\" => TermDefinition.new(\"accessibilityFeature\", id: \"http://schema.org/accessibilityFeature\"),\n      \"accessibilityHazard\" => TermDefinition.new(\"accessibilityHazard\", id: \"http://schema.org/accessibilityHazard\"),\n      \"accessibilitySummary\" => TermDefinition.new(\"accessibilitySummary\", id: \"http://schema.org/accessibilitySummary\"),\n      \"accountId\" => TermDefinition.new(\"accountId\", id: \"http://schema.org/accountId\"),\n      \"accountablePerson\" => TermDefinition.new(\"accountablePerson\", id: \"http://schema.org/accountablePerson\"),\n      \"acquiredFrom\" => TermDefinition.new(\"acquiredFrom\", id: \"http://schema.org/acquiredFrom\"),\n      \"acrissCode\" => TermDefinition.new(\"acrissCode\", id: \"http://schema.org/acrissCode\"),\n      \"action\" => TermDefinition.new(\"action\", id: \"http://schema.org/action\"),\n      \"actionApplication\" => TermDefinition.new(\"actionApplication\", id: \"http://schema.org/actionApplication\"),\n      \"actionOption\" => TermDefinition.new(\"actionOption\", id: \"http://schema.org/actionOption\"),\n      \"actionPlatform\" => TermDefinition.new(\"actionPlatform\", id: \"http://schema.org/actionPlatform\", type_mapping: \"@id\"),\n      \"actionStatus\" => TermDefinition.new(\"actionStatus\", id: \"http://schema.org/actionStatus\"),\n      \"activeIngredient\" => TermDefinition.new(\"activeIngredient\", id: \"http://schema.org/activeIngredient\"),\n      \"activityDuration\" => TermDefinition.new(\"activityDuration\", id: \"http://schema.org/activityDuration\"),\n      \"activityFrequency\" => TermDefinition.new(\"activityFrequency\", id: \"http://schema.org/activityFrequency\"),\n      \"actor\" => TermDefinition.new(\"actor\", id: \"http://schema.org/actor\"),\n      \"actors\" => TermDefinition.new(\"actors\", id: \"http://schema.org/actors\"),\n      \"addOn\" => TermDefinition.new(\"addOn\", id: \"http://schema.org/addOn\"),\n      \"additionalName\" => TermDefinition.new(\"additionalName\", id: \"http://schema.org/additionalName\"),\n      \"additionalNumberOfGuests\" => TermDefinition.new(\"additionalNumberOfGuests\", id: \"http://schema.org/additionalNumberOfGuests\"),\n      \"additionalProperty\" => TermDefinition.new(\"additionalProperty\", id: \"http://schema.org/additionalProperty\"),\n      \"additionalType\" => TermDefinition.new(\"additionalType\", id: \"http://schema.org/additionalType\", type_mapping: \"@id\"),\n      \"additionalVariable\" => TermDefinition.new(\"additionalVariable\", id: \"http://schema.org/additionalVariable\"),\n      \"address\" => TermDefinition.new(\"address\", id: \"http://schema.org/address\"),\n      \"addressCountry\" => TermDefinition.new(\"addressCountry\", id: \"http://schema.org/addressCountry\"),\n      \"addressLocality\" => TermDefinition.new(\"addressLocality\", id: \"http://schema.org/addressLocality\"),\n      \"addressRegion\" => TermDefinition.new(\"addressRegion\", id: \"http://schema.org/addressRegion\"),\n      \"administrationRoute\" => TermDefinition.new(\"administrationRoute\", id: \"http://schema.org/administrationRoute\"),\n      \"advanceBookingRequirement\" => TermDefinition.new(\"advanceBookingRequirement\", id: \"http://schema.org/advanceBookingRequirement\"),\n      \"adverseOutcome\" => TermDefinition.new(\"adverseOutcome\", id: \"http://schema.org/adverseOutcome\"),\n      \"affectedBy\" => TermDefinition.new(\"affectedBy\", id: \"http://schema.org/affectedBy\"),\n      \"affiliation\" => TermDefinition.new(\"affiliation\", id: \"http://schema.org/affiliation\"),\n      \"agent\" => TermDefinition.new(\"agent\", id: \"http://schema.org/agent\"),\n      \"aggregateRating\" => TermDefinition.new(\"aggregateRating\", id: \"http://schema.org/aggregateRating\"),\n      \"aircraft\" => TermDefinition.new(\"aircraft\", id: \"http://schema.org/aircraft\"),\n      \"album\" => TermDefinition.new(\"album\", id: \"http://schema.org/album\"),\n      \"albumProductionType\" => TermDefinition.new(\"albumProductionType\", id: \"http://schema.org/albumProductionType\"),\n      \"albumRelease\" => TermDefinition.new(\"albumRelease\", id: \"http://schema.org/albumRelease\"),\n      \"albumReleaseType\" => TermDefinition.new(\"albumReleaseType\", id: \"http://schema.org/albumReleaseType\"),\n      \"albums\" => TermDefinition.new(\"albums\", id: \"http://schema.org/albums\"),\n      \"alcoholWarning\" => TermDefinition.new(\"alcoholWarning\", id: \"http://schema.org/alcoholWarning\"),\n      \"algorithm\" => TermDefinition.new(\"algorithm\", id: \"http://schema.org/algorithm\"),\n      \"alignmentType\" => TermDefinition.new(\"alignmentType\", id: \"http://schema.org/alignmentType\"),\n      \"alternateName\" => TermDefinition.new(\"alternateName\", id: \"http://schema.org/alternateName\"),\n      \"alternativeHeadline\" => TermDefinition.new(\"alternativeHeadline\", id: \"http://schema.org/alternativeHeadline\"),\n      \"alumni\" => TermDefinition.new(\"alumni\", id: \"http://schema.org/alumni\"),\n      \"alumniOf\" => TermDefinition.new(\"alumniOf\", id: \"http://schema.org/alumniOf\"),\n      \"amenityFeature\" => TermDefinition.new(\"amenityFeature\", id: \"http://schema.org/amenityFeature\"),\n      \"amount\" => TermDefinition.new(\"amount\", id: \"http://schema.org/amount\"),\n      \"amountOfThisGood\" => TermDefinition.new(\"amountOfThisGood\", id: \"http://schema.org/amountOfThisGood\"),\n      \"annualPercentageRate\" => TermDefinition.new(\"annualPercentageRate\", id: \"http://schema.org/annualPercentageRate\"),\n      \"answerCount\" => TermDefinition.new(\"answerCount\", id: \"http://schema.org/answerCount\"),\n      \"antagonist\" => TermDefinition.new(\"antagonist\", id: \"http://schema.org/antagonist\"),\n      \"applicableLocation\" => TermDefinition.new(\"applicableLocation\", id: \"http://schema.org/applicableLocation\"),\n      \"application\" => TermDefinition.new(\"application\", id: \"http://schema.org/application\"),\n      \"applicationCategory\" => TermDefinition.new(\"applicationCategory\", id: \"http://schema.org/applicationCategory\", type_mapping: \"@id\"),\n      \"applicationSubCategory\" => TermDefinition.new(\"applicationSubCategory\", id: \"http://schema.org/applicationSubCategory\", type_mapping: \"@id\"),\n      \"applicationSuite\" => TermDefinition.new(\"applicationSuite\", id: \"http://schema.org/applicationSuite\"),\n      \"appliesToDeliveryMethod\" => TermDefinition.new(\"appliesToDeliveryMethod\", id: \"http://schema.org/appliesToDeliveryMethod\"),\n      \"appliesToPaymentMethod\" => TermDefinition.new(\"appliesToPaymentMethod\", id: \"http://schema.org/appliesToPaymentMethod\"),\n      \"area\" => TermDefinition.new(\"area\", id: \"http://schema.org/area\"),\n      \"areaServed\" => TermDefinition.new(\"areaServed\", id: \"http://schema.org/areaServed\"),\n      \"arrivalAirport\" => TermDefinition.new(\"arrivalAirport\", id: \"http://schema.org/arrivalAirport\"),\n      \"arrivalBusStop\" => TermDefinition.new(\"arrivalBusStop\", id: \"http://schema.org/arrivalBusStop\"),\n      \"arrivalGate\" => TermDefinition.new(\"arrivalGate\", id: \"http://schema.org/arrivalGate\"),\n      \"arrivalPlatform\" => TermDefinition.new(\"arrivalPlatform\", id: \"http://schema.org/arrivalPlatform\"),\n      \"arrivalStation\" => TermDefinition.new(\"arrivalStation\", id: \"http://schema.org/arrivalStation\"),\n      \"arrivalTerminal\" => TermDefinition.new(\"arrivalTerminal\", id: \"http://schema.org/arrivalTerminal\"),\n      \"arrivalTime\" => TermDefinition.new(\"arrivalTime\", id: \"http://schema.org/arrivalTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"artEdition\" => TermDefinition.new(\"artEdition\", id: \"http://schema.org/artEdition\"),\n      \"artMedium\" => TermDefinition.new(\"artMedium\", id: \"http://schema.org/artMedium\", type_mapping: \"@id\"),\n      \"arterialBranch\" => TermDefinition.new(\"arterialBranch\", id: \"http://schema.org/arterialBranch\"),\n      \"artform\" => TermDefinition.new(\"artform\", id: \"http://schema.org/artform\", type_mapping: \"@id\"),\n      \"articleBody\" => TermDefinition.new(\"articleBody\", id: \"http://schema.org/articleBody\"),\n      \"articleSection\" => TermDefinition.new(\"articleSection\", id: \"http://schema.org/articleSection\"),\n      \"artist\" => TermDefinition.new(\"artist\", id: \"http://schema.org/artist\"),\n      \"artworkSurface\" => TermDefinition.new(\"artworkSurface\", id: \"http://schema.org/artworkSurface\", type_mapping: \"@id\"),\n      \"aspect\" => TermDefinition.new(\"aspect\", id: \"http://schema.org/aspect\"),\n      \"assembly\" => TermDefinition.new(\"assembly\", id: \"http://schema.org/assembly\"),\n      \"assemblyVersion\" => TermDefinition.new(\"assemblyVersion\", id: \"http://schema.org/assemblyVersion\"),\n      \"associatedAnatomy\" => TermDefinition.new(\"associatedAnatomy\", id: \"http://schema.org/associatedAnatomy\"),\n      \"associatedArticle\" => TermDefinition.new(\"associatedArticle\", id: \"http://schema.org/associatedArticle\"),\n      \"associatedMedia\" => TermDefinition.new(\"associatedMedia\", id: \"http://schema.org/associatedMedia\"),\n      \"associatedPathophysiology\" => TermDefinition.new(\"associatedPathophysiology\", id: \"http://schema.org/associatedPathophysiology\"),\n      \"athlete\" => TermDefinition.new(\"athlete\", id: \"http://schema.org/athlete\"),\n      \"attendee\" => TermDefinition.new(\"attendee\", id: \"http://schema.org/attendee\"),\n      \"attendees\" => TermDefinition.new(\"attendees\", id: \"http://schema.org/attendees\"),\n      \"audience\" => TermDefinition.new(\"audience\", id: \"http://schema.org/audience\"),\n      \"audienceType\" => TermDefinition.new(\"audienceType\", id: \"http://schema.org/audienceType\"),\n      \"audio\" => TermDefinition.new(\"audio\", id: \"http://schema.org/audio\"),\n      \"author\" => TermDefinition.new(\"author\", id: \"http://schema.org/author\"),\n      \"availability\" => TermDefinition.new(\"availability\", id: \"http://schema.org/availability\"),\n      \"availabilityEnds\" => TermDefinition.new(\"availabilityEnds\", id: \"http://schema.org/availabilityEnds\", type_mapping: \"http://schema.org/DateTime\"),\n      \"availabilityStarts\" => TermDefinition.new(\"availabilityStarts\", id: \"http://schema.org/availabilityStarts\", type_mapping: \"http://schema.org/DateTime\"),\n      \"availableAtOrFrom\" => TermDefinition.new(\"availableAtOrFrom\", id: \"http://schema.org/availableAtOrFrom\"),\n      \"availableChannel\" => TermDefinition.new(\"availableChannel\", id: \"http://schema.org/availableChannel\"),\n      \"availableDeliveryMethod\" => TermDefinition.new(\"availableDeliveryMethod\", id: \"http://schema.org/availableDeliveryMethod\"),\n      \"availableFrom\" => TermDefinition.new(\"availableFrom\", id: \"http://schema.org/availableFrom\", type_mapping: \"http://schema.org/DateTime\"),\n      \"availableIn\" => TermDefinition.new(\"availableIn\", id: \"http://schema.org/availableIn\"),\n      \"availableLanguage\" => TermDefinition.new(\"availableLanguage\", id: \"http://schema.org/availableLanguage\"),\n      \"availableOnDevice\" => TermDefinition.new(\"availableOnDevice\", id: \"http://schema.org/availableOnDevice\"),\n      \"availableService\" => TermDefinition.new(\"availableService\", id: \"http://schema.org/availableService\"),\n      \"availableStrength\" => TermDefinition.new(\"availableStrength\", id: \"http://schema.org/availableStrength\"),\n      \"availableTest\" => TermDefinition.new(\"availableTest\", id: \"http://schema.org/availableTest\"),\n      \"availableThrough\" => TermDefinition.new(\"availableThrough\", id: \"http://schema.org/availableThrough\", type_mapping: \"http://schema.org/DateTime\"),\n      \"award\" => TermDefinition.new(\"award\", id: \"http://schema.org/award\"),\n      \"awards\" => TermDefinition.new(\"awards\", id: \"http://schema.org/awards\"),\n      \"awayTeam\" => TermDefinition.new(\"awayTeam\", id: \"http://schema.org/awayTeam\"),\n      \"background\" => TermDefinition.new(\"background\", id: \"http://schema.org/background\"),\n      \"baseSalary\" => TermDefinition.new(\"baseSalary\", id: \"http://schema.org/baseSalary\"),\n      \"bed\" => TermDefinition.new(\"bed\", id: \"http://schema.org/bed\"),\n      \"benefits\" => TermDefinition.new(\"benefits\", id: \"http://schema.org/benefits\"),\n      \"benefitsSummaryUrl\" => TermDefinition.new(\"benefitsSummaryUrl\", id: \"http://schema.org/benefitsSummaryUrl\", type_mapping: \"@id\"),\n      \"bestRating\" => TermDefinition.new(\"bestRating\", id: \"http://schema.org/bestRating\"),\n      \"billingAddress\" => TermDefinition.new(\"billingAddress\", id: \"http://schema.org/billingAddress\"),\n      \"billingIncrement\" => TermDefinition.new(\"billingIncrement\", id: \"http://schema.org/billingIncrement\"),\n      \"billingPeriod\" => TermDefinition.new(\"billingPeriod\", id: \"http://schema.org/billingPeriod\"),\n      \"biomechnicalClass\" => TermDefinition.new(\"biomechnicalClass\", id: \"http://schema.org/biomechnicalClass\"),\n      \"birthDate\" => TermDefinition.new(\"birthDate\", id: \"http://schema.org/birthDate\", type_mapping: \"http://schema.org/Date\"),\n      \"birthPlace\" => TermDefinition.new(\"birthPlace\", id: \"http://schema.org/birthPlace\"),\n      \"bitrate\" => TermDefinition.new(\"bitrate\", id: \"http://schema.org/bitrate\"),\n      \"blogPost\" => TermDefinition.new(\"blogPost\", id: \"http://schema.org/blogPost\"),\n      \"blogPosts\" => TermDefinition.new(\"blogPosts\", id: \"http://schema.org/blogPosts\"),\n      \"bloodSupply\" => TermDefinition.new(\"bloodSupply\", id: \"http://schema.org/bloodSupply\"),\n      \"boardingGroup\" => TermDefinition.new(\"boardingGroup\", id: \"http://schema.org/boardingGroup\"),\n      \"boardingPolicy\" => TermDefinition.new(\"boardingPolicy\", id: \"http://schema.org/boardingPolicy\"),\n      \"bodyLocation\" => TermDefinition.new(\"bodyLocation\", id: \"http://schema.org/bodyLocation\"),\n      \"bodyType\" => TermDefinition.new(\"bodyType\", id: \"http://schema.org/bodyType\", type_mapping: \"@id\"),\n      \"bookEdition\" => TermDefinition.new(\"bookEdition\", id: \"http://schema.org/bookEdition\"),\n      \"bookFormat\" => TermDefinition.new(\"bookFormat\", id: \"http://schema.org/bookFormat\"),\n      \"bookingAgent\" => TermDefinition.new(\"bookingAgent\", id: \"http://schema.org/bookingAgent\"),\n      \"bookingTime\" => TermDefinition.new(\"bookingTime\", id: \"http://schema.org/bookingTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"borrower\" => TermDefinition.new(\"borrower\", id: \"http://schema.org/borrower\"),\n      \"box\" => TermDefinition.new(\"box\", id: \"http://schema.org/box\"),\n      \"branch\" => TermDefinition.new(\"branch\", id: \"http://schema.org/branch\"),\n      \"branchCode\" => TermDefinition.new(\"branchCode\", id: \"http://schema.org/branchCode\"),\n      \"branchOf\" => TermDefinition.new(\"branchOf\", id: \"http://schema.org/branchOf\"),\n      \"brand\" => TermDefinition.new(\"brand\", id: \"http://schema.org/brand\"),\n      \"breadcrumb\" => TermDefinition.new(\"breadcrumb\", id: \"http://schema.org/breadcrumb\"),\n      \"breastfeedingWarning\" => TermDefinition.new(\"breastfeedingWarning\", id: \"http://schema.org/breastfeedingWarning\"),\n      \"broadcastAffiliateOf\" => TermDefinition.new(\"broadcastAffiliateOf\", id: \"http://schema.org/broadcastAffiliateOf\"),\n      \"broadcastChannelId\" => TermDefinition.new(\"broadcastChannelId\", id: \"http://schema.org/broadcastChannelId\"),\n      \"broadcastDisplayName\" => TermDefinition.new(\"broadcastDisplayName\", id: \"http://schema.org/broadcastDisplayName\"),\n      \"broadcastFrequency\" => TermDefinition.new(\"broadcastFrequency\", id: \"http://schema.org/broadcastFrequency\"),\n      \"broadcastFrequencyValue\" => TermDefinition.new(\"broadcastFrequencyValue\", id: \"http://schema.org/broadcastFrequencyValue\"),\n      \"broadcastOfEvent\" => TermDefinition.new(\"broadcastOfEvent\", id: \"http://schema.org/broadcastOfEvent\"),\n      \"broadcastServiceTier\" => TermDefinition.new(\"broadcastServiceTier\", id: \"http://schema.org/broadcastServiceTier\"),\n      \"broadcastSignalModulation\" => TermDefinition.new(\"broadcastSignalModulation\", id: \"http://schema.org/broadcastSignalModulation\"),\n      \"broadcastTimezone\" => TermDefinition.new(\"broadcastTimezone\", id: \"http://schema.org/broadcastTimezone\"),\n      \"broadcaster\" => TermDefinition.new(\"broadcaster\", id: \"http://schema.org/broadcaster\"),\n      \"broker\" => TermDefinition.new(\"broker\", id: \"http://schema.org/broker\"),\n      \"browserRequirements\" => TermDefinition.new(\"browserRequirements\", id: \"http://schema.org/browserRequirements\"),\n      \"busName\" => TermDefinition.new(\"busName\", id: \"http://schema.org/busName\"),\n      \"busNumber\" => TermDefinition.new(\"busNumber\", id: \"http://schema.org/busNumber\"),\n      \"businessFunction\" => TermDefinition.new(\"businessFunction\", id: \"http://schema.org/businessFunction\"),\n      \"buyer\" => TermDefinition.new(\"buyer\", id: \"http://schema.org/buyer\"),\n      \"byArtist\" => TermDefinition.new(\"byArtist\", id: \"http://schema.org/byArtist\"),\n      \"calories\" => TermDefinition.new(\"calories\", id: \"http://schema.org/calories\"),\n      \"candidate\" => TermDefinition.new(\"candidate\", id: \"http://schema.org/candidate\"),\n      \"caption\" => TermDefinition.new(\"caption\", id: \"http://schema.org/caption\"),\n      \"carbohydrateContent\" => TermDefinition.new(\"carbohydrateContent\", id: \"http://schema.org/carbohydrateContent\"),\n      \"cargoVolume\" => TermDefinition.new(\"cargoVolume\", id: \"http://schema.org/cargoVolume\"),\n      \"carrier\" => TermDefinition.new(\"carrier\", id: \"http://schema.org/carrier\"),\n      \"carrierRequirements\" => TermDefinition.new(\"carrierRequirements\", id: \"http://schema.org/carrierRequirements\"),\n      \"catalog\" => TermDefinition.new(\"catalog\", id: \"http://schema.org/catalog\"),\n      \"catalogNumber\" => TermDefinition.new(\"catalogNumber\", id: \"http://schema.org/catalogNumber\"),\n      \"category\" => TermDefinition.new(\"category\", id: \"http://schema.org/category\"),\n      \"cause\" => TermDefinition.new(\"cause\", id: \"http://schema.org/cause\"),\n      \"causeOf\" => TermDefinition.new(\"causeOf\", id: \"http://schema.org/causeOf\"),\n      \"character\" => TermDefinition.new(\"character\", id: \"http://schema.org/character\"),\n      \"characterAttribute\" => TermDefinition.new(\"characterAttribute\", id: \"http://schema.org/characterAttribute\"),\n      \"characterName\" => TermDefinition.new(\"characterName\", id: \"http://schema.org/characterName\"),\n      \"cheatCode\" => TermDefinition.new(\"cheatCode\", id: \"http://schema.org/cheatCode\"),\n      \"checkinTime\" => TermDefinition.new(\"checkinTime\", id: \"http://schema.org/checkinTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"checkoutTime\" => TermDefinition.new(\"checkoutTime\", id: \"http://schema.org/checkoutTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"childMaxAge\" => TermDefinition.new(\"childMaxAge\", id: \"http://schema.org/childMaxAge\"),\n      \"childMinAge\" => TermDefinition.new(\"childMinAge\", id: \"http://schema.org/childMinAge\"),\n      \"children\" => TermDefinition.new(\"children\", id: \"http://schema.org/children\"),\n      \"cholesterolContent\" => TermDefinition.new(\"cholesterolContent\", id: \"http://schema.org/cholesterolContent\"),\n      \"circle\" => TermDefinition.new(\"circle\", id: \"http://schema.org/circle\"),\n      \"citation\" => TermDefinition.new(\"citation\", id: \"http://schema.org/citation\"),\n      \"claimReviewed\" => TermDefinition.new(\"claimReviewed\", id: \"http://schema.org/claimReviewed\"),\n      \"clincalPharmacology\" => TermDefinition.new(\"clincalPharmacology\", id: \"http://schema.org/clincalPharmacology\"),\n      \"clinicalPharmacology\" => TermDefinition.new(\"clinicalPharmacology\", id: \"http://schema.org/clinicalPharmacology\"),\n      \"clipNumber\" => TermDefinition.new(\"clipNumber\", id: \"http://schema.org/clipNumber\"),\n      \"closes\" => TermDefinition.new(\"closes\", id: \"http://schema.org/closes\"),\n      \"coach\" => TermDefinition.new(\"coach\", id: \"http://schema.org/coach\"),\n      \"code\" => TermDefinition.new(\"code\", id: \"http://schema.org/code\"),\n      \"codeRepository\" => TermDefinition.new(\"codeRepository\", id: \"http://schema.org/codeRepository\", type_mapping: \"@id\"),\n      \"codeSampleType\" => TermDefinition.new(\"codeSampleType\", id: \"http://schema.org/codeSampleType\"),\n      \"codeValue\" => TermDefinition.new(\"codeValue\", id: \"http://schema.org/codeValue\"),\n      \"codingSystem\" => TermDefinition.new(\"codingSystem\", id: \"http://schema.org/codingSystem\"),\n      \"colleague\" => TermDefinition.new(\"colleague\", id: \"http://schema.org/colleague\", type_mapping: \"@id\"),\n      \"colleagues\" => TermDefinition.new(\"colleagues\", id: \"http://schema.org/colleagues\"),\n      \"collection\" => TermDefinition.new(\"collection\", id: \"http://schema.org/collection\"),\n      \"color\" => TermDefinition.new(\"color\", id: \"http://schema.org/color\"),\n      \"colorist\" => TermDefinition.new(\"colorist\", id: \"http://schema.org/colorist\"),\n      \"comment\" => TermDefinition.new(\"comment\", id: \"http://schema.org/comment\"),\n      \"commentCount\" => TermDefinition.new(\"commentCount\", id: \"http://schema.org/commentCount\"),\n      \"commentText\" => TermDefinition.new(\"commentText\", id: \"http://schema.org/commentText\"),\n      \"commentTime\" => TermDefinition.new(\"commentTime\", id: \"http://schema.org/commentTime\", type_mapping: \"http://schema.org/Date\"),\n      \"competitor\" => TermDefinition.new(\"competitor\", id: \"http://schema.org/competitor\"),\n      \"composer\" => TermDefinition.new(\"composer\", id: \"http://schema.org/composer\"),\n      \"comprisedOf\" => TermDefinition.new(\"comprisedOf\", id: \"http://schema.org/comprisedOf\"),\n      \"confirmationNumber\" => TermDefinition.new(\"confirmationNumber\", id: \"http://schema.org/confirmationNumber\"),\n      \"connectedTo\" => TermDefinition.new(\"connectedTo\", id: \"http://schema.org/connectedTo\"),\n      \"contactOption\" => TermDefinition.new(\"contactOption\", id: \"http://schema.org/contactOption\"),\n      \"contactPoint\" => TermDefinition.new(\"contactPoint\", id: \"http://schema.org/contactPoint\"),\n      \"contactPoints\" => TermDefinition.new(\"contactPoints\", id: \"http://schema.org/contactPoints\"),\n      \"contactType\" => TermDefinition.new(\"contactType\", id: \"http://schema.org/contactType\"),\n      \"containedIn\" => TermDefinition.new(\"containedIn\", id: \"http://schema.org/containedIn\"),\n      \"containedInPlace\" => TermDefinition.new(\"containedInPlace\", id: \"http://schema.org/containedInPlace\"),\n      \"containsPlace\" => TermDefinition.new(\"containsPlace\", id: \"http://schema.org/containsPlace\"),\n      \"containsSeason\" => TermDefinition.new(\"containsSeason\", id: \"http://schema.org/containsSeason\"),\n      \"contentLocation\" => TermDefinition.new(\"contentLocation\", id: \"http://schema.org/contentLocation\"),\n      \"contentRating\" => TermDefinition.new(\"contentRating\", id: \"http://schema.org/contentRating\"),\n      \"contentReferenceTime\" => TermDefinition.new(\"contentReferenceTime\", id: \"http://schema.org/contentReferenceTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"contentSize\" => TermDefinition.new(\"contentSize\", id: \"http://schema.org/contentSize\"),\n      \"contentType\" => TermDefinition.new(\"contentType\", id: \"http://schema.org/contentType\"),\n      \"contentUrl\" => TermDefinition.new(\"contentUrl\", id: \"http://schema.org/contentUrl\", type_mapping: \"@id\"),\n      \"contraindication\" => TermDefinition.new(\"contraindication\", id: \"http://schema.org/contraindication\"),\n      \"contributor\" => TermDefinition.new(\"contributor\", id: \"http://schema.org/contributor\"),\n      \"cookTime\" => TermDefinition.new(\"cookTime\", id: \"http://schema.org/cookTime\"),\n      \"cookingMethod\" => TermDefinition.new(\"cookingMethod\", id: \"http://schema.org/cookingMethod\"),\n      \"copyrightHolder\" => TermDefinition.new(\"copyrightHolder\", id: \"http://schema.org/copyrightHolder\"),\n      \"copyrightYear\" => TermDefinition.new(\"copyrightYear\", id: \"http://schema.org/copyrightYear\"),\n      \"cost\" => TermDefinition.new(\"cost\", id: \"http://schema.org/cost\"),\n      \"costCategory\" => TermDefinition.new(\"costCategory\", id: \"http://schema.org/costCategory\"),\n      \"costCurrency\" => TermDefinition.new(\"costCurrency\", id: \"http://schema.org/costCurrency\"),\n      \"costOrigin\" => TermDefinition.new(\"costOrigin\", id: \"http://schema.org/costOrigin\"),\n      \"costPerUnit\" => TermDefinition.new(\"costPerUnit\", id: \"http://schema.org/costPerUnit\"),\n      \"countriesNotSupported\" => TermDefinition.new(\"countriesNotSupported\", id: \"http://schema.org/countriesNotSupported\"),\n      \"countriesSupported\" => TermDefinition.new(\"countriesSupported\", id: \"http://schema.org/countriesSupported\"),\n      \"countryOfOrigin\" => TermDefinition.new(\"countryOfOrigin\", id: \"http://schema.org/countryOfOrigin\"),\n      \"course\" => TermDefinition.new(\"course\", id: \"http://schema.org/course\"),\n      \"courseCode\" => TermDefinition.new(\"courseCode\", id: \"http://schema.org/courseCode\"),\n      \"courseCredits\" => TermDefinition.new(\"courseCredits\", id: \"http://schema.org/courseCredits\"),\n      \"courseCreditsUnit\" => TermDefinition.new(\"courseCreditsUnit\", id: \"http://schema.org/courseCreditsUnit\", type_mapping: \"@id\"),\n      \"courseMode\" => TermDefinition.new(\"courseMode\", id: \"http://schema.org/courseMode\"),\n      \"coursePrerequisites\" => TermDefinition.new(\"coursePrerequisites\", id: \"http://schema.org/coursePrerequisites\"),\n      \"coverageEndTime\" => TermDefinition.new(\"coverageEndTime\", id: \"http://schema.org/coverageEndTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"coverageStartTime\" => TermDefinition.new(\"coverageStartTime\", id: \"http://schema.org/coverageStartTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"creator\" => TermDefinition.new(\"creator\", id: \"http://schema.org/creator\"),\n      \"creditedTo\" => TermDefinition.new(\"creditedTo\", id: \"http://schema.org/creditedTo\"),\n      \"currenciesAccepted\" => TermDefinition.new(\"currenciesAccepted\", id: \"http://schema.org/currenciesAccepted\"),\n      \"currency\" => TermDefinition.new(\"currency\", id: \"http://schema.org/currency\"),\n      \"customer\" => TermDefinition.new(\"customer\", id: \"http://schema.org/customer\"),\n      \"dataFeedElement\" => TermDefinition.new(\"dataFeedElement\", id: \"http://schema.org/dataFeedElement\"),\n      \"dataset\" => TermDefinition.new(\"dataset\", id: \"http://schema.org/dataset\"),\n      \"datasetTimeInterval\" => TermDefinition.new(\"datasetTimeInterval\", id: \"http://schema.org/datasetTimeInterval\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateCreated\" => TermDefinition.new(\"dateCreated\", id: \"http://schema.org/dateCreated\", type_mapping: \"http://schema.org/Date\"),\n      \"dateDeleted\" => TermDefinition.new(\"dateDeleted\", id: \"http://schema.org/dateDeleted\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateIssued\" => TermDefinition.new(\"dateIssued\", id: \"http://schema.org/dateIssued\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateModified\" => TermDefinition.new(\"dateModified\", id: \"http://schema.org/dateModified\", type_mapping: \"http://schema.org/Date\"),\n      \"datePosted\" => TermDefinition.new(\"datePosted\", id: \"http://schema.org/datePosted\", type_mapping: \"http://schema.org/Date\"),\n      \"datePublished\" => TermDefinition.new(\"datePublished\", id: \"http://schema.org/datePublished\", type_mapping: \"http://schema.org/Date\"),\n      \"dateRead\" => TermDefinition.new(\"dateRead\", id: \"http://schema.org/dateRead\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateReceived\" => TermDefinition.new(\"dateReceived\", id: \"http://schema.org/dateReceived\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateSent\" => TermDefinition.new(\"dateSent\", id: \"http://schema.org/dateSent\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dateVehicleFirstRegistered\" => TermDefinition.new(\"dateVehicleFirstRegistered\", id: \"http://schema.org/dateVehicleFirstRegistered\", type_mapping: \"http://schema.org/Date\"),\n      \"dateline\" => TermDefinition.new(\"dateline\", id: \"http://schema.org/dateline\"),\n      \"dayOfWeek\" => TermDefinition.new(\"dayOfWeek\", id: \"http://schema.org/dayOfWeek\"),\n      \"deathDate\" => TermDefinition.new(\"deathDate\", id: \"http://schema.org/deathDate\", type_mapping: \"http://schema.org/Date\"),\n      \"deathPlace\" => TermDefinition.new(\"deathPlace\", id: \"http://schema.org/deathPlace\"),\n      \"defaultValue\" => TermDefinition.new(\"defaultValue\", id: \"http://schema.org/defaultValue\"),\n      \"deliveryAddress\" => TermDefinition.new(\"deliveryAddress\", id: \"http://schema.org/deliveryAddress\"),\n      \"deliveryLeadTime\" => TermDefinition.new(\"deliveryLeadTime\", id: \"http://schema.org/deliveryLeadTime\"),\n      \"deliveryMethod\" => TermDefinition.new(\"deliveryMethod\", id: \"http://schema.org/deliveryMethod\"),\n      \"deliveryStatus\" => TermDefinition.new(\"deliveryStatus\", id: \"http://schema.org/deliveryStatus\"),\n      \"department\" => TermDefinition.new(\"department\", id: \"http://schema.org/department\"),\n      \"departureAirport\" => TermDefinition.new(\"departureAirport\", id: \"http://schema.org/departureAirport\"),\n      \"departureBusStop\" => TermDefinition.new(\"departureBusStop\", id: \"http://schema.org/departureBusStop\"),\n      \"departureGate\" => TermDefinition.new(\"departureGate\", id: \"http://schema.org/departureGate\"),\n      \"departurePlatform\" => TermDefinition.new(\"departurePlatform\", id: \"http://schema.org/departurePlatform\"),\n      \"departureStation\" => TermDefinition.new(\"departureStation\", id: \"http://schema.org/departureStation\"),\n      \"departureTerminal\" => TermDefinition.new(\"departureTerminal\", id: \"http://schema.org/departureTerminal\"),\n      \"departureTime\" => TermDefinition.new(\"departureTime\", id: \"http://schema.org/departureTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dependencies\" => TermDefinition.new(\"dependencies\", id: \"http://schema.org/dependencies\"),\n      \"depth\" => TermDefinition.new(\"depth\", id: \"http://schema.org/depth\"),\n      \"description\" => TermDefinition.new(\"description\", id: \"http://schema.org/description\"),\n      \"device\" => TermDefinition.new(\"device\", id: \"http://schema.org/device\"),\n      \"diagnosis\" => TermDefinition.new(\"diagnosis\", id: \"http://schema.org/diagnosis\"),\n      \"diagram\" => TermDefinition.new(\"diagram\", id: \"http://schema.org/diagram\"),\n      \"diet\" => TermDefinition.new(\"diet\", id: \"http://schema.org/diet\"),\n      \"dietFeatures\" => TermDefinition.new(\"dietFeatures\", id: \"http://schema.org/dietFeatures\"),\n      \"differentialDiagnosis\" => TermDefinition.new(\"differentialDiagnosis\", id: \"http://schema.org/differentialDiagnosis\"),\n      \"director\" => TermDefinition.new(\"director\", id: \"http://schema.org/director\"),\n      \"directors\" => TermDefinition.new(\"directors\", id: \"http://schema.org/directors\"),\n      \"disambiguatingDescription\" => TermDefinition.new(\"disambiguatingDescription\", id: \"http://schema.org/disambiguatingDescription\"),\n      \"discount\" => TermDefinition.new(\"discount\", id: \"http://schema.org/discount\"),\n      \"discountCode\" => TermDefinition.new(\"discountCode\", id: \"http://schema.org/discountCode\"),\n      \"discountCurrency\" => TermDefinition.new(\"discountCurrency\", id: \"http://schema.org/discountCurrency\"),\n      \"discusses\" => TermDefinition.new(\"discusses\", id: \"http://schema.org/discusses\"),\n      \"discussionUrl\" => TermDefinition.new(\"discussionUrl\", id: \"http://schema.org/discussionUrl\", type_mapping: \"@id\"),\n      \"dissolutionDate\" => TermDefinition.new(\"dissolutionDate\", id: \"http://schema.org/dissolutionDate\", type_mapping: \"http://schema.org/Date\"),\n      \"distance\" => TermDefinition.new(\"distance\", id: \"http://schema.org/distance\"),\n      \"distinguishingSign\" => TermDefinition.new(\"distinguishingSign\", id: \"http://schema.org/distinguishingSign\"),\n      \"distribution\" => TermDefinition.new(\"distribution\", id: \"http://schema.org/distribution\"),\n      \"domainIncludes\" => TermDefinition.new(\"domainIncludes\", id: \"http://schema.org/domainIncludes\"),\n      \"doorTime\" => TermDefinition.new(\"doorTime\", id: \"http://schema.org/doorTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"dosageForm\" => TermDefinition.new(\"dosageForm\", id: \"http://schema.org/dosageForm\"),\n      \"doseSchedule\" => TermDefinition.new(\"doseSchedule\", id: \"http://schema.org/doseSchedule\"),\n      \"doseUnit\" => TermDefinition.new(\"doseUnit\", id: \"http://schema.org/doseUnit\"),\n      \"doseValue\" => TermDefinition.new(\"doseValue\", id: \"http://schema.org/doseValue\"),\n      \"downloadUrl\" => TermDefinition.new(\"downloadUrl\", id: \"http://schema.org/downloadUrl\", type_mapping: \"@id\"),\n      \"downvoteCount\" => TermDefinition.new(\"downvoteCount\", id: \"http://schema.org/downvoteCount\"),\n      \"drainsTo\" => TermDefinition.new(\"drainsTo\", id: \"http://schema.org/drainsTo\"),\n      \"driveWheelConfiguration\" => TermDefinition.new(\"driveWheelConfiguration\", id: \"http://schema.org/driveWheelConfiguration\"),\n      \"dropoffLocation\" => TermDefinition.new(\"dropoffLocation\", id: \"http://schema.org/dropoffLocation\"),\n      \"dropoffTime\" => TermDefinition.new(\"dropoffTime\", id: \"http://schema.org/dropoffTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"drug\" => TermDefinition.new(\"drug\", id: \"http://schema.org/drug\"),\n      \"drugClass\" => TermDefinition.new(\"drugClass\", id: \"http://schema.org/drugClass\"),\n      \"drugUnit\" => TermDefinition.new(\"drugUnit\", id: \"http://schema.org/drugUnit\"),\n      \"duns\" => TermDefinition.new(\"duns\", id: \"http://schema.org/duns\"),\n      \"duplicateTherapy\" => TermDefinition.new(\"duplicateTherapy\", id: \"http://schema.org/duplicateTherapy\"),\n      \"duration\" => TermDefinition.new(\"duration\", id: \"http://schema.org/duration\"),\n      \"durationOfWarranty\" => TermDefinition.new(\"durationOfWarranty\", id: \"http://schema.org/durationOfWarranty\"),\n      \"editor\" => TermDefinition.new(\"editor\", id: \"http://schema.org/editor\"),\n      \"educationRequirements\" => TermDefinition.new(\"educationRequirements\", id: \"http://schema.org/educationRequirements\"),\n      \"educationalAlignment\" => TermDefinition.new(\"educationalAlignment\", id: \"http://schema.org/educationalAlignment\"),\n      \"educationalFramework\" => TermDefinition.new(\"educationalFramework\", id: \"http://schema.org/educationalFramework\"),\n      \"educationalRole\" => TermDefinition.new(\"educationalRole\", id: \"http://schema.org/educationalRole\"),\n      \"educationalUse\" => TermDefinition.new(\"educationalUse\", id: \"http://schema.org/educationalUse\"),\n      \"elevation\" => TermDefinition.new(\"elevation\", id: \"http://schema.org/elevation\"),\n      \"eligibleCustomerType\" => TermDefinition.new(\"eligibleCustomerType\", id: \"http://schema.org/eligibleCustomerType\"),\n      \"eligibleDuration\" => TermDefinition.new(\"eligibleDuration\", id: \"http://schema.org/eligibleDuration\"),\n      \"eligibleQuantity\" => TermDefinition.new(\"eligibleQuantity\", id: \"http://schema.org/eligibleQuantity\"),\n      \"eligibleRegion\" => TermDefinition.new(\"eligibleRegion\", id: \"http://schema.org/eligibleRegion\"),\n      \"eligibleTransactionVolume\" => TermDefinition.new(\"eligibleTransactionVolume\", id: \"http://schema.org/eligibleTransactionVolume\"),\n      \"email\" => TermDefinition.new(\"email\", id: \"http://schema.org/email\"),\n      \"embedUrl\" => TermDefinition.new(\"embedUrl\", id: \"http://schema.org/embedUrl\", type_mapping: \"@id\"),\n      \"emissionsCO2\" => TermDefinition.new(\"emissionsCO2\", id: \"http://schema.org/emissionsCO2\"),\n      \"employee\" => TermDefinition.new(\"employee\", id: \"http://schema.org/employee\"),\n      \"employees\" => TermDefinition.new(\"employees\", id: \"http://schema.org/employees\"),\n      \"employmentType\" => TermDefinition.new(\"employmentType\", id: \"http://schema.org/employmentType\"),\n      \"encodesCreativeWork\" => TermDefinition.new(\"encodesCreativeWork\", id: \"http://schema.org/encodesCreativeWork\"),\n      \"encoding\" => TermDefinition.new(\"encoding\", id: \"http://schema.org/encoding\"),\n      \"encodingFormat\" => TermDefinition.new(\"encodingFormat\", id: \"http://schema.org/encodingFormat\"),\n      \"encodingType\" => TermDefinition.new(\"encodingType\", id: \"http://schema.org/encodingType\"),\n      \"encodings\" => TermDefinition.new(\"encodings\", id: \"http://schema.org/encodings\"),\n      \"endDate\" => TermDefinition.new(\"endDate\", id: \"http://schema.org/endDate\", type_mapping: \"http://schema.org/Date\"),\n      \"endTime\" => TermDefinition.new(\"endTime\", id: \"http://schema.org/endTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"endorsee\" => TermDefinition.new(\"endorsee\", id: \"http://schema.org/endorsee\"),\n      \"endorsers\" => TermDefinition.new(\"endorsers\", id: \"http://schema.org/endorsers\"),\n      \"engineDisplacement\" => TermDefinition.new(\"engineDisplacement\", id: \"http://schema.org/engineDisplacement\"),\n      \"enginePower\" => TermDefinition.new(\"enginePower\", id: \"http://schema.org/enginePower\"),\n      \"engineType\" => TermDefinition.new(\"engineType\", id: \"http://schema.org/engineType\", type_mapping: \"@id\"),\n      \"entertainmentBusiness\" => TermDefinition.new(\"entertainmentBusiness\", id: \"http://schema.org/entertainmentBusiness\"),\n      \"enumerationValueCode\" => TermDefinition.new(\"enumerationValueCode\", id: \"http://schema.org/enumerationValueCode\"),\n      \"epidemiology\" => TermDefinition.new(\"epidemiology\", id: \"http://schema.org/epidemiology\"),\n      \"episode\" => TermDefinition.new(\"episode\", id: \"http://schema.org/episode\"),\n      \"episodeNumber\" => TermDefinition.new(\"episodeNumber\", id: \"http://schema.org/episodeNumber\"),\n      \"episodes\" => TermDefinition.new(\"episodes\", id: \"http://schema.org/episodes\"),\n      \"equal\" => TermDefinition.new(\"equal\", id: \"http://schema.org/equal\"),\n      \"error\" => TermDefinition.new(\"error\", id: \"http://schema.org/error\"),\n      \"estimatedFlightDuration\" => TermDefinition.new(\"estimatedFlightDuration\", id: \"http://schema.org/estimatedFlightDuration\"),\n      \"estimatesRiskOf\" => TermDefinition.new(\"estimatesRiskOf\", id: \"http://schema.org/estimatesRiskOf\"),\n      \"event\" => TermDefinition.new(\"event\", id: \"http://schema.org/event\"),\n      \"eventStatus\" => TermDefinition.new(\"eventStatus\", id: \"http://schema.org/eventStatus\"),\n      \"events\" => TermDefinition.new(\"events\", id: \"http://schema.org/events\"),\n      \"evidenceLevel\" => TermDefinition.new(\"evidenceLevel\", id: \"http://schema.org/evidenceLevel\"),\n      \"evidenceOrigin\" => TermDefinition.new(\"evidenceOrigin\", id: \"http://schema.org/evidenceOrigin\"),\n      \"exampleOfWork\" => TermDefinition.new(\"exampleOfWork\", id: \"http://schema.org/exampleOfWork\"),\n      \"executableLibraryName\" => TermDefinition.new(\"executableLibraryName\", id: \"http://schema.org/executableLibraryName\"),\n      \"exerciseCourse\" => TermDefinition.new(\"exerciseCourse\", id: \"http://schema.org/exerciseCourse\"),\n      \"exercisePlan\" => TermDefinition.new(\"exercisePlan\", id: \"http://schema.org/exercisePlan\"),\n      \"exerciseRelatedDiet\" => TermDefinition.new(\"exerciseRelatedDiet\", id: \"http://schema.org/exerciseRelatedDiet\"),\n      \"exerciseType\" => TermDefinition.new(\"exerciseType\", id: \"http://schema.org/exerciseType\"),\n      \"exifData\" => TermDefinition.new(\"exifData\", id: \"http://schema.org/exifData\"),\n      \"expectedArrivalFrom\" => TermDefinition.new(\"expectedArrivalFrom\", id: \"http://schema.org/expectedArrivalFrom\", type_mapping: \"http://schema.org/DateTime\"),\n      \"expectedArrivalUntil\" => TermDefinition.new(\"expectedArrivalUntil\", id: \"http://schema.org/expectedArrivalUntil\", type_mapping: \"http://schema.org/DateTime\"),\n      \"expectedPrognosis\" => TermDefinition.new(\"expectedPrognosis\", id: \"http://schema.org/expectedPrognosis\"),\n      \"expectsAcceptanceOf\" => TermDefinition.new(\"expectsAcceptanceOf\", id: \"http://schema.org/expectsAcceptanceOf\"),\n      \"experienceRequirements\" => TermDefinition.new(\"experienceRequirements\", id: \"http://schema.org/experienceRequirements\"),\n      \"expertConsiderations\" => TermDefinition.new(\"expertConsiderations\", id: \"http://schema.org/expertConsiderations\"),\n      \"expires\" => TermDefinition.new(\"expires\", id: \"http://schema.org/expires\", type_mapping: \"http://schema.org/Date\"),\n      \"familyName\" => TermDefinition.new(\"familyName\", id: \"http://schema.org/familyName\"),\n      \"fatContent\" => TermDefinition.new(\"fatContent\", id: \"http://schema.org/fatContent\"),\n      \"faxNumber\" => TermDefinition.new(\"faxNumber\", id: \"http://schema.org/faxNumber\"),\n      \"featureList\" => TermDefinition.new(\"featureList\", id: \"http://schema.org/featureList\", type_mapping: \"@id\"),\n      \"feesAndCommissionsSpecification\" => TermDefinition.new(\"feesAndCommissionsSpecification\", id: \"http://schema.org/feesAndCommissionsSpecification\", type_mapping: \"@id\"),\n      \"fiberContent\" => TermDefinition.new(\"fiberContent\", id: \"http://schema.org/fiberContent\"),\n      \"fileFormat\" => TermDefinition.new(\"fileFormat\", id: \"http://schema.org/fileFormat\", type_mapping: \"@id\"),\n      \"fileSize\" => TermDefinition.new(\"fileSize\", id: \"http://schema.org/fileSize\"),\n      \"firstPerformance\" => TermDefinition.new(\"firstPerformance\", id: \"http://schema.org/firstPerformance\"),\n      \"flightDistance\" => TermDefinition.new(\"flightDistance\", id: \"http://schema.org/flightDistance\"),\n      \"flightNumber\" => TermDefinition.new(\"flightNumber\", id: \"http://schema.org/flightNumber\"),\n      \"floorSize\" => TermDefinition.new(\"floorSize\", id: \"http://schema.org/floorSize\"),\n      \"followee\" => TermDefinition.new(\"followee\", id: \"http://schema.org/followee\"),\n      \"follows\" => TermDefinition.new(\"follows\", id: \"http://schema.org/follows\"),\n      \"followup\" => TermDefinition.new(\"followup\", id: \"http://schema.org/followup\"),\n      \"foodEstablishment\" => TermDefinition.new(\"foodEstablishment\", id: \"http://schema.org/foodEstablishment\"),\n      \"foodEvent\" => TermDefinition.new(\"foodEvent\", id: \"http://schema.org/foodEvent\"),\n      \"foodWarning\" => TermDefinition.new(\"foodWarning\", id: \"http://schema.org/foodWarning\"),\n      \"founder\" => TermDefinition.new(\"founder\", id: \"http://schema.org/founder\"),\n      \"founders\" => TermDefinition.new(\"founders\", id: \"http://schema.org/founders\"),\n      \"foundingDate\" => TermDefinition.new(\"foundingDate\", id: \"http://schema.org/foundingDate\", type_mapping: \"http://schema.org/Date\"),\n      \"foundingLocation\" => TermDefinition.new(\"foundingLocation\", id: \"http://schema.org/foundingLocation\"),\n      \"free\" => TermDefinition.new(\"free\", id: \"http://schema.org/free\"),\n      \"frequency\" => TermDefinition.new(\"frequency\", id: \"http://schema.org/frequency\"),\n      \"fromLocation\" => TermDefinition.new(\"fromLocation\", id: \"http://schema.org/fromLocation\"),\n      \"fuelCapacity\" => TermDefinition.new(\"fuelCapacity\", id: \"http://schema.org/fuelCapacity\"),\n      \"fuelConsumption\" => TermDefinition.new(\"fuelConsumption\", id: \"http://schema.org/fuelConsumption\"),\n      \"fuelEfficiency\" => TermDefinition.new(\"fuelEfficiency\", id: \"http://schema.org/fuelEfficiency\"),\n      \"fuelType\" => TermDefinition.new(\"fuelType\", id: \"http://schema.org/fuelType\", type_mapping: \"@id\"),\n      \"function\" => TermDefinition.new(\"function\", id: \"http://schema.org/function\"),\n      \"functionalClass\" => TermDefinition.new(\"functionalClass\", id: \"http://schema.org/functionalClass\"),\n      \"funder\" => TermDefinition.new(\"funder\", id: \"http://schema.org/funder\"),\n      \"game\" => TermDefinition.new(\"game\", id: \"http://schema.org/game\"),\n      \"gameItem\" => TermDefinition.new(\"gameItem\", id: \"http://schema.org/gameItem\"),\n      \"gameLocation\" => TermDefinition.new(\"gameLocation\", id: \"http://schema.org/gameLocation\", type_mapping: \"@id\"),\n      \"gamePlatform\" => TermDefinition.new(\"gamePlatform\", id: \"http://schema.org/gamePlatform\", type_mapping: \"@id\"),\n      \"gameServer\" => TermDefinition.new(\"gameServer\", id: \"http://schema.org/gameServer\"),\n      \"gameTip\" => TermDefinition.new(\"gameTip\", id: \"http://schema.org/gameTip\"),\n      \"gender\" => TermDefinition.new(\"gender\", id: \"http://schema.org/gender\"),\n      \"genre\" => TermDefinition.new(\"genre\", id: \"http://schema.org/genre\", type_mapping: \"@id\"),\n      \"geo\" => TermDefinition.new(\"geo\", id: \"http://schema.org/geo\"),\n      \"geoMidpoint\" => TermDefinition.new(\"geoMidpoint\", id: \"http://schema.org/geoMidpoint\"),\n      \"geoRadius\" => TermDefinition.new(\"geoRadius\", id: \"http://schema.org/geoRadius\"),\n      \"geographicArea\" => TermDefinition.new(\"geographicArea\", id: \"http://schema.org/geographicArea\"),\n      \"givenName\" => TermDefinition.new(\"givenName\", id: \"http://schema.org/givenName\"),\n      \"globalLocationNumber\" => TermDefinition.new(\"globalLocationNumber\", id: \"http://schema.org/globalLocationNumber\"),\n      \"grantee\" => TermDefinition.new(\"grantee\", id: \"http://schema.org/grantee\"),\n      \"grantsCredential\" => TermDefinition.new(\"grantsCredential\", id: \"http://schema.org/grantsCredential\"),\n      \"greater\" => TermDefinition.new(\"greater\", id: \"http://schema.org/greater\"),\n      \"greaterOrEqual\" => TermDefinition.new(\"greaterOrEqual\", id: \"http://schema.org/greaterOrEqual\"),\n      \"gtin12\" => TermDefinition.new(\"gtin12\", id: \"http://schema.org/gtin12\"),\n      \"gtin13\" => TermDefinition.new(\"gtin13\", id: \"http://schema.org/gtin13\"),\n      \"gtin14\" => TermDefinition.new(\"gtin14\", id: \"http://schema.org/gtin14\"),\n      \"gtin8\" => TermDefinition.new(\"gtin8\", id: \"http://schema.org/gtin8\"),\n      \"guideline\" => TermDefinition.new(\"guideline\", id: \"http://schema.org/guideline\"),\n      \"guidelineDate\" => TermDefinition.new(\"guidelineDate\", id: \"http://schema.org/guidelineDate\", type_mapping: \"http://schema.org/Date\"),\n      \"guidelineSubject\" => TermDefinition.new(\"guidelineSubject\", id: \"http://schema.org/guidelineSubject\"),\n      \"hasCourseInstance\" => TermDefinition.new(\"hasCourseInstance\", id: \"http://schema.org/hasCourseInstance\"),\n      \"hasDeliveryMethod\" => TermDefinition.new(\"hasDeliveryMethod\", id: \"http://schema.org/hasDeliveryMethod\"),\n      \"hasDigitalDocumentPermission\" => TermDefinition.new(\"hasDigitalDocumentPermission\", id: \"http://schema.org/hasDigitalDocumentPermission\"),\n      \"hasEnumerationValue\" => TermDefinition.new(\"hasEnumerationValue\", id: \"http://schema.org/hasEnumerationValue\"),\n      \"hasMap\" => TermDefinition.new(\"hasMap\", id: \"http://schema.org/hasMap\", type_mapping: \"@id\"),\n      \"hasOfferCatalog\" => TermDefinition.new(\"hasOfferCatalog\", id: \"http://schema.org/hasOfferCatalog\"),\n      \"hasPOS\" => TermDefinition.new(\"hasPOS\", id: \"http://schema.org/hasPOS\"),\n      \"hasPart\" => TermDefinition.new(\"hasPart\", id: \"http://schema.org/hasPart\"),\n      \"headline\" => TermDefinition.new(\"headline\", id: \"http://schema.org/headline\"),\n      \"healthCondition\" => TermDefinition.new(\"healthCondition\", id: \"http://schema.org/healthCondition\"),\n      \"healthPlanCoinsuranceOption\" => TermDefinition.new(\"healthPlanCoinsuranceOption\", id: \"http://schema.org/healthPlanCoinsuranceOption\"),\n      \"healthPlanCoinsuranceRate\" => TermDefinition.new(\"healthPlanCoinsuranceRate\", id: \"http://schema.org/healthPlanCoinsuranceRate\"),\n      \"healthPlanCopay\" => TermDefinition.new(\"healthPlanCopay\", id: \"http://schema.org/healthPlanCopay\"),\n      \"healthPlanCopayOption\" => TermDefinition.new(\"healthPlanCopayOption\", id: \"http://schema.org/healthPlanCopayOption\"),\n      \"healthPlanCostSharing\" => TermDefinition.new(\"healthPlanCostSharing\", id: \"http://schema.org/healthPlanCostSharing\"),\n      \"healthPlanDrugOption\" => TermDefinition.new(\"healthPlanDrugOption\", id: \"http://schema.org/healthPlanDrugOption\"),\n      \"healthPlanDrugTier\" => TermDefinition.new(\"healthPlanDrugTier\", id: \"http://schema.org/healthPlanDrugTier\"),\n      \"healthPlanId\" => TermDefinition.new(\"healthPlanId\", id: \"http://schema.org/healthPlanId\"),\n      \"healthPlanMarketingUrl\" => TermDefinition.new(\"healthPlanMarketingUrl\", id: \"http://schema.org/healthPlanMarketingUrl\", type_mapping: \"@id\"),\n      \"healthPlanNetworkId\" => TermDefinition.new(\"healthPlanNetworkId\", id: \"http://schema.org/healthPlanNetworkId\"),\n      \"healthPlanNetworkTier\" => TermDefinition.new(\"healthPlanNetworkTier\", id: \"http://schema.org/healthPlanNetworkTier\"),\n      \"healthPlanPharmacyCategory\" => TermDefinition.new(\"healthPlanPharmacyCategory\", id: \"http://schema.org/healthPlanPharmacyCategory\"),\n      \"height\" => TermDefinition.new(\"height\", id: \"http://schema.org/height\"),\n      \"highPrice\" => TermDefinition.new(\"highPrice\", id: \"http://schema.org/highPrice\"),\n      \"hiringOrganization\" => TermDefinition.new(\"hiringOrganization\", id: \"http://schema.org/hiringOrganization\"),\n      \"homeLocation\" => TermDefinition.new(\"homeLocation\", id: \"http://schema.org/homeLocation\"),\n      \"homeTeam\" => TermDefinition.new(\"homeTeam\", id: \"http://schema.org/homeTeam\"),\n      \"honorificPrefix\" => TermDefinition.new(\"honorificPrefix\", id: \"http://schema.org/honorificPrefix\"),\n      \"honorificSuffix\" => TermDefinition.new(\"honorificSuffix\", id: \"http://schema.org/honorificSuffix\"),\n      \"hospitalAffiliation\" => TermDefinition.new(\"hospitalAffiliation\", id: \"http://schema.org/hospitalAffiliation\"),\n      \"hostingOrganization\" => TermDefinition.new(\"hostingOrganization\", id: \"http://schema.org/hostingOrganization\"),\n      \"hoursAvailable\" => TermDefinition.new(\"hoursAvailable\", id: \"http://schema.org/hoursAvailable\"),\n      \"howPerformed\" => TermDefinition.new(\"howPerformed\", id: \"http://schema.org/howPerformed\"),\n      \"httpMethod\" => TermDefinition.new(\"httpMethod\", id: \"http://schema.org/httpMethod\"),\n      \"iataCode\" => TermDefinition.new(\"iataCode\", id: \"http://schema.org/iataCode\"),\n      \"icaoCode\" => TermDefinition.new(\"icaoCode\", id: \"http://schema.org/icaoCode\"),\n      \"identifyingExam\" => TermDefinition.new(\"identifyingExam\", id: \"http://schema.org/identifyingExam\"),\n      \"identifyingTest\" => TermDefinition.new(\"identifyingTest\", id: \"http://schema.org/identifyingTest\"),\n      \"illustrator\" => TermDefinition.new(\"illustrator\", id: \"http://schema.org/illustrator\"),\n      \"image\" => TermDefinition.new(\"image\", id: \"http://schema.org/image\", type_mapping: \"@id\"),\n      \"imagingTechnique\" => TermDefinition.new(\"imagingTechnique\", id: \"http://schema.org/imagingTechnique\"),\n      \"inAlbum\" => TermDefinition.new(\"inAlbum\", id: \"http://schema.org/inAlbum\"),\n      \"inBroadcastLineup\" => TermDefinition.new(\"inBroadcastLineup\", id: \"http://schema.org/inBroadcastLineup\"),\n      \"inLanguage\" => TermDefinition.new(\"inLanguage\", id: \"http://schema.org/inLanguage\"),\n      \"inPlaylist\" => TermDefinition.new(\"inPlaylist\", id: \"http://schema.org/inPlaylist\"),\n      \"inSupportOf\" => TermDefinition.new(\"inSupportOf\", id: \"http://schema.org/inSupportOf\"),\n      \"incentiveCompensation\" => TermDefinition.new(\"incentiveCompensation\", id: \"http://schema.org/incentiveCompensation\"),\n      \"incentives\" => TermDefinition.new(\"incentives\", id: \"http://schema.org/incentives\"),\n      \"includedComposition\" => TermDefinition.new(\"includedComposition\", id: \"http://schema.org/includedComposition\"),\n      \"includedDataCatalog\" => TermDefinition.new(\"includedDataCatalog\", id: \"http://schema.org/includedDataCatalog\"),\n      \"includedInDataCatalog\" => TermDefinition.new(\"includedInDataCatalog\", id: \"http://schema.org/includedInDataCatalog\"),\n      \"includedInHealthInsurancePlan\" => TermDefinition.new(\"includedInHealthInsurancePlan\", id: \"http://schema.org/includedInHealthInsurancePlan\"),\n      \"includedRiskFactor\" => TermDefinition.new(\"includedRiskFactor\", id: \"http://schema.org/includedRiskFactor\"),\n      \"includesHealthPlanFormulary\" => TermDefinition.new(\"includesHealthPlanFormulary\", id: \"http://schema.org/includesHealthPlanFormulary\"),\n      \"includesHealthPlanNetwork\" => TermDefinition.new(\"includesHealthPlanNetwork\", id: \"http://schema.org/includesHealthPlanNetwork\"),\n      \"includesObject\" => TermDefinition.new(\"includesObject\", id: \"http://schema.org/includesObject\"),\n      \"increasesRiskOf\" => TermDefinition.new(\"increasesRiskOf\", id: \"http://schema.org/increasesRiskOf\"),\n      \"indication\" => TermDefinition.new(\"indication\", id: \"http://schema.org/indication\"),\n      \"industry\" => TermDefinition.new(\"industry\", id: \"http://schema.org/industry\"),\n      \"ineligibleRegion\" => TermDefinition.new(\"ineligibleRegion\", id: \"http://schema.org/ineligibleRegion\"),\n      \"infectiousAgent\" => TermDefinition.new(\"infectiousAgent\", id: \"http://schema.org/infectiousAgent\"),\n      \"infectiousAgentClass\" => TermDefinition.new(\"infectiousAgentClass\", id: \"http://schema.org/infectiousAgentClass\"),\n      \"ingredients\" => TermDefinition.new(\"ingredients\", id: \"http://schema.org/ingredients\"),\n      \"inker\" => TermDefinition.new(\"inker\", id: \"http://schema.org/inker\"),\n      \"insertion\" => TermDefinition.new(\"insertion\", id: \"http://schema.org/insertion\"),\n      \"installUrl\" => TermDefinition.new(\"installUrl\", id: \"http://schema.org/installUrl\", type_mapping: \"@id\"),\n      \"instructor\" => TermDefinition.new(\"instructor\", id: \"http://schema.org/instructor\"),\n      \"instrument\" => TermDefinition.new(\"instrument\", id: \"http://schema.org/instrument\"),\n      \"intensity\" => TermDefinition.new(\"intensity\", id: \"http://schema.org/intensity\"),\n      \"interactingDrug\" => TermDefinition.new(\"interactingDrug\", id: \"http://schema.org/interactingDrug\"),\n      \"interactionCount\" => TermDefinition.new(\"interactionCount\", id: \"http://schema.org/interactionCount\"),\n      \"interactionService\" => TermDefinition.new(\"interactionService\", id: \"http://schema.org/interactionService\"),\n      \"interactionStatistic\" => TermDefinition.new(\"interactionStatistic\", id: \"http://schema.org/interactionStatistic\"),\n      \"interactionType\" => TermDefinition.new(\"interactionType\", id: \"http://schema.org/interactionType\"),\n      \"interactivityType\" => TermDefinition.new(\"interactivityType\", id: \"http://schema.org/interactivityType\"),\n      \"interestRate\" => TermDefinition.new(\"interestRate\", id: \"http://schema.org/interestRate\"),\n      \"inventoryLevel\" => TermDefinition.new(\"inventoryLevel\", id: \"http://schema.org/inventoryLevel\"),\n      \"inverseOf\" => TermDefinition.new(\"inverseOf\", id: \"http://schema.org/inverseOf\"),\n      \"isAcceptingNewPatients\" => TermDefinition.new(\"isAcceptingNewPatients\", id: \"http://schema.org/isAcceptingNewPatients\"),\n      \"isAccessibleForFree\" => TermDefinition.new(\"isAccessibleForFree\", id: \"http://schema.org/isAccessibleForFree\"),\n      \"isAccessoryOrSparePartFor\" => TermDefinition.new(\"isAccessoryOrSparePartFor\", id: \"http://schema.org/isAccessoryOrSparePartFor\"),\n      \"isAvailableGenerically\" => TermDefinition.new(\"isAvailableGenerically\", id: \"http://schema.org/isAvailableGenerically\"),\n      \"isBasedOn\" => TermDefinition.new(\"isBasedOn\", id: \"http://schema.org/isBasedOn\", type_mapping: \"@id\"),\n      \"isBasedOnUrl\" => TermDefinition.new(\"isBasedOnUrl\", id: \"http://schema.org/isBasedOnUrl\", type_mapping: \"@id\"),\n      \"isConsumableFor\" => TermDefinition.new(\"isConsumableFor\", id: \"http://schema.org/isConsumableFor\"),\n      \"isFamilyFriendly\" => TermDefinition.new(\"isFamilyFriendly\", id: \"http://schema.org/isFamilyFriendly\"),\n      \"isGift\" => TermDefinition.new(\"isGift\", id: \"http://schema.org/isGift\"),\n      \"isLiveBroadcast\" => TermDefinition.new(\"isLiveBroadcast\", id: \"http://schema.org/isLiveBroadcast\"),\n      \"isPartOf\" => TermDefinition.new(\"isPartOf\", id: \"http://schema.org/isPartOf\"),\n      \"isProprietary\" => TermDefinition.new(\"isProprietary\", id: \"http://schema.org/isProprietary\"),\n      \"isRelatedTo\" => TermDefinition.new(\"isRelatedTo\", id: \"http://schema.org/isRelatedTo\"),\n      \"isSimilarTo\" => TermDefinition.new(\"isSimilarTo\", id: \"http://schema.org/isSimilarTo\"),\n      \"isVariantOf\" => TermDefinition.new(\"isVariantOf\", id: \"http://schema.org/isVariantOf\"),\n      \"isbn\" => TermDefinition.new(\"isbn\", id: \"http://schema.org/isbn\"),\n      \"isicV4\" => TermDefinition.new(\"isicV4\", id: \"http://schema.org/isicV4\"),\n      \"isrcCode\" => TermDefinition.new(\"isrcCode\", id: \"http://schema.org/isrcCode\"),\n      \"issn\" => TermDefinition.new(\"issn\", id: \"http://schema.org/issn\"),\n      \"issueNumber\" => TermDefinition.new(\"issueNumber\", id: \"http://schema.org/issueNumber\"),\n      \"issuedBy\" => TermDefinition.new(\"issuedBy\", id: \"http://schema.org/issuedBy\"),\n      \"issuedThrough\" => TermDefinition.new(\"issuedThrough\", id: \"http://schema.org/issuedThrough\"),\n      \"iswcCode\" => TermDefinition.new(\"iswcCode\", id: \"http://schema.org/iswcCode\"),\n      \"item\" => TermDefinition.new(\"item\", id: \"http://schema.org/item\"),\n      \"itemCondition\" => TermDefinition.new(\"itemCondition\", id: \"http://schema.org/itemCondition\"),\n      \"itemListElement\" => TermDefinition.new(\"itemListElement\", id: \"http://schema.org/itemListElement\"),\n      \"itemListOrder\" => TermDefinition.new(\"itemListOrder\", id: \"http://schema.org/itemListOrder\"),\n      \"itemOffered\" => TermDefinition.new(\"itemOffered\", id: \"http://schema.org/itemOffered\"),\n      \"itemReviewed\" => TermDefinition.new(\"itemReviewed\", id: \"http://schema.org/itemReviewed\"),\n      \"itemShipped\" => TermDefinition.new(\"itemShipped\", id: \"http://schema.org/itemShipped\"),\n      \"jobBenefits\" => TermDefinition.new(\"jobBenefits\", id: \"http://schema.org/jobBenefits\"),\n      \"jobLocation\" => TermDefinition.new(\"jobLocation\", id: \"http://schema.org/jobLocation\"),\n      \"jobTitle\" => TermDefinition.new(\"jobTitle\", id: \"http://schema.org/jobTitle\"),\n      \"keywords\" => TermDefinition.new(\"keywords\", id: \"http://schema.org/keywords\"),\n      \"knownVehicleDamages\" => TermDefinition.new(\"knownVehicleDamages\", id: \"http://schema.org/knownVehicleDamages\"),\n      \"knows\" => TermDefinition.new(\"knows\", id: \"http://schema.org/knows\"),\n      \"labelDetails\" => TermDefinition.new(\"labelDetails\", id: \"http://schema.org/labelDetails\", type_mapping: \"@id\"),\n      \"landlord\" => TermDefinition.new(\"landlord\", id: \"http://schema.org/landlord\"),\n      \"language\" => TermDefinition.new(\"language\", id: \"http://schema.org/language\"),\n      \"lastReviewed\" => TermDefinition.new(\"lastReviewed\", id: \"http://schema.org/lastReviewed\", type_mapping: \"http://schema.org/Date\"),\n      \"latitude\" => TermDefinition.new(\"latitude\", id: \"http://schema.org/latitude\"),\n      \"learningResourceType\" => TermDefinition.new(\"learningResourceType\", id: \"http://schema.org/learningResourceType\"),\n      \"legalName\" => TermDefinition.new(\"legalName\", id: \"http://schema.org/legalName\"),\n      \"legalStatus\" => TermDefinition.new(\"legalStatus\", id: \"http://schema.org/legalStatus\"),\n      \"leiCode\" => TermDefinition.new(\"leiCode\", id: \"http://schema.org/leiCode\"),\n      \"lender\" => TermDefinition.new(\"lender\", id: \"http://schema.org/lender\"),\n      \"lesser\" => TermDefinition.new(\"lesser\", id: \"http://schema.org/lesser\"),\n      \"lesserOrEqual\" => TermDefinition.new(\"lesserOrEqual\", id: \"http://schema.org/lesserOrEqual\"),\n      \"letterer\" => TermDefinition.new(\"letterer\", id: \"http://schema.org/letterer\"),\n      \"line\" => TermDefinition.new(\"line\", id: \"http://schema.org/line\"),\n      \"linkRelationship\" => TermDefinition.new(\"linkRelationship\", id: \"http://schema.org/linkRelationship\"),\n      \"liveBlogUpdate\" => TermDefinition.new(\"liveBlogUpdate\", id: \"http://schema.org/liveBlogUpdate\"),\n      \"loanTerm\" => TermDefinition.new(\"loanTerm\", id: \"http://schema.org/loanTerm\"),\n      \"location\" => TermDefinition.new(\"location\", id: \"http://schema.org/location\"),\n      \"locationCreated\" => TermDefinition.new(\"locationCreated\", id: \"http://schema.org/locationCreated\"),\n      \"lodgingUnitDescription\" => TermDefinition.new(\"lodgingUnitDescription\", id: \"http://schema.org/lodgingUnitDescription\"),\n      \"lodgingUnitType\" => TermDefinition.new(\"lodgingUnitType\", id: \"http://schema.org/lodgingUnitType\"),\n      \"logo\" => TermDefinition.new(\"logo\", id: \"http://schema.org/logo\", type_mapping: \"@id\"),\n      \"longitude\" => TermDefinition.new(\"longitude\", id: \"http://schema.org/longitude\"),\n      \"loser\" => TermDefinition.new(\"loser\", id: \"http://schema.org/loser\"),\n      \"lowPrice\" => TermDefinition.new(\"lowPrice\", id: \"http://schema.org/lowPrice\"),\n      \"lyricist\" => TermDefinition.new(\"lyricist\", id: \"http://schema.org/lyricist\"),\n      \"lyrics\" => TermDefinition.new(\"lyrics\", id: \"http://schema.org/lyrics\"),\n      \"mainContentOfPage\" => TermDefinition.new(\"mainContentOfPage\", id: \"http://schema.org/mainContentOfPage\"),\n      \"mainEntity\" => TermDefinition.new(\"mainEntity\", id: \"http://schema.org/mainEntity\"),\n      \"mainEntityOfPage\" => TermDefinition.new(\"mainEntityOfPage\", id: \"http://schema.org/mainEntityOfPage\", type_mapping: \"@id\"),\n      \"makesOffer\" => TermDefinition.new(\"makesOffer\", id: \"http://schema.org/makesOffer\"),\n      \"manufacturer\" => TermDefinition.new(\"manufacturer\", id: \"http://schema.org/manufacturer\"),\n      \"map\" => TermDefinition.new(\"map\", id: \"http://schema.org/map\", type_mapping: \"@id\"),\n      \"mapType\" => TermDefinition.new(\"mapType\", id: \"http://schema.org/mapType\"),\n      \"maps\" => TermDefinition.new(\"maps\", id: \"http://schema.org/maps\", type_mapping: \"@id\"),\n      \"material\" => TermDefinition.new(\"material\", id: \"http://schema.org/material\", type_mapping: \"@id\"),\n      \"maxPrice\" => TermDefinition.new(\"maxPrice\", id: \"http://schema.org/maxPrice\"),\n      \"maxValue\" => TermDefinition.new(\"maxValue\", id: \"http://schema.org/maxValue\"),\n      \"maximumIntake\" => TermDefinition.new(\"maximumIntake\", id: \"http://schema.org/maximumIntake\"),\n      \"mealService\" => TermDefinition.new(\"mealService\", id: \"http://schema.org/mealService\"),\n      \"mechanismOfAction\" => TermDefinition.new(\"mechanismOfAction\", id: \"http://schema.org/mechanismOfAction\"),\n      \"medicalSpecialty\" => TermDefinition.new(\"medicalSpecialty\", id: \"http://schema.org/medicalSpecialty\"),\n      \"medicineSystem\" => TermDefinition.new(\"medicineSystem\", id: \"http://schema.org/medicineSystem\"),\n      \"meetsEmissionStandard\" => TermDefinition.new(\"meetsEmissionStandard\", id: \"http://schema.org/meetsEmissionStandard\", type_mapping: \"@id\"),\n      \"member\" => TermDefinition.new(\"member\", id: \"http://schema.org/member\"),\n      \"memberOf\" => TermDefinition.new(\"memberOf\", id: \"http://schema.org/memberOf\"),\n      \"members\" => TermDefinition.new(\"members\", id: \"http://schema.org/members\"),\n      \"membershipNumber\" => TermDefinition.new(\"membershipNumber\", id: \"http://schema.org/membershipNumber\"),\n      \"memoryRequirements\" => TermDefinition.new(\"memoryRequirements\", id: \"http://schema.org/memoryRequirements\", type_mapping: \"@id\"),\n      \"mentions\" => TermDefinition.new(\"mentions\", id: \"http://schema.org/mentions\"),\n      \"menu\" => TermDefinition.new(\"menu\", id: \"http://schema.org/menu\", type_mapping: \"@id\"),\n      \"merchant\" => TermDefinition.new(\"merchant\", id: \"http://schema.org/merchant\"),\n      \"messageAttachment\" => TermDefinition.new(\"messageAttachment\", id: \"http://schema.org/messageAttachment\"),\n      \"mileageFromOdometer\" => TermDefinition.new(\"mileageFromOdometer\", id: \"http://schema.org/mileageFromOdometer\"),\n      \"minPrice\" => TermDefinition.new(\"minPrice\", id: \"http://schema.org/minPrice\"),\n      \"minValue\" => TermDefinition.new(\"minValue\", id: \"http://schema.org/minValue\"),\n      \"minimumPaymentDue\" => TermDefinition.new(\"minimumPaymentDue\", id: \"http://schema.org/minimumPaymentDue\"),\n      \"model\" => TermDefinition.new(\"model\", id: \"http://schema.org/model\"),\n      \"modelDate\" => TermDefinition.new(\"modelDate\", id: \"http://schema.org/modelDate\", type_mapping: \"http://schema.org/Date\"),\n      \"modifiedTime\" => TermDefinition.new(\"modifiedTime\", id: \"http://schema.org/modifiedTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"mpn\" => TermDefinition.new(\"mpn\", id: \"http://schema.org/mpn\"),\n      \"multipleValues\" => TermDefinition.new(\"multipleValues\", id: \"http://schema.org/multipleValues\"),\n      \"muscleAction\" => TermDefinition.new(\"muscleAction\", id: \"http://schema.org/muscleAction\"),\n      \"musicArrangement\" => TermDefinition.new(\"musicArrangement\", id: \"http://schema.org/musicArrangement\"),\n      \"musicBy\" => TermDefinition.new(\"musicBy\", id: \"http://schema.org/musicBy\"),\n      \"musicCompositionForm\" => TermDefinition.new(\"musicCompositionForm\", id: \"http://schema.org/musicCompositionForm\"),\n      \"musicGroupMember\" => TermDefinition.new(\"musicGroupMember\", id: \"http://schema.org/musicGroupMember\"),\n      \"musicReleaseFormat\" => TermDefinition.new(\"musicReleaseFormat\", id: \"http://schema.org/musicReleaseFormat\"),\n      \"musicalKey\" => TermDefinition.new(\"musicalKey\", id: \"http://schema.org/musicalKey\"),\n      \"naics\" => TermDefinition.new(\"naics\", id: \"http://schema.org/naics\"),\n      \"name\" => TermDefinition.new(\"name\", id: \"http://schema.org/name\"),\n      \"namedPosition\" => TermDefinition.new(\"namedPosition\", id: \"http://schema.org/namedPosition\", type_mapping: \"@id\"),\n      \"nationality\" => TermDefinition.new(\"nationality\", id: \"http://schema.org/nationality\"),\n      \"naturalProgression\" => TermDefinition.new(\"naturalProgression\", id: \"http://schema.org/naturalProgression\"),\n      \"nerve\" => TermDefinition.new(\"nerve\", id: \"http://schema.org/nerve\"),\n      \"nerveMotor\" => TermDefinition.new(\"nerveMotor\", id: \"http://schema.org/nerveMotor\"),\n      \"netWorth\" => TermDefinition.new(\"netWorth\", id: \"http://schema.org/netWorth\"),\n      \"nextItem\" => TermDefinition.new(\"nextItem\", id: \"http://schema.org/nextItem\"),\n      \"nonEqual\" => TermDefinition.new(\"nonEqual\", id: \"http://schema.org/nonEqual\"),\n      \"nonProprietaryName\" => TermDefinition.new(\"nonProprietaryName\", id: \"http://schema.org/nonProprietaryName\"),\n      \"normalRange\" => TermDefinition.new(\"normalRange\", id: \"http://schema.org/normalRange\"),\n      \"numAdults\" => TermDefinition.new(\"numAdults\", id: \"http://schema.org/numAdults\"),\n      \"numChildren\" => TermDefinition.new(\"numChildren\", id: \"http://schema.org/numChildren\"),\n      \"numTracks\" => TermDefinition.new(\"numTracks\", id: \"http://schema.org/numTracks\"),\n      \"numberOfAirbags\" => TermDefinition.new(\"numberOfAirbags\", id: \"http://schema.org/numberOfAirbags\"),\n      \"numberOfAxles\" => TermDefinition.new(\"numberOfAxles\", id: \"http://schema.org/numberOfAxles\"),\n      \"numberOfBeds\" => TermDefinition.new(\"numberOfBeds\", id: \"http://schema.org/numberOfBeds\"),\n      \"numberOfDoors\" => TermDefinition.new(\"numberOfDoors\", id: \"http://schema.org/numberOfDoors\"),\n      \"numberOfEmployees\" => TermDefinition.new(\"numberOfEmployees\", id: \"http://schema.org/numberOfEmployees\"),\n      \"numberOfEpisodes\" => TermDefinition.new(\"numberOfEpisodes\", id: \"http://schema.org/numberOfEpisodes\"),\n      \"numberOfForwardGears\" => TermDefinition.new(\"numberOfForwardGears\", id: \"http://schema.org/numberOfForwardGears\"),\n      \"numberOfItems\" => TermDefinition.new(\"numberOfItems\", id: \"http://schema.org/numberOfItems\"),\n      \"numberOfPages\" => TermDefinition.new(\"numberOfPages\", id: \"http://schema.org/numberOfPages\"),\n      \"numberOfPlayers\" => TermDefinition.new(\"numberOfPlayers\", id: \"http://schema.org/numberOfPlayers\"),\n      \"numberOfPreviousOwners\" => TermDefinition.new(\"numberOfPreviousOwners\", id: \"http://schema.org/numberOfPreviousOwners\"),\n      \"numberOfRooms\" => TermDefinition.new(\"numberOfRooms\", id: \"http://schema.org/numberOfRooms\"),\n      \"numberOfSeasons\" => TermDefinition.new(\"numberOfSeasons\", id: \"http://schema.org/numberOfSeasons\"),\n      \"numberedPosition\" => TermDefinition.new(\"numberedPosition\", id: \"http://schema.org/numberedPosition\"),\n      \"nutrition\" => TermDefinition.new(\"nutrition\", id: \"http://schema.org/nutrition\"),\n      \"object\" => TermDefinition.new(\"object\", id: \"http://schema.org/object\"),\n      \"occupancy\" => TermDefinition.new(\"occupancy\", id: \"http://schema.org/occupancy\"),\n      \"occupationalCategory\" => TermDefinition.new(\"occupationalCategory\", id: \"http://schema.org/occupationalCategory\"),\n      \"offerCount\" => TermDefinition.new(\"offerCount\", id: \"http://schema.org/offerCount\"),\n      \"offeredBy\" => TermDefinition.new(\"offeredBy\", id: \"http://schema.org/offeredBy\"),\n      \"offers\" => TermDefinition.new(\"offers\", id: \"http://schema.org/offers\"),\n      \"offersPrescriptionByMail\" => TermDefinition.new(\"offersPrescriptionByMail\", id: \"http://schema.org/offersPrescriptionByMail\"),\n      \"openingHours\" => TermDefinition.new(\"openingHours\", id: \"http://schema.org/openingHours\"),\n      \"openingHoursSpecification\" => TermDefinition.new(\"openingHoursSpecification\", id: \"http://schema.org/openingHoursSpecification\"),\n      \"opens\" => TermDefinition.new(\"opens\", id: \"http://schema.org/opens\"),\n      \"operatingSystem\" => TermDefinition.new(\"operatingSystem\", id: \"http://schema.org/operatingSystem\"),\n      \"opponent\" => TermDefinition.new(\"opponent\", id: \"http://schema.org/opponent\"),\n      \"option\" => TermDefinition.new(\"option\", id: \"http://schema.org/option\"),\n      \"orderDate\" => TermDefinition.new(\"orderDate\", id: \"http://schema.org/orderDate\", type_mapping: \"http://schema.org/DateTime\"),\n      \"orderDelivery\" => TermDefinition.new(\"orderDelivery\", id: \"http://schema.org/orderDelivery\"),\n      \"orderItemNumber\" => TermDefinition.new(\"orderItemNumber\", id: \"http://schema.org/orderItemNumber\"),\n      \"orderItemStatus\" => TermDefinition.new(\"orderItemStatus\", id: \"http://schema.org/orderItemStatus\"),\n      \"orderNumber\" => TermDefinition.new(\"orderNumber\", id: \"http://schema.org/orderNumber\"),\n      \"orderQuantity\" => TermDefinition.new(\"orderQuantity\", id: \"http://schema.org/orderQuantity\"),\n      \"orderStatus\" => TermDefinition.new(\"orderStatus\", id: \"http://schema.org/orderStatus\"),\n      \"orderedItem\" => TermDefinition.new(\"orderedItem\", id: \"http://schema.org/orderedItem\"),\n      \"organizer\" => TermDefinition.new(\"organizer\", id: \"http://schema.org/organizer\"),\n      \"origin\" => TermDefinition.new(\"origin\", id: \"http://schema.org/origin\"),\n      \"originAddress\" => TermDefinition.new(\"originAddress\", id: \"http://schema.org/originAddress\"),\n      \"originatesFrom\" => TermDefinition.new(\"originatesFrom\", id: \"http://schema.org/originatesFrom\"),\n      \"outcome\" => TermDefinition.new(\"outcome\", id: \"http://schema.org/outcome\"),\n      \"overdosage\" => TermDefinition.new(\"overdosage\", id: \"http://schema.org/overdosage\"),\n      \"overview\" => TermDefinition.new(\"overview\", id: \"http://schema.org/overview\"),\n      \"ownedFrom\" => TermDefinition.new(\"ownedFrom\", id: \"http://schema.org/ownedFrom\", type_mapping: \"http://schema.org/DateTime\"),\n      \"ownedThrough\" => TermDefinition.new(\"ownedThrough\", id: \"http://schema.org/ownedThrough\", type_mapping: \"http://schema.org/DateTime\"),\n      \"owns\" => TermDefinition.new(\"owns\", id: \"http://schema.org/owns\"),\n      \"pageEnd\" => TermDefinition.new(\"pageEnd\", id: \"http://schema.org/pageEnd\"),\n      \"pageStart\" => TermDefinition.new(\"pageStart\", id: \"http://schema.org/pageStart\"),\n      \"pagination\" => TermDefinition.new(\"pagination\", id: \"http://schema.org/pagination\"),\n      \"parent\" => TermDefinition.new(\"parent\", id: \"http://schema.org/parent\"),\n      \"parentItem\" => TermDefinition.new(\"parentItem\", id: \"http://schema.org/parentItem\"),\n      \"parentOrganization\" => TermDefinition.new(\"parentOrganization\", id: \"http://schema.org/parentOrganization\"),\n      \"parentService\" => TermDefinition.new(\"parentService\", id: \"http://schema.org/parentService\"),\n      \"parents\" => TermDefinition.new(\"parents\", id: \"http://schema.org/parents\"),\n      \"partOfEnumerationValueSet\" => TermDefinition.new(\"partOfEnumerationValueSet\", id: \"http://schema.org/partOfEnumerationValueSet\"),\n      \"partOfEpisode\" => TermDefinition.new(\"partOfEpisode\", id: \"http://schema.org/partOfEpisode\"),\n      \"partOfInvoice\" => TermDefinition.new(\"partOfInvoice\", id: \"http://schema.org/partOfInvoice\"),\n      \"partOfOrder\" => TermDefinition.new(\"partOfOrder\", id: \"http://schema.org/partOfOrder\"),\n      \"partOfSeason\" => TermDefinition.new(\"partOfSeason\", id: \"http://schema.org/partOfSeason\"),\n      \"partOfSeries\" => TermDefinition.new(\"partOfSeries\", id: \"http://schema.org/partOfSeries\"),\n      \"partOfSystem\" => TermDefinition.new(\"partOfSystem\", id: \"http://schema.org/partOfSystem\"),\n      \"partOfTVSeries\" => TermDefinition.new(\"partOfTVSeries\", id: \"http://schema.org/partOfTVSeries\"),\n      \"participant\" => TermDefinition.new(\"participant\", id: \"http://schema.org/participant\"),\n      \"partySize\" => TermDefinition.new(\"partySize\", id: \"http://schema.org/partySize\"),\n      \"passengerPriorityStatus\" => TermDefinition.new(\"passengerPriorityStatus\", id: \"http://schema.org/passengerPriorityStatus\"),\n      \"passengerSequenceNumber\" => TermDefinition.new(\"passengerSequenceNumber\", id: \"http://schema.org/passengerSequenceNumber\"),\n      \"pathophysiology\" => TermDefinition.new(\"pathophysiology\", id: \"http://schema.org/pathophysiology\"),\n      \"payload\" => TermDefinition.new(\"payload\", id: \"http://schema.org/payload\"),\n      \"paymentAccepted\" => TermDefinition.new(\"paymentAccepted\", id: \"http://schema.org/paymentAccepted\"),\n      \"paymentDue\" => TermDefinition.new(\"paymentDue\", id: \"http://schema.org/paymentDue\", type_mapping: \"http://schema.org/DateTime\"),\n      \"paymentDueDate\" => TermDefinition.new(\"paymentDueDate\", id: \"http://schema.org/paymentDueDate\", type_mapping: \"http://schema.org/DateTime\"),\n      \"paymentMethod\" => TermDefinition.new(\"paymentMethod\", id: \"http://schema.org/paymentMethod\"),\n      \"paymentMethodId\" => TermDefinition.new(\"paymentMethodId\", id: \"http://schema.org/paymentMethodId\"),\n      \"paymentStatus\" => TermDefinition.new(\"paymentStatus\", id: \"http://schema.org/paymentStatus\"),\n      \"paymentUrl\" => TermDefinition.new(\"paymentUrl\", id: \"http://schema.org/paymentUrl\", type_mapping: \"@id\"),\n      \"penciler\" => TermDefinition.new(\"penciler\", id: \"http://schema.org/penciler\"),\n      \"performer\" => TermDefinition.new(\"performer\", id: \"http://schema.org/performer\"),\n      \"performerIn\" => TermDefinition.new(\"performerIn\", id: \"http://schema.org/performerIn\"),\n      \"performers\" => TermDefinition.new(\"performers\", id: \"http://schema.org/performers\"),\n      \"permissionType\" => TermDefinition.new(\"permissionType\", id: \"http://schema.org/permissionType\"),\n      \"permissions\" => TermDefinition.new(\"permissions\", id: \"http://schema.org/permissions\"),\n      \"permitAudience\" => TermDefinition.new(\"permitAudience\", id: \"http://schema.org/permitAudience\"),\n      \"permittedUsage\" => TermDefinition.new(\"permittedUsage\", id: \"http://schema.org/permittedUsage\"),\n      \"petsAllowed\" => TermDefinition.new(\"petsAllowed\", id: \"http://schema.org/petsAllowed\"),\n      \"phase\" => TermDefinition.new(\"phase\", id: \"http://schema.org/phase\"),\n      \"photo\" => TermDefinition.new(\"photo\", id: \"http://schema.org/photo\"),\n      \"photos\" => TermDefinition.new(\"photos\", id: \"http://schema.org/photos\"),\n      \"physiologicalBenefits\" => TermDefinition.new(\"physiologicalBenefits\", id: \"http://schema.org/physiologicalBenefits\"),\n      \"pickupLocation\" => TermDefinition.new(\"pickupLocation\", id: \"http://schema.org/pickupLocation\"),\n      \"pickupTime\" => TermDefinition.new(\"pickupTime\", id: \"http://schema.org/pickupTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"playMode\" => TermDefinition.new(\"playMode\", id: \"http://schema.org/playMode\"),\n      \"playerType\" => TermDefinition.new(\"playerType\", id: \"http://schema.org/playerType\"),\n      \"playersOnline\" => TermDefinition.new(\"playersOnline\", id: \"http://schema.org/playersOnline\"),\n      \"polygon\" => TermDefinition.new(\"polygon\", id: \"http://schema.org/polygon\"),\n      \"population\" => TermDefinition.new(\"population\", id: \"http://schema.org/population\"),\n      \"position\" => TermDefinition.new(\"position\", id: \"http://schema.org/position\"),\n      \"possibleComplication\" => TermDefinition.new(\"possibleComplication\", id: \"http://schema.org/possibleComplication\"),\n      \"possibleTreatment\" => TermDefinition.new(\"possibleTreatment\", id: \"http://schema.org/possibleTreatment\"),\n      \"postOfficeBoxNumber\" => TermDefinition.new(\"postOfficeBoxNumber\", id: \"http://schema.org/postOfficeBoxNumber\"),\n      \"postOp\" => TermDefinition.new(\"postOp\", id: \"http://schema.org/postOp\"),\n      \"postalCode\" => TermDefinition.new(\"postalCode\", id: \"http://schema.org/postalCode\"),\n      \"potentialAction\" => TermDefinition.new(\"potentialAction\", id: \"http://schema.org/potentialAction\"),\n      \"preOp\" => TermDefinition.new(\"preOp\", id: \"http://schema.org/preOp\"),\n      \"predecessorOf\" => TermDefinition.new(\"predecessorOf\", id: \"http://schema.org/predecessorOf\"),\n      \"pregnancyCategory\" => TermDefinition.new(\"pregnancyCategory\", id: \"http://schema.org/pregnancyCategory\"),\n      \"pregnancyWarning\" => TermDefinition.new(\"pregnancyWarning\", id: \"http://schema.org/pregnancyWarning\"),\n      \"prepTime\" => TermDefinition.new(\"prepTime\", id: \"http://schema.org/prepTime\"),\n      \"preparation\" => TermDefinition.new(\"preparation\", id: \"http://schema.org/preparation\"),\n      \"prescribingInfo\" => TermDefinition.new(\"prescribingInfo\", id: \"http://schema.org/prescribingInfo\", type_mapping: \"@id\"),\n      \"prescriptionStatus\" => TermDefinition.new(\"prescriptionStatus\", id: \"http://schema.org/prescriptionStatus\"),\n      \"previewUrl\" => TermDefinition.new(\"previewUrl\", id: \"http://schema.org/previewUrl\", type_mapping: \"@id\"),\n      \"previousItem\" => TermDefinition.new(\"previousItem\", id: \"http://schema.org/previousItem\"),\n      \"previousStartDate\" => TermDefinition.new(\"previousStartDate\", id: \"http://schema.org/previousStartDate\", type_mapping: \"http://schema.org/Date\"),\n      \"price\" => TermDefinition.new(\"price\", id: \"http://schema.org/price\"),\n      \"priceComponent\" => TermDefinition.new(\"priceComponent\", id: \"http://schema.org/priceComponent\"),\n      \"priceCurrency\" => TermDefinition.new(\"priceCurrency\", id: \"http://schema.org/priceCurrency\"),\n      \"priceRange\" => TermDefinition.new(\"priceRange\", id: \"http://schema.org/priceRange\"),\n      \"priceSpecification\" => TermDefinition.new(\"priceSpecification\", id: \"http://schema.org/priceSpecification\"),\n      \"priceType\" => TermDefinition.new(\"priceType\", id: \"http://schema.org/priceType\"),\n      \"priceValidUntil\" => TermDefinition.new(\"priceValidUntil\", id: \"http://schema.org/priceValidUntil\", type_mapping: \"http://schema.org/Date\"),\n      \"primaryImageOfPage\" => TermDefinition.new(\"primaryImageOfPage\", id: \"http://schema.org/primaryImageOfPage\"),\n      \"primaryPrevention\" => TermDefinition.new(\"primaryPrevention\", id: \"http://schema.org/primaryPrevention\"),\n      \"printColumn\" => TermDefinition.new(\"printColumn\", id: \"http://schema.org/printColumn\"),\n      \"printEdition\" => TermDefinition.new(\"printEdition\", id: \"http://schema.org/printEdition\"),\n      \"printPage\" => TermDefinition.new(\"printPage\", id: \"http://schema.org/printPage\"),\n      \"printSection\" => TermDefinition.new(\"printSection\", id: \"http://schema.org/printSection\"),\n      \"procedure\" => TermDefinition.new(\"procedure\", id: \"http://schema.org/procedure\"),\n      \"procedureType\" => TermDefinition.new(\"procedureType\", id: \"http://schema.org/procedureType\"),\n      \"processingTime\" => TermDefinition.new(\"processingTime\", id: \"http://schema.org/processingTime\"),\n      \"processorRequirements\" => TermDefinition.new(\"processorRequirements\", id: \"http://schema.org/processorRequirements\"),\n      \"producer\" => TermDefinition.new(\"producer\", id: \"http://schema.org/producer\"),\n      \"produces\" => TermDefinition.new(\"produces\", id: \"http://schema.org/produces\"),\n      \"productID\" => TermDefinition.new(\"productID\", id: \"http://schema.org/productID\"),\n      \"productSupported\" => TermDefinition.new(\"productSupported\", id: \"http://schema.org/productSupported\"),\n      \"productionCompany\" => TermDefinition.new(\"productionCompany\", id: \"http://schema.org/productionCompany\"),\n      \"productionDate\" => TermDefinition.new(\"productionDate\", id: \"http://schema.org/productionDate\", type_mapping: \"http://schema.org/Date\"),\n      \"proficiencyLevel\" => TermDefinition.new(\"proficiencyLevel\", id: \"http://schema.org/proficiencyLevel\"),\n      \"programMembershipUsed\" => TermDefinition.new(\"programMembershipUsed\", id: \"http://schema.org/programMembershipUsed\"),\n      \"programName\" => TermDefinition.new(\"programName\", id: \"http://schema.org/programName\"),\n      \"programmingLanguage\" => TermDefinition.new(\"programmingLanguage\", id: \"http://schema.org/programmingLanguage\"),\n      \"programmingModel\" => TermDefinition.new(\"programmingModel\", id: \"http://schema.org/programmingModel\"),\n      \"propertyID\" => TermDefinition.new(\"propertyID\", id: \"http://schema.org/propertyID\", type_mapping: \"@id\"),\n      \"proprietaryName\" => TermDefinition.new(\"proprietaryName\", id: \"http://schema.org/proprietaryName\"),\n      \"proteinContent\" => TermDefinition.new(\"proteinContent\", id: \"http://schema.org/proteinContent\"),\n      \"provider\" => TermDefinition.new(\"provider\", id: \"http://schema.org/provider\"),\n      \"providerMobility\" => TermDefinition.new(\"providerMobility\", id: \"http://schema.org/providerMobility\"),\n      \"providesBroadcastService\" => TermDefinition.new(\"providesBroadcastService\", id: \"http://schema.org/providesBroadcastService\"),\n      \"providesService\" => TermDefinition.new(\"providesService\", id: \"http://schema.org/providesService\"),\n      \"publication\" => TermDefinition.new(\"publication\", id: \"http://schema.org/publication\"),\n      \"publicationType\" => TermDefinition.new(\"publicationType\", id: \"http://schema.org/publicationType\"),\n      \"publishedBy\" => TermDefinition.new(\"publishedBy\", id: \"http://schema.org/publishedBy\"),\n      \"publishedOn\" => TermDefinition.new(\"publishedOn\", id: \"http://schema.org/publishedOn\"),\n      \"publisher\" => TermDefinition.new(\"publisher\", id: \"http://schema.org/publisher\"),\n      \"publisherImprint\" => TermDefinition.new(\"publisherImprint\", id: \"http://schema.org/publisherImprint\"),\n      \"publishingPrinciples\" => TermDefinition.new(\"publishingPrinciples\", id: \"http://schema.org/publishingPrinciples\", type_mapping: \"@id\"),\n      \"purchaseDate\" => TermDefinition.new(\"purchaseDate\", id: \"http://schema.org/purchaseDate\", type_mapping: \"http://schema.org/Date\"),\n      \"purpose\" => TermDefinition.new(\"purpose\", id: \"http://schema.org/purpose\"),\n      \"qualifications\" => TermDefinition.new(\"qualifications\", id: \"http://schema.org/qualifications\"),\n      \"query\" => TermDefinition.new(\"query\", id: \"http://schema.org/query\"),\n      \"quest\" => TermDefinition.new(\"quest\", id: \"http://schema.org/quest\"),\n      \"question\" => TermDefinition.new(\"question\", id: \"http://schema.org/question\"),\n      \"rangeIncludes\" => TermDefinition.new(\"rangeIncludes\", id: \"http://schema.org/rangeIncludes\"),\n      \"ratingCount\" => TermDefinition.new(\"ratingCount\", id: \"http://schema.org/ratingCount\"),\n      \"ratingValue\" => TermDefinition.new(\"ratingValue\", id: \"http://schema.org/ratingValue\"),\n      \"readBy\" => TermDefinition.new(\"readBy\", id: \"http://schema.org/readBy\"),\n      \"readonlyValue\" => TermDefinition.new(\"readonlyValue\", id: \"http://schema.org/readonlyValue\"),\n      \"realEstateAgent\" => TermDefinition.new(\"realEstateAgent\", id: \"http://schema.org/realEstateAgent\"),\n      \"recipe\" => TermDefinition.new(\"recipe\", id: \"http://schema.org/recipe\"),\n      \"recipeCategory\" => TermDefinition.new(\"recipeCategory\", id: \"http://schema.org/recipeCategory\"),\n      \"recipeCuisine\" => TermDefinition.new(\"recipeCuisine\", id: \"http://schema.org/recipeCuisine\"),\n      \"recipeIngredient\" => TermDefinition.new(\"recipeIngredient\", id: \"http://schema.org/recipeIngredient\"),\n      \"recipeInstructions\" => TermDefinition.new(\"recipeInstructions\", id: \"http://schema.org/recipeInstructions\"),\n      \"recipeYield\" => TermDefinition.new(\"recipeYield\", id: \"http://schema.org/recipeYield\"),\n      \"recipient\" => TermDefinition.new(\"recipient\", id: \"http://schema.org/recipient\"),\n      \"recognizingAuthority\" => TermDefinition.new(\"recognizingAuthority\", id: \"http://schema.org/recognizingAuthority\"),\n      \"recommendationStrength\" => TermDefinition.new(\"recommendationStrength\", id: \"http://schema.org/recommendationStrength\"),\n      \"recommendedIntake\" => TermDefinition.new(\"recommendedIntake\", id: \"http://schema.org/recommendedIntake\"),\n      \"recordLabel\" => TermDefinition.new(\"recordLabel\", id: \"http://schema.org/recordLabel\"),\n      \"recordedAs\" => TermDefinition.new(\"recordedAs\", id: \"http://schema.org/recordedAs\"),\n      \"recordedAt\" => TermDefinition.new(\"recordedAt\", id: \"http://schema.org/recordedAt\"),\n      \"recordedIn\" => TermDefinition.new(\"recordedIn\", id: \"http://schema.org/recordedIn\"),\n      \"recordingOf\" => TermDefinition.new(\"recordingOf\", id: \"http://schema.org/recordingOf\"),\n      \"referenceQuantity\" => TermDefinition.new(\"referenceQuantity\", id: \"http://schema.org/referenceQuantity\"),\n      \"referencesOrder\" => TermDefinition.new(\"referencesOrder\", id: \"http://schema.org/referencesOrder\"),\n      \"regionDrained\" => TermDefinition.new(\"regionDrained\", id: \"http://schema.org/regionDrained\"),\n      \"regionsAllowed\" => TermDefinition.new(\"regionsAllowed\", id: \"http://schema.org/regionsAllowed\"),\n      \"relatedAnatomy\" => TermDefinition.new(\"relatedAnatomy\", id: \"http://schema.org/relatedAnatomy\"),\n      \"relatedCondition\" => TermDefinition.new(\"relatedCondition\", id: \"http://schema.org/relatedCondition\"),\n      \"relatedDrug\" => TermDefinition.new(\"relatedDrug\", id: \"http://schema.org/relatedDrug\"),\n      \"relatedLink\" => TermDefinition.new(\"relatedLink\", id: \"http://schema.org/relatedLink\", type_mapping: \"@id\"),\n      \"relatedStructure\" => TermDefinition.new(\"relatedStructure\", id: \"http://schema.org/relatedStructure\"),\n      \"relatedTherapy\" => TermDefinition.new(\"relatedTherapy\", id: \"http://schema.org/relatedTherapy\"),\n      \"relatedTo\" => TermDefinition.new(\"relatedTo\", id: \"http://schema.org/relatedTo\"),\n      \"releaseDate\" => TermDefinition.new(\"releaseDate\", id: \"http://schema.org/releaseDate\", type_mapping: \"http://schema.org/Date\"),\n      \"releaseNotes\" => TermDefinition.new(\"releaseNotes\", id: \"http://schema.org/releaseNotes\", type_mapping: \"@id\"),\n      \"releaseOf\" => TermDefinition.new(\"releaseOf\", id: \"http://schema.org/releaseOf\"),\n      \"releasedEvent\" => TermDefinition.new(\"releasedEvent\", id: \"http://schema.org/releasedEvent\"),\n      \"relevantSpecialty\" => TermDefinition.new(\"relevantSpecialty\", id: \"http://schema.org/relevantSpecialty\"),\n      \"repetitions\" => TermDefinition.new(\"repetitions\", id: \"http://schema.org/repetitions\"),\n      \"replacee\" => TermDefinition.new(\"replacee\", id: \"http://schema.org/replacee\"),\n      \"replacer\" => TermDefinition.new(\"replacer\", id: \"http://schema.org/replacer\"),\n      \"replyToUrl\" => TermDefinition.new(\"replyToUrl\", id: \"http://schema.org/replyToUrl\", type_mapping: \"@id\"),\n      \"reportNumber\" => TermDefinition.new(\"reportNumber\", id: \"http://schema.org/reportNumber\"),\n      \"representativeOfPage\" => TermDefinition.new(\"representativeOfPage\", id: \"http://schema.org/representativeOfPage\"),\n      \"requiredCollateral\" => TermDefinition.new(\"requiredCollateral\", id: \"http://schema.org/requiredCollateral\"),\n      \"requiredGender\" => TermDefinition.new(\"requiredGender\", id: \"http://schema.org/requiredGender\"),\n      \"requiredMaxAge\" => TermDefinition.new(\"requiredMaxAge\", id: \"http://schema.org/requiredMaxAge\"),\n      \"requiredMinAge\" => TermDefinition.new(\"requiredMinAge\", id: \"http://schema.org/requiredMinAge\"),\n      \"requirements\" => TermDefinition.new(\"requirements\", id: \"http://schema.org/requirements\", type_mapping: \"@id\"),\n      \"requiresSubscription\" => TermDefinition.new(\"requiresSubscription\", id: \"http://schema.org/requiresSubscription\"),\n      \"reservationFor\" => TermDefinition.new(\"reservationFor\", id: \"http://schema.org/reservationFor\"),\n      \"reservationId\" => TermDefinition.new(\"reservationId\", id: \"http://schema.org/reservationId\"),\n      \"reservationStatus\" => TermDefinition.new(\"reservationStatus\", id: \"http://schema.org/reservationStatus\"),\n      \"reservedTicket\" => TermDefinition.new(\"reservedTicket\", id: \"http://schema.org/reservedTicket\"),\n      \"responsibilities\" => TermDefinition.new(\"responsibilities\", id: \"http://schema.org/responsibilities\"),\n      \"restPeriods\" => TermDefinition.new(\"restPeriods\", id: \"http://schema.org/restPeriods\"),\n      \"result\" => TermDefinition.new(\"result\", id: \"http://schema.org/result\"),\n      \"resultComment\" => TermDefinition.new(\"resultComment\", id: \"http://schema.org/resultComment\"),\n      \"resultReview\" => TermDefinition.new(\"resultReview\", id: \"http://schema.org/resultReview\"),\n      \"review\" => TermDefinition.new(\"review\", id: \"http://schema.org/review\"),\n      \"reviewBody\" => TermDefinition.new(\"reviewBody\", id: \"http://schema.org/reviewBody\"),\n      \"reviewCount\" => TermDefinition.new(\"reviewCount\", id: \"http://schema.org/reviewCount\"),\n      \"reviewRating\" => TermDefinition.new(\"reviewRating\", id: \"http://schema.org/reviewRating\"),\n      \"reviewedBy\" => TermDefinition.new(\"reviewedBy\", id: \"http://schema.org/reviewedBy\"),\n      \"reviews\" => TermDefinition.new(\"reviews\", id: \"http://schema.org/reviews\"),\n      \"riskFactor\" => TermDefinition.new(\"riskFactor\", id: \"http://schema.org/riskFactor\"),\n      \"risks\" => TermDefinition.new(\"risks\", id: \"http://schema.org/risks\"),\n      \"roleName\" => TermDefinition.new(\"roleName\", id: \"http://schema.org/roleName\", type_mapping: \"@id\"),\n      \"roofLoad\" => TermDefinition.new(\"roofLoad\", id: \"http://schema.org/roofLoad\"),\n      \"rsvpResponse\" => TermDefinition.new(\"rsvpResponse\", id: \"http://schema.org/rsvpResponse\"),\n      \"runsTo\" => TermDefinition.new(\"runsTo\", id: \"http://schema.org/runsTo\"),\n      \"runtime\" => TermDefinition.new(\"runtime\", id: \"http://schema.org/runtime\"),\n      \"runtimePlatform\" => TermDefinition.new(\"runtimePlatform\", id: \"http://schema.org/runtimePlatform\"),\n      \"rxcui\" => TermDefinition.new(\"rxcui\", id: \"http://schema.org/rxcui\"),\n      \"safetyConsideration\" => TermDefinition.new(\"safetyConsideration\", id: \"http://schema.org/safetyConsideration\"),\n      \"salaryCurrency\" => TermDefinition.new(\"salaryCurrency\", id: \"http://schema.org/salaryCurrency\"),\n      \"sameAs\" => TermDefinition.new(\"sameAs\", id: \"http://schema.org/sameAs\", type_mapping: \"@id\"),\n      \"sampleType\" => TermDefinition.new(\"sampleType\", id: \"http://schema.org/sampleType\"),\n      \"saturatedFatContent\" => TermDefinition.new(\"saturatedFatContent\", id: \"http://schema.org/saturatedFatContent\"),\n      \"scheduledPaymentDate\" => TermDefinition.new(\"scheduledPaymentDate\", id: \"http://schema.org/scheduledPaymentDate\", type_mapping: \"http://schema.org/Date\"),\n      \"scheduledTime\" => TermDefinition.new(\"scheduledTime\", id: \"http://schema.org/scheduledTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"schemaVersion\" => TermDefinition.new(\"schemaVersion\", id: \"http://schema.org/schemaVersion\", type_mapping: \"@id\"),\n      \"screenCount\" => TermDefinition.new(\"screenCount\", id: \"http://schema.org/screenCount\"),\n      \"screenshot\" => TermDefinition.new(\"screenshot\", id: \"http://schema.org/screenshot\", type_mapping: \"@id\"),\n      \"season\" => TermDefinition.new(\"season\", id: \"http://schema.org/season\"),\n      \"seasonNumber\" => TermDefinition.new(\"seasonNumber\", id: \"http://schema.org/seasonNumber\"),\n      \"seasons\" => TermDefinition.new(\"seasons\", id: \"http://schema.org/seasons\"),\n      \"seatNumber\" => TermDefinition.new(\"seatNumber\", id: \"http://schema.org/seatNumber\"),\n      \"seatRow\" => TermDefinition.new(\"seatRow\", id: \"http://schema.org/seatRow\"),\n      \"seatSection\" => TermDefinition.new(\"seatSection\", id: \"http://schema.org/seatSection\"),\n      \"seatingCapacity\" => TermDefinition.new(\"seatingCapacity\", id: \"http://schema.org/seatingCapacity\"),\n      \"seatingType\" => TermDefinition.new(\"seatingType\", id: \"http://schema.org/seatingType\"),\n      \"secondaryPrevention\" => TermDefinition.new(\"secondaryPrevention\", id: \"http://schema.org/secondaryPrevention\"),\n      \"securityScreening\" => TermDefinition.new(\"securityScreening\", id: \"http://schema.org/securityScreening\"),\n      \"seeks\" => TermDefinition.new(\"seeks\", id: \"http://schema.org/seeks\"),\n      \"seller\" => TermDefinition.new(\"seller\", id: \"http://schema.org/seller\"),\n      \"sender\" => TermDefinition.new(\"sender\", id: \"http://schema.org/sender\"),\n      \"sensoryUnit\" => TermDefinition.new(\"sensoryUnit\", id: \"http://schema.org/sensoryUnit\"),\n      \"serialNumber\" => TermDefinition.new(\"serialNumber\", id: \"http://schema.org/serialNumber\"),\n      \"seriousAdverseOutcome\" => TermDefinition.new(\"seriousAdverseOutcome\", id: \"http://schema.org/seriousAdverseOutcome\"),\n      \"serverStatus\" => TermDefinition.new(\"serverStatus\", id: \"http://schema.org/serverStatus\"),\n      \"servesCuisine\" => TermDefinition.new(\"servesCuisine\", id: \"http://schema.org/servesCuisine\"),\n      \"serviceArea\" => TermDefinition.new(\"serviceArea\", id: \"http://schema.org/serviceArea\"),\n      \"serviceAudience\" => TermDefinition.new(\"serviceAudience\", id: \"http://schema.org/serviceAudience\"),\n      \"serviceLocation\" => TermDefinition.new(\"serviceLocation\", id: \"http://schema.org/serviceLocation\"),\n      \"serviceOperator\" => TermDefinition.new(\"serviceOperator\", id: \"http://schema.org/serviceOperator\"),\n      \"serviceOutput\" => TermDefinition.new(\"serviceOutput\", id: \"http://schema.org/serviceOutput\"),\n      \"servicePhone\" => TermDefinition.new(\"servicePhone\", id: \"http://schema.org/servicePhone\"),\n      \"servicePostalAddress\" => TermDefinition.new(\"servicePostalAddress\", id: \"http://schema.org/servicePostalAddress\"),\n      \"serviceSmsNumber\" => TermDefinition.new(\"serviceSmsNumber\", id: \"http://schema.org/serviceSmsNumber\"),\n      \"serviceType\" => TermDefinition.new(\"serviceType\", id: \"http://schema.org/serviceType\"),\n      \"serviceUrl\" => TermDefinition.new(\"serviceUrl\", id: \"http://schema.org/serviceUrl\", type_mapping: \"@id\"),\n      \"servingSize\" => TermDefinition.new(\"servingSize\", id: \"http://schema.org/servingSize\"),\n      \"sharedContent\" => TermDefinition.new(\"sharedContent\", id: \"http://schema.org/sharedContent\"),\n      \"sibling\" => TermDefinition.new(\"sibling\", id: \"http://schema.org/sibling\"),\n      \"siblings\" => TermDefinition.new(\"siblings\", id: \"http://schema.org/siblings\"),\n      \"signDetected\" => TermDefinition.new(\"signDetected\", id: \"http://schema.org/signDetected\"),\n      \"signOrSymptom\" => TermDefinition.new(\"signOrSymptom\", id: \"http://schema.org/signOrSymptom\"),\n      \"significance\" => TermDefinition.new(\"significance\", id: \"http://schema.org/significance\"),\n      \"significantLink\" => TermDefinition.new(\"significantLink\", id: \"http://schema.org/significantLink\", type_mapping: \"@id\"),\n      \"significantLinks\" => TermDefinition.new(\"significantLinks\", id: \"http://schema.org/significantLinks\", type_mapping: \"@id\"),\n      \"skills\" => TermDefinition.new(\"skills\", id: \"http://schema.org/skills\"),\n      \"sku\" => TermDefinition.new(\"sku\", id: \"http://schema.org/sku\"),\n      \"smokingAllowed\" => TermDefinition.new(\"smokingAllowed\", id: \"http://schema.org/smokingAllowed\"),\n      \"sodiumContent\" => TermDefinition.new(\"sodiumContent\", id: \"http://schema.org/sodiumContent\"),\n      \"softwareAddOn\" => TermDefinition.new(\"softwareAddOn\", id: \"http://schema.org/softwareAddOn\"),\n      \"softwareHelp\" => TermDefinition.new(\"softwareHelp\", id: \"http://schema.org/softwareHelp\"),\n      \"softwareRequirements\" => TermDefinition.new(\"softwareRequirements\", id: \"http://schema.org/softwareRequirements\", type_mapping: \"@id\"),\n      \"softwareVersion\" => TermDefinition.new(\"softwareVersion\", id: \"http://schema.org/softwareVersion\"),\n      \"source\" => TermDefinition.new(\"source\", id: \"http://schema.org/source\"),\n      \"sourceOrganization\" => TermDefinition.new(\"sourceOrganization\", id: \"http://schema.org/sourceOrganization\"),\n      \"sourcedFrom\" => TermDefinition.new(\"sourcedFrom\", id: \"http://schema.org/sourcedFrom\"),\n      \"spatial\" => TermDefinition.new(\"spatial\", id: \"http://schema.org/spatial\"),\n      \"spatialCoverage\" => TermDefinition.new(\"spatialCoverage\", id: \"http://schema.org/spatialCoverage\"),\n      \"specialCommitments\" => TermDefinition.new(\"specialCommitments\", id: \"http://schema.org/specialCommitments\"),\n      \"specialOpeningHoursSpecification\" => TermDefinition.new(\"specialOpeningHoursSpecification\", id: \"http://schema.org/specialOpeningHoursSpecification\"),\n      \"specialty\" => TermDefinition.new(\"specialty\", id: \"http://schema.org/specialty\"),\n      \"speed\" => TermDefinition.new(\"speed\", id: \"http://schema.org/speed\"),\n      \"spokenByCharacter\" => TermDefinition.new(\"spokenByCharacter\", id: \"http://schema.org/spokenByCharacter\"),\n      \"sponsor\" => TermDefinition.new(\"sponsor\", id: \"http://schema.org/sponsor\"),\n      \"sport\" => TermDefinition.new(\"sport\", id: \"http://schema.org/sport\", type_mapping: \"@id\"),\n      \"sportsActivityLocation\" => TermDefinition.new(\"sportsActivityLocation\", id: \"http://schema.org/sportsActivityLocation\"),\n      \"sportsEvent\" => TermDefinition.new(\"sportsEvent\", id: \"http://schema.org/sportsEvent\"),\n      \"sportsTeam\" => TermDefinition.new(\"sportsTeam\", id: \"http://schema.org/sportsTeam\"),\n      \"spouse\" => TermDefinition.new(\"spouse\", id: \"http://schema.org/spouse\"),\n      \"stage\" => TermDefinition.new(\"stage\", id: \"http://schema.org/stage\"),\n      \"stageAsNumber\" => TermDefinition.new(\"stageAsNumber\", id: \"http://schema.org/stageAsNumber\"),\n      \"starRating\" => TermDefinition.new(\"starRating\", id: \"http://schema.org/starRating\"),\n      \"startDate\" => TermDefinition.new(\"startDate\", id: \"http://schema.org/startDate\", type_mapping: \"http://schema.org/Date\"),\n      \"startTime\" => TermDefinition.new(\"startTime\", id: \"http://schema.org/startTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"status\" => TermDefinition.new(\"status\", id: \"http://schema.org/status\"),\n      \"steeringPosition\" => TermDefinition.new(\"steeringPosition\", id: \"http://schema.org/steeringPosition\"),\n      \"stepValue\" => TermDefinition.new(\"stepValue\", id: \"http://schema.org/stepValue\"),\n      \"storageRequirements\" => TermDefinition.new(\"storageRequirements\", id: \"http://schema.org/storageRequirements\", type_mapping: \"@id\"),\n      \"streetAddress\" => TermDefinition.new(\"streetAddress\", id: \"http://schema.org/streetAddress\"),\n      \"strengthUnit\" => TermDefinition.new(\"strengthUnit\", id: \"http://schema.org/strengthUnit\"),\n      \"strengthValue\" => TermDefinition.new(\"strengthValue\", id: \"http://schema.org/strengthValue\"),\n      \"structuralClass\" => TermDefinition.new(\"structuralClass\", id: \"http://schema.org/structuralClass\"),\n      \"study\" => TermDefinition.new(\"study\", id: \"http://schema.org/study\"),\n      \"studyDesign\" => TermDefinition.new(\"studyDesign\", id: \"http://schema.org/studyDesign\"),\n      \"studyLocation\" => TermDefinition.new(\"studyLocation\", id: \"http://schema.org/studyLocation\"),\n      \"studySubject\" => TermDefinition.new(\"studySubject\", id: \"http://schema.org/studySubject\"),\n      \"subEvent\" => TermDefinition.new(\"subEvent\", id: \"http://schema.org/subEvent\"),\n      \"subEvents\" => TermDefinition.new(\"subEvents\", id: \"http://schema.org/subEvents\"),\n      \"subOrganization\" => TermDefinition.new(\"subOrganization\", id: \"http://schema.org/subOrganization\"),\n      \"subReservation\" => TermDefinition.new(\"subReservation\", id: \"http://schema.org/subReservation\"),\n      \"subStageSuffix\" => TermDefinition.new(\"subStageSuffix\", id: \"http://schema.org/subStageSuffix\"),\n      \"subStructure\" => TermDefinition.new(\"subStructure\", id: \"http://schema.org/subStructure\"),\n      \"subTest\" => TermDefinition.new(\"subTest\", id: \"http://schema.org/subTest\"),\n      \"subtitleLanguage\" => TermDefinition.new(\"subtitleLanguage\", id: \"http://schema.org/subtitleLanguage\"),\n      \"subtype\" => TermDefinition.new(\"subtype\", id: \"http://schema.org/subtype\"),\n      \"successorOf\" => TermDefinition.new(\"successorOf\", id: \"http://schema.org/successorOf\"),\n      \"sugarContent\" => TermDefinition.new(\"sugarContent\", id: \"http://schema.org/sugarContent\"),\n      \"suggestedAnswer\" => TermDefinition.new(\"suggestedAnswer\", id: \"http://schema.org/suggestedAnswer\"),\n      \"suggestedGender\" => TermDefinition.new(\"suggestedGender\", id: \"http://schema.org/suggestedGender\"),\n      \"suggestedMaxAge\" => TermDefinition.new(\"suggestedMaxAge\", id: \"http://schema.org/suggestedMaxAge\"),\n      \"suggestedMinAge\" => TermDefinition.new(\"suggestedMinAge\", id: \"http://schema.org/suggestedMinAge\"),\n      \"suitableForDiet\" => TermDefinition.new(\"suitableForDiet\", id: \"http://schema.org/suitableForDiet\"),\n      \"superEvent\" => TermDefinition.new(\"superEvent\", id: \"http://schema.org/superEvent\"),\n      \"supersededBy\" => TermDefinition.new(\"supersededBy\", id: \"http://schema.org/supersededBy\"),\n      \"supplyTo\" => TermDefinition.new(\"supplyTo\", id: \"http://schema.org/supplyTo\"),\n      \"supportingData\" => TermDefinition.new(\"supportingData\", id: \"http://schema.org/supportingData\"),\n      \"surface\" => TermDefinition.new(\"surface\", id: \"http://schema.org/surface\", type_mapping: \"@id\"),\n      \"target\" => TermDefinition.new(\"target\", id: \"http://schema.org/target\"),\n      \"targetCollection\" => TermDefinition.new(\"targetCollection\", id: \"http://schema.org/targetCollection\"),\n      \"targetDescription\" => TermDefinition.new(\"targetDescription\", id: \"http://schema.org/targetDescription\"),\n      \"targetName\" => TermDefinition.new(\"targetName\", id: \"http://schema.org/targetName\"),\n      \"targetPlatform\" => TermDefinition.new(\"targetPlatform\", id: \"http://schema.org/targetPlatform\"),\n      \"targetPopulation\" => TermDefinition.new(\"targetPopulation\", id: \"http://schema.org/targetPopulation\"),\n      \"targetProduct\" => TermDefinition.new(\"targetProduct\", id: \"http://schema.org/targetProduct\"),\n      \"targetUrl\" => TermDefinition.new(\"targetUrl\", id: \"http://schema.org/targetUrl\", type_mapping: \"@id\"),\n      \"taxID\" => TermDefinition.new(\"taxID\", id: \"http://schema.org/taxID\"),\n      \"telephone\" => TermDefinition.new(\"telephone\", id: \"http://schema.org/telephone\"),\n      \"temporal\" => TermDefinition.new(\"temporal\", id: \"http://schema.org/temporal\", type_mapping: \"http://schema.org/DateTime\"),\n      \"temporalCoverage\" => TermDefinition.new(\"temporalCoverage\", id: \"http://schema.org/temporalCoverage\", type_mapping: \"@id\"),\n      \"text\" => TermDefinition.new(\"text\", id: \"http://schema.org/text\"),\n      \"thumbnail\" => TermDefinition.new(\"thumbnail\", id: \"http://schema.org/thumbnail\"),\n      \"thumbnailUrl\" => TermDefinition.new(\"thumbnailUrl\", id: \"http://schema.org/thumbnailUrl\", type_mapping: \"@id\"),\n      \"tickerSymbol\" => TermDefinition.new(\"tickerSymbol\", id: \"http://schema.org/tickerSymbol\"),\n      \"ticketNumber\" => TermDefinition.new(\"ticketNumber\", id: \"http://schema.org/ticketNumber\"),\n      \"ticketToken\" => TermDefinition.new(\"ticketToken\", id: \"http://schema.org/ticketToken\", type_mapping: \"@id\"),\n      \"ticketedSeat\" => TermDefinition.new(\"ticketedSeat\", id: \"http://schema.org/ticketedSeat\"),\n      \"timeRequired\" => TermDefinition.new(\"timeRequired\", id: \"http://schema.org/timeRequired\"),\n      \"tissueSample\" => TermDefinition.new(\"tissueSample\", id: \"http://schema.org/tissueSample\"),\n      \"title\" => TermDefinition.new(\"title\", id: \"http://schema.org/title\"),\n      \"toLocation\" => TermDefinition.new(\"toLocation\", id: \"http://schema.org/toLocation\"),\n      \"tongueWeight\" => TermDefinition.new(\"tongueWeight\", id: \"http://schema.org/tongueWeight\"),\n      \"torque\" => TermDefinition.new(\"torque\", id: \"http://schema.org/torque\"),\n      \"totalPaymentDue\" => TermDefinition.new(\"totalPaymentDue\", id: \"http://schema.org/totalPaymentDue\"),\n      \"totalPrice\" => TermDefinition.new(\"totalPrice\", id: \"http://schema.org/totalPrice\"),\n      \"totalTime\" => TermDefinition.new(\"totalTime\", id: \"http://schema.org/totalTime\"),\n      \"track\" => TermDefinition.new(\"track\", id: \"http://schema.org/track\"),\n      \"trackingNumber\" => TermDefinition.new(\"trackingNumber\", id: \"http://schema.org/trackingNumber\"),\n      \"trackingUrl\" => TermDefinition.new(\"trackingUrl\", id: \"http://schema.org/trackingUrl\", type_mapping: \"@id\"),\n      \"tracks\" => TermDefinition.new(\"tracks\", id: \"http://schema.org/tracks\"),\n      \"trailer\" => TermDefinition.new(\"trailer\", id: \"http://schema.org/trailer\"),\n      \"trailerWeight\" => TermDefinition.new(\"trailerWeight\", id: \"http://schema.org/trailerWeight\"),\n      \"trainName\" => TermDefinition.new(\"trainName\", id: \"http://schema.org/trainName\"),\n      \"trainNumber\" => TermDefinition.new(\"trainNumber\", id: \"http://schema.org/trainNumber\"),\n      \"transFatContent\" => TermDefinition.new(\"transFatContent\", id: \"http://schema.org/transFatContent\"),\n      \"transcript\" => TermDefinition.new(\"transcript\", id: \"http://schema.org/transcript\"),\n      \"translationOfWork\" => TermDefinition.new(\"translationOfWork\", id: \"http://schema.org/translationOfWork\"),\n      \"translator\" => TermDefinition.new(\"translator\", id: \"http://schema.org/translator\"),\n      \"transmissionMethod\" => TermDefinition.new(\"transmissionMethod\", id: \"http://schema.org/transmissionMethod\"),\n      \"trialDesign\" => TermDefinition.new(\"trialDesign\", id: \"http://schema.org/trialDesign\"),\n      \"tributary\" => TermDefinition.new(\"tributary\", id: \"http://schema.org/tributary\"),\n      \"typeOfBed\" => TermDefinition.new(\"typeOfBed\", id: \"http://schema.org/typeOfBed\"),\n      \"typeOfGood\" => TermDefinition.new(\"typeOfGood\", id: \"http://schema.org/typeOfGood\"),\n      \"typicalAgeRange\" => TermDefinition.new(\"typicalAgeRange\", id: \"http://schema.org/typicalAgeRange\"),\n      \"typicalTest\" => TermDefinition.new(\"typicalTest\", id: \"http://schema.org/typicalTest\"),\n      \"underName\" => TermDefinition.new(\"underName\", id: \"http://schema.org/underName\"),\n      \"unitCode\" => TermDefinition.new(\"unitCode\", id: \"http://schema.org/unitCode\", type_mapping: \"@id\"),\n      \"unitText\" => TermDefinition.new(\"unitText\", id: \"http://schema.org/unitText\"),\n      \"unsaturatedFatContent\" => TermDefinition.new(\"unsaturatedFatContent\", id: \"http://schema.org/unsaturatedFatContent\"),\n      \"uploadDate\" => TermDefinition.new(\"uploadDate\", id: \"http://schema.org/uploadDate\", type_mapping: \"http://schema.org/Date\"),\n      \"upvoteCount\" => TermDefinition.new(\"upvoteCount\", id: \"http://schema.org/upvoteCount\"),\n      \"url\" => TermDefinition.new(\"url\", id: \"http://schema.org/url\", type_mapping: \"@id\"),\n      \"urlTemplate\" => TermDefinition.new(\"urlTemplate\", id: \"http://schema.org/urlTemplate\"),\n      \"usedToDiagnose\" => TermDefinition.new(\"usedToDiagnose\", id: \"http://schema.org/usedToDiagnose\"),\n      \"userInteractionCount\" => TermDefinition.new(\"userInteractionCount\", id: \"http://schema.org/userInteractionCount\"),\n      \"usesDevice\" => TermDefinition.new(\"usesDevice\", id: \"http://schema.org/usesDevice\"),\n      \"usesHealthPlanIdStandard\" => TermDefinition.new(\"usesHealthPlanIdStandard\", id: \"http://schema.org/usesHealthPlanIdStandard\", type_mapping: \"@id\"),\n      \"validFor\" => TermDefinition.new(\"validFor\", id: \"http://schema.org/validFor\"),\n      \"validFrom\" => TermDefinition.new(\"validFrom\", id: \"http://schema.org/validFrom\", type_mapping: \"http://schema.org/DateTime\"),\n      \"validIn\" => TermDefinition.new(\"validIn\", id: \"http://schema.org/validIn\"),\n      \"validThrough\" => TermDefinition.new(\"validThrough\", id: \"http://schema.org/validThrough\", type_mapping: \"http://schema.org/DateTime\"),\n      \"validUntil\" => TermDefinition.new(\"validUntil\", id: \"http://schema.org/validUntil\", type_mapping: \"http://schema.org/Date\"),\n      \"value\" => TermDefinition.new(\"value\", id: \"http://schema.org/value\"),\n      \"valueAddedTaxIncluded\" => TermDefinition.new(\"valueAddedTaxIncluded\", id: \"http://schema.org/valueAddedTaxIncluded\"),\n      \"valueMaxLength\" => TermDefinition.new(\"valueMaxLength\", id: \"http://schema.org/valueMaxLength\"),\n      \"valueMinLength\" => TermDefinition.new(\"valueMinLength\", id: \"http://schema.org/valueMinLength\"),\n      \"valueName\" => TermDefinition.new(\"valueName\", id: \"http://schema.org/valueName\"),\n      \"valuePattern\" => TermDefinition.new(\"valuePattern\", id: \"http://schema.org/valuePattern\"),\n      \"valueReference\" => TermDefinition.new(\"valueReference\", id: \"http://schema.org/valueReference\"),\n      \"valueRequired\" => TermDefinition.new(\"valueRequired\", id: \"http://schema.org/valueRequired\"),\n      \"variablesMeasured\" => TermDefinition.new(\"variablesMeasured\", id: \"http://schema.org/variablesMeasured\"),\n      \"variantCover\" => TermDefinition.new(\"variantCover\", id: \"http://schema.org/variantCover\"),\n      \"vatID\" => TermDefinition.new(\"vatID\", id: \"http://schema.org/vatID\"),\n      \"vehicleConfiguration\" => TermDefinition.new(\"vehicleConfiguration\", id: \"http://schema.org/vehicleConfiguration\"),\n      \"vehicleEngine\" => TermDefinition.new(\"vehicleEngine\", id: \"http://schema.org/vehicleEngine\"),\n      \"vehicleIdentificationNumber\" => TermDefinition.new(\"vehicleIdentificationNumber\", id: \"http://schema.org/vehicleIdentificationNumber\"),\n      \"vehicleInteriorColor\" => TermDefinition.new(\"vehicleInteriorColor\", id: \"http://schema.org/vehicleInteriorColor\"),\n      \"vehicleInteriorType\" => TermDefinition.new(\"vehicleInteriorType\", id: \"http://schema.org/vehicleInteriorType\"),\n      \"vehicleModelDate\" => TermDefinition.new(\"vehicleModelDate\", id: \"http://schema.org/vehicleModelDate\", type_mapping: \"http://schema.org/Date\"),\n      \"vehicleSeatingCapacity\" => TermDefinition.new(\"vehicleSeatingCapacity\", id: \"http://schema.org/vehicleSeatingCapacity\"),\n      \"vehicleSpecialUsage\" => TermDefinition.new(\"vehicleSpecialUsage\", id: \"http://schema.org/vehicleSpecialUsage\"),\n      \"vehicleTransmission\" => TermDefinition.new(\"vehicleTransmission\", id: \"http://schema.org/vehicleTransmission\", type_mapping: \"@id\"),\n      \"vendor\" => TermDefinition.new(\"vendor\", id: \"http://schema.org/vendor\"),\n      \"version\" => TermDefinition.new(\"version\", id: \"http://schema.org/version\"),\n      \"video\" => TermDefinition.new(\"video\", id: \"http://schema.org/video\"),\n      \"videoFormat\" => TermDefinition.new(\"videoFormat\", id: \"http://schema.org/videoFormat\"),\n      \"videoFrameSize\" => TermDefinition.new(\"videoFrameSize\", id: \"http://schema.org/videoFrameSize\"),\n      \"videoQuality\" => TermDefinition.new(\"videoQuality\", id: \"http://schema.org/videoQuality\"),\n      \"volumeNumber\" => TermDefinition.new(\"volumeNumber\", id: \"http://schema.org/volumeNumber\"),\n      \"warning\" => TermDefinition.new(\"warning\", id: \"http://schema.org/warning\", type_mapping: \"@id\"),\n      \"warranty\" => TermDefinition.new(\"warranty\", id: \"http://schema.org/warranty\"),\n      \"warrantyPromise\" => TermDefinition.new(\"warrantyPromise\", id: \"http://schema.org/warrantyPromise\"),\n      \"warrantyScope\" => TermDefinition.new(\"warrantyScope\", id: \"http://schema.org/warrantyScope\"),\n      \"webCheckinTime\" => TermDefinition.new(\"webCheckinTime\", id: \"http://schema.org/webCheckinTime\", type_mapping: \"http://schema.org/DateTime\"),\n      \"weight\" => TermDefinition.new(\"weight\", id: \"http://schema.org/weight\"),\n      \"weightTotal\" => TermDefinition.new(\"weightTotal\", id: \"http://schema.org/weightTotal\"),\n      \"wheelbase\" => TermDefinition.new(\"wheelbase\", id: \"http://schema.org/wheelbase\"),\n      \"width\" => TermDefinition.new(\"width\", id: \"http://schema.org/width\"),\n      \"winner\" => TermDefinition.new(\"winner\", id: \"http://schema.org/winner\"),\n      \"wordCount\" => TermDefinition.new(\"wordCount\", id: \"http://schema.org/wordCount\"),\n      \"workExample\" => TermDefinition.new(\"workExample\", id: \"http://schema.org/workExample\"),\n      \"workFeatured\" => TermDefinition.new(\"workFeatured\", id: \"http://schema.org/workFeatured\"),\n      \"workHours\" => TermDefinition.new(\"workHours\", id: \"http://schema.org/workHours\"),\n      \"workLocation\" => TermDefinition.new(\"workLocation\", id: \"http://schema.org/workLocation\"),\n      \"workPerformed\" => TermDefinition.new(\"workPerformed\", id: \"http://schema.org/workPerformed\"),\n      \"workPresented\" => TermDefinition.new(\"workPresented\", id: \"http://schema.org/workPresented\"),\n      \"workTranslation\" => TermDefinition.new(\"workTranslation\", id: \"http://schema.org/workTranslation\"),\n      \"workload\" => TermDefinition.new(\"workload\", id: \"http://schema.org/workload\"),\n      \"worksFor\" => TermDefinition.new(\"worksFor\", id: \"http://schema.org/worksFor\"),\n      \"worstRating\" => TermDefinition.new(\"worstRating\", id: \"http://schema.org/worstRating\"),\n      \"yearlyRevenue\" => TermDefinition.new(\"yearlyRevenue\", id: \"http://schema.org/yearlyRevenue\"),\n      \"yearsInOperation\" => TermDefinition.new(\"yearsInOperation\", id: \"http://schema.org/yearsInOperation\")\n    })\n  end\nend\n"
  },
  {
    "path": "example-files/schema-heir.jsonld",
    "content": "{\n  \"@context\": {\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"schema\": \"http://schema.org/\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"rdfs:subClassOf\": {\n      \"@type\": \"@id\"\n    },\n    \"name\": \"rdfs:label\",\n    \"description\": \"rdfs:comment\",\n    \"children\": {\n      \"@reverse\": \"rdfs:subClassOf\"\n    }\n  },\n  \"@id\": \"schema:Thing\",\n  \"@type\": \"rdfs:Class\",\n  \"description\": \"The most generic type of item.\",\n  \"name\": \"Thing\",\n  \"children\": [\n    {\n      \"@id\": \"schema:Class\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"A class, also often called a 'Type'; equivalent to rdfs:Class.\",\n      \"name\": \"Class\",\n      \"rdfs:subClassOf\": \"schema:Thing\"\n    },\n    {\n      \"@id\": \"schema:CreativeWork\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"The most generic kind of creative work, including books, movies, photographs, software programs, etc.\",\n      \"http://purl.org/dc/terms/source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"name\": \"CreativeWork\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:Article\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n          },\n          \"name\": \"Article\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:BlogPosting\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A blog post.\",\n              \"name\": \"BlogPosting\",\n              \"rdfs:subClassOf\": \"schema:Article\"\n            },\n            {\n              \"@id\": \"schema:NewsArticle\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A news article\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n              },\n              \"name\": \"NewsArticle\",\n              \"rdfs:subClassOf\": \"schema:Article\"\n            },\n            {\n              \"@id\": \"schema:ScholarlyArticle\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A scholarly article.\",\n              \"name\": \"ScholarlyArticle\",\n              \"rdfs:subClassOf\": \"schema:Article\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:MedicalScholarlyArticle\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A scholarly article in the medical domain.\",\n                  \"name\": \"MedicalScholarlyArticle\",\n                  \"rdfs:subClassOf\": \"schema:ScholarlyArticle\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:TechArticle\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.\",\n              \"name\": \"TechArticle\",\n              \"rdfs:subClassOf\": \"schema:Article\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:APIReference\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Reference documentation for application programming interfaces (APIs).\",\n                  \"name\": \"APIReference\",\n                  \"rdfs:subClassOf\": \"schema:TechArticle\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Blog\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A blog\",\n          \"name\": \"Blog\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Book\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A book.\",\n          \"name\": \"Book\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Code\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.\",\n          \"name\": \"Code\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Comment\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the \\\"text\\\" property, and its topic via \\\"about\\\", properties shared with all CreativeWorks.\",\n          \"name\": \"Comment\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:DataCatalog\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A collection of datasets.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n          },\n          \"name\": \"DataCatalog\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Dataset\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A body of structured information describing some topic(s) of interest.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n          },\n          \"name\": \"Dataset\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Diet\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"Diet\",\n          \"rdfs:subClassOf\": [\n            \"schema:CreativeWork\",\n            \"schema:LifestyleModification\"\n          ]\n        },\n        {\n          \"@id\": \"schema:ExercisePlan\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"ExercisePlan\",\n          \"rdfs:subClassOf\": [\n            \"schema:CreativeWork\",\n            \"schema:PhysicalActivity\"\n          ]\n        },\n        {\n          \"@id\": \"schema:ItemList\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A list of items of any sort&#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.\",\n          \"name\": \"ItemList\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Map\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A map.\",\n          \"name\": \"Map\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:MediaObject\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An image, video, or audio object embedded in a web page. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).\",\n          \"name\": \"MediaObject\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:AudioObject\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An audio file.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n              },\n              \"name\": \"AudioObject\",\n              \"rdfs:subClassOf\": \"schema:MediaObject\"\n            },\n            {\n              \"@id\": \"schema:DataDownload\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A dataset in downloadable form.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n              },\n              \"name\": \"DataDownload\",\n              \"rdfs:subClassOf\": \"schema:MediaObject\"\n            },\n            {\n              \"@id\": \"schema:ImageObject\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An image file.\",\n              \"name\": \"ImageObject\",\n              \"rdfs:subClassOf\": \"schema:MediaObject\"\n            },\n            {\n              \"@id\": \"schema:MusicVideoObject\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A music video file.\",\n              \"name\": \"MusicVideoObject\",\n              \"rdfs:subClassOf\": \"schema:MediaObject\"\n            },\n            {\n              \"@id\": \"schema:VideoObject\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A video file.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n              },\n              \"name\": \"VideoObject\",\n              \"rdfs:subClassOf\": \"schema:MediaObject\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Movie\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A movie.\",\n          \"name\": \"Movie\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:MusicPlaylist\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A collection of music tracks in playlist form.\",\n          \"name\": \"MusicPlaylist\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MusicAlbum\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A collection of music tracks.\",\n              \"name\": \"MusicAlbum\",\n              \"rdfs:subClassOf\": \"schema:MusicPlaylist\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MusicRecording\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A music recording (track), usually a single song.\",\n          \"name\": \"MusicRecording\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Painting\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A painting.\",\n          \"name\": \"Painting\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Photograph\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A photograph.\",\n          \"name\": \"Photograph\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Recipe\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A recipe.\",\n          \"name\": \"Recipe\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Review\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A review of an item - for example, a restaurant, movie, or store.\",\n          \"name\": \"Review\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Sculpture\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A piece of sculpture.\",\n          \"name\": \"Sculpture\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:SoftwareApplication\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A software application.\",\n          \"name\": \"SoftwareApplication\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MobileApplication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A mobile software application.\",\n              \"name\": \"MobileApplication\",\n              \"rdfs:subClassOf\": \"schema:SoftwareApplication\"\n            },\n            {\n              \"@id\": \"schema:WebApplication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web applications.\",\n              \"name\": \"WebApplication\",\n              \"rdfs:subClassOf\": \"schema:SoftwareApplication\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:TVEpisode\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An episode of a TV series or season.\",\n          \"name\": \"TVEpisode\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:TVSeason\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A TV season.\",\n          \"name\": \"TVSeason\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A television series.\",\n          \"name\": \"TVSeries\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:WebPage\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as <code>breadcrumb</code> may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page\",\n          \"name\": \"WebPage\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:AboutPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: About page.\",\n              \"name\": \"AboutPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:CheckoutPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: Checkout page.\",\n              \"name\": \"CheckoutPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:CollectionPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: Collection page.\",\n              \"name\": \"CollectionPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:ImageGallery\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Web page type: Image gallery page.\",\n                  \"name\": \"ImageGallery\",\n                  \"rdfs:subClassOf\": \"schema:CollectionPage\"\n                },\n                {\n                  \"@id\": \"schema:VideoGallery\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Web page type: Video gallery page.\",\n                  \"name\": \"VideoGallery\",\n                  \"rdfs:subClassOf\": \"schema:CollectionPage\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:ContactPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: Contact page.\",\n              \"name\": \"ContactPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:ItemPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A page devoted to a single item, such as a particular product or hotel.\",\n              \"name\": \"ItemPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:MedicalWebPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A web page that provides medical information.\",\n              \"name\": \"MedicalWebPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:ProfilePage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: Profile page.\",\n              \"name\": \"ProfilePage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            },\n            {\n              \"@id\": \"schema:SearchResultsPage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Web page type: Search results page.\",\n              \"name\": \"SearchResultsPage\",\n              \"rdfs:subClassOf\": \"schema:WebPage\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:WebPageElement\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A web page element, like a table or an image\",\n          \"name\": \"WebPageElement\",\n          \"rdfs:subClassOf\": \"schema:CreativeWork\",\n          \"children\": [\n            {\n              \"@id\": \"schema:SiteNavigationElement\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A navigation element of the page.\",\n              \"name\": \"SiteNavigationElement\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            },\n            {\n              \"@id\": \"schema:Table\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A table on the page.\",\n              \"name\": \"Table\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            },\n            {\n              \"@id\": \"schema:WPAdBlock\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An advertising section of the page.\",\n              \"name\": \"WPAdBlock\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            },\n            {\n              \"@id\": \"schema:WPFooter\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The footer section of the page.\",\n              \"name\": \"WPFooter\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            },\n            {\n              \"@id\": \"schema:WPHeader\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The header section of the page.\",\n              \"name\": \"WPHeader\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            },\n            {\n              \"@id\": \"schema:WPSideBar\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A sidebar section of the page.\",\n              \"name\": \"WPSideBar\",\n              \"rdfs:subClassOf\": \"schema:WebPageElement\"\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Event\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"An event happening at a certain time at a certain location.\",\n      \"name\": \"Event\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:BusinessEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Business event.\",\n          \"name\": \"BusinessEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:ChildrensEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Children's event.\",\n          \"name\": \"ChildrensEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:ComedyEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Comedy event.\",\n          \"name\": \"ComedyEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:DanceEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: A social dance.\",\n          \"name\": \"DanceEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:EducationEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Education event.\",\n          \"name\": \"EducationEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:Festival\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Festival.\",\n          \"name\": \"Festival\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:FoodEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Food event.\",\n          \"name\": \"FoodEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:LiteraryEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Literary event.\",\n          \"name\": \"LiteraryEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:MusicEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Music event.\",\n          \"name\": \"MusicEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:SaleEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Sales event.\",\n          \"name\": \"SaleEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:SocialEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Social event.\",\n          \"name\": \"SocialEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:SportsEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Sports event.\",\n          \"name\": \"SportsEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:TheaterEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Theater performance.\",\n          \"name\": \"TheaterEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:UserInteraction\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A user interacting with a page\",\n          \"name\": \"UserInteraction\",\n          \"rdfs:subClassOf\": \"schema:Event\",\n          \"children\": [\n            {\n              \"@id\": \"schema:UserBlocks\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Block this content.\",\n              \"name\": \"UserBlocks\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserCheckins\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Check-in at a place.\",\n              \"name\": \"UserCheckins\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserComments\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The UserInteraction event in which a user comments on an item.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n              },\n              \"name\": \"UserComments\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserDownloads\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Download of an item.\",\n              \"name\": \"UserDownloads\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserLikes\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Like an item.\",\n              \"name\": \"UserLikes\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserPageVisits\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Visit to a web page.\",\n              \"name\": \"UserPageVisits\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserPlays\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Play count of an item, for example a video or a song.\",\n              \"name\": \"UserPlays\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserPlusOnes\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: +1.\",\n              \"name\": \"UserPlusOnes\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            },\n            {\n              \"@id\": \"schema:UserTweets\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"User interaction: Tweets.\",\n              \"name\": \"UserTweets\",\n              \"rdfs:subClassOf\": \"schema:UserInteraction\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:VisualArtsEvent\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Event type: Visual arts event.\",\n          \"name\": \"VisualArtsEvent\",\n          \"rdfs:subClassOf\": \"schema:Event\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Intangible\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.\",\n      \"name\": \"Intangible\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:AlignmentObject\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An intangible item that describes an alignment between a learning resource and a node in an educational framework.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\"\n          },\n          \"name\": \"AlignmentObject\",\n          \"rdfs:subClassOf\": \"schema:Intangible\"\n        },\n        {\n          \"@id\": \"schema:Audience\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Intended audience for an item, i.e. the group for whom the item was created.\",\n          \"name\": \"Audience\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:EducationalAudience\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An EducationalAudience\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\"\n              },\n              \"name\": \"EducationalAudience\",\n              \"rdfs:subClassOf\": \"schema:Audience\"\n            },\n            {\n              \"@id\": \"schema:MedicalAudience\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Target audiences for medical web pages. Enumerated type.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalAudience\",\n              \"rdfs:subClassOf\": [\n                \"schema:Audience\",\n                \"schema:MedicalEnumeration\",\n                \"schema:PeopleAudience\"\n              ]\n            },\n            {\n              \"@id\": \"schema:PeopleAudience\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A set of characteristics belonging to people, e.g. who compose an item's target audience.\",\n              \"name\": \"PeopleAudience\",\n              \"rdfs:subClassOf\": \"schema:Audience\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:MedicalAudience\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Target audiences for medical web pages. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalAudience\",\n                  \"rdfs:subClassOf\": [\n                    \"schema:Audience\",\n                    \"schema:MedicalEnumeration\",\n                    \"schema:PeopleAudience\"\n                  ]\n                },\n                {\n                  \"@id\": \"schema:ParentAudience\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A set of characteristics describing parents, who can be interested in viewing some content\",\n                  \"name\": \"ParentAudience\",\n                  \"rdfs:subClassOf\": \"schema:PeopleAudience\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Brand\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A brand is a name used by an organization or business person for labeling a product, product group, or similar.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n          },\n          \"name\": \"Brand\",\n          \"rdfs:subClassOf\": \"schema:Intangible\"\n        },\n        {\n          \"@id\": \"schema:Demand\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n          },\n          \"name\": \"Demand\",\n          \"rdfs:subClassOf\": \"schema:Intangible\"\n        },\n        {\n          \"@id\": \"schema:Enumeration\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Lists or enumerations&#x2014;for example, a list of cuisines or music genres, etc.\",\n          \"name\": \"Enumeration\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:BookFormatType\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The publication format of the book.\",\n              \"name\": \"BookFormatType\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:BusinessEntityType\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Business\\n    http://purl.org/goodrelations/v1#Enduser\\n    http://purl.org/goodrelations/v1#PublicInstitution\\n    http://purl.org/goodrelations/v1#Reseller\\n\\n    \\t\\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"BusinessEntityType\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:BusinessFunction\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#ConstructionInstallation\\n    http://purl.org/goodrelations/v1#Dispose\\n    http://purl.org/goodrelations/v1#LeaseOut\\n    http://purl.org/goodrelations/v1#Maintain\\n    http://purl.org/goodrelations/v1#ProvideService\\n    http://purl.org/goodrelations/v1#Repair\\n    http://purl.org/goodrelations/v1#Sell\\n    http://purl.org/goodrelations/v1#Buy\\n    \\t\\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"BusinessFunction\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:DayOfWeek\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Monday\\n    http://purl.org/goodrelations/v1#Tuesday\\n    http://purl.org/goodrelations/v1#Wednesday\\n    http://purl.org/goodrelations/v1#Thursday\\n    http://purl.org/goodrelations/v1#Friday\\n    http://purl.org/goodrelations/v1#Saturday\\n    http://purl.org/goodrelations/v1#Sunday\\n    http://purl.org/goodrelations/v1#PublicHolidays\\n    \\t\\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"DayOfWeek\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:DeliveryMethod\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n    http://purl.org/goodrelations/v1#DeliveryModeFreight\\n    http://purl.org/goodrelations/v1#DeliveryModeMail\\n    http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n    http://purl.org/goodrelations/v1#DeliveryModePickUp\\n    http://purl.org/goodrelations/v1#DHL\\n    http://purl.org/goodrelations/v1#FederalExpress\\n    http://purl.org/goodrelations/v1#UPS\\n    \\t\\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"DeliveryMethod\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:ParcelService\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A private parcel service as the delivery mode available for a certain offer.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#DHL\\n    http://purl.org/goodrelations/v1#FederalExpress\\n    http://purl.org/goodrelations/v1#UPS\\n    \\t\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n                  },\n                  \"name\": \"ParcelService\",\n                  \"rdfs:subClassOf\": \"schema:DeliveryMethod\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:ItemAvailability\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A list of possible product availablity options.\",\n              \"name\": \"ItemAvailability\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:OfferItemCondition\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A list of possible conditions for the item for sale.\",\n              \"name\": \"OfferItemCondition\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:PaymentMethod\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n    http://purl.org/goodrelations/v1#ByInvoice\\n    http://purl.org/goodrelations/v1#Cash\\n    http://purl.org/goodrelations/v1#CheckInAdvance\\n    http://purl.org/goodrelations/v1#COD\\n    http://purl.org/goodrelations/v1#DirectDebit\\n    http://purl.org/goodrelations/v1#GoogleCheckout\\n    http://purl.org/goodrelations/v1#PayPal\\n    http://purl.org/goodrelations/v1#PaySwarm\\n    \\t\\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"PaymentMethod\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:CreditCard\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#AmericanExpress\\n    http://purl.org/goodrelations/v1#DinersClub\\n    http://purl.org/goodrelations/v1#Discover\\n    http://purl.org/goodrelations/v1#JCB\\n    http://purl.org/goodrelations/v1#MasterCard\\n    http://purl.org/goodrelations/v1#VISA\\n    \\t\\t\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n                  },\n                  \"name\": \"CreditCard\",\n                  \"rdfs:subClassOf\": \"schema:PaymentMethod\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:QualitativeValue\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A predefined value for a product characteristic, e.g. the the power cord plug type \\\"US\\\" or the garment sizes \\\"S\\\", \\\"M\\\", \\\"L\\\", and \\\"XL\\\"\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"QualitativeValue\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            },\n            {\n              \"@id\": \"schema:Specialty\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.\",\n              \"name\": \"Specialty\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:MedicalSpecialty\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalSpecialty\",\n                  \"rdfs:subClassOf\": [\n                    \"schema:MedicalEnumeration\",\n                    \"schema:Specialty\"\n                  ]\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:WarrantyScope\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Labor-BringIn\\n    http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n    http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\\n    \\t\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"WarrantyScope\",\n              \"rdfs:subClassOf\": \"schema:Enumeration\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:JobPosting\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A listing that describes a job opening in a certain organization.\",\n          \"name\": \"JobPosting\",\n          \"rdfs:subClassOf\": \"schema:Intangible\"\n        },\n        {\n          \"@id\": \"schema:Language\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Natural languages such as Spanish, Tamil, Hindi, English, etc. and programming languages such as Scheme and Lisp.\",\n          \"name\": \"Language\",\n          \"rdfs:subClassOf\": \"schema:Intangible\"\n        },\n        {\n          \"@id\": \"schema:Offer\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An offer to sell an item&#x2014;for example, an offer to sell a product, the DVD of a movie, or tickets to an event.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\"\n          },\n          \"name\": \"Offer\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:AggregateOffer\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"When a single product that has different offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\",\n              \"name\": \"AggregateOffer\",\n              \"rdfs:subClassOf\": \"schema:Offer\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Quantity\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.\",\n          \"name\": \"Quantity\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:Distance\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Properties that take Distances as values are of the form '&lt;Number&gt; &lt;Length unit of measure&gt;'. E.g., '7 ft'\",\n              \"name\": \"Distance\",\n              \"rdfs:subClassOf\": \"schema:Quantity\"\n            },\n            {\n              \"@id\": \"schema:Duration\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Quantity: Duration (use  <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>).\",\n              \"name\": \"Duration\",\n              \"rdfs:subClassOf\": \"schema:Quantity\"\n            },\n            {\n              \"@id\": \"schema:Energy\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Properties that take Enerygy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;'\",\n              \"name\": \"Energy\",\n              \"rdfs:subClassOf\": \"schema:Quantity\"\n            },\n            {\n              \"@id\": \"schema:Mass\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Properties that take Mass as values are of the form '&lt;Number&gt; &lt;Mass unit of measure&gt;'. E.g., '7 kg'\",\n              \"name\": \"Mass\",\n              \"rdfs:subClassOf\": \"schema:Quantity\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Rating\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"The rating of the video.\",\n          \"name\": \"Rating\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:AggregateRating\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The average rating based on multiple ratings or reviews.\",\n              \"name\": \"AggregateRating\",\n              \"rdfs:subClassOf\": \"schema:Rating\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:StructuredValue\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Structured values are strings&#x2014;for example, addresses&#x2014;that have certain constraints on their structure.\",\n          \"name\": \"StructuredValue\",\n          \"rdfs:subClassOf\": \"schema:Intangible\",\n          \"children\": [\n            {\n              \"@id\": \"schema:ContactPoint\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A contact point&#x2014;for example, a Customer Complaints department.\",\n              \"name\": \"ContactPoint\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:PostalAddress\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The mailing address.\",\n                  \"name\": \"PostalAddress\",\n                  \"rdfs:subClassOf\": \"schema:ContactPoint\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:GeoCoordinates\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The geographic coordinates of a place or event.\",\n              \"name\": \"GeoCoordinates\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:GeoShape\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The geographic shape of a place.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n              },\n              \"name\": \"GeoShape\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:NutritionInformation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Nutritional information about the recipe.\",\n              \"name\": \"NutritionInformation\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:OpeningHoursSpecification\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A structured value providing information about the opening hours of a place or a certain service inside a place.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"OpeningHoursSpecification\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:OwnershipInfo\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A structured value providing information about when a certain organization or person owned a certain product.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"OwnershipInfo\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:PriceSpecification\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A structured value representing a monetary amount. Typically, only the subclasses of this type are used for markup.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"PriceSpecification\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:DeliveryChargeSpecification\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The price for the delivery of an offer using a particular delivery method.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n                  },\n                  \"name\": \"DeliveryChargeSpecification\",\n                  \"rdfs:subClassOf\": \"schema:PriceSpecification\"\n                },\n                {\n                  \"@id\": \"schema:PaymentChargeSpecification\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The costs of settling the payment using a particular payment method.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n                  },\n                  \"name\": \"PaymentChargeSpecification\",\n                  \"rdfs:subClassOf\": \"schema:PriceSpecification\"\n                },\n                {\n                  \"@id\": \"schema:UnitPriceSpecification\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The price asked for a given offer by the respective organization or person.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n                  },\n                  \"name\": \"UnitPriceSpecification\",\n                  \"rdfs:subClassOf\": \"schema:PriceSpecification\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:QuantitativeValue\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \" A point value or interval for product characteristics and other purposes.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"QuantitativeValue\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:TypeAndQuantityNode\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"TypeAndQuantityNode\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            },\n            {\n              \"@id\": \"schema:WarrantyPromise\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n              },\n              \"name\": \"WarrantyPromise\",\n              \"rdfs:subClassOf\": \"schema:StructuredValue\"\n            }\n          ]\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:MedicalEntity\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"The most generic type of entity related to health and the practice of medicine.\",\n      \"http://purl.org/dc/terms/source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"name\": \"MedicalEntity\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"AnatomicalStructure\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:Bone\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Rigid connective tissue that comprises up the skeletal structure of the human body.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Bone\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:BrainStructure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"BrainStructure\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:Joint\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The anatomical location at which two or more bones make contact.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Joint\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:Ligament\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Ligament\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:Muscle\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Muscle\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:Nerve\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Nerve\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\"\n            },\n            {\n              \"@id\": \"schema:Vessel\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Vessel\",\n              \"rdfs:subClassOf\": \"schema:AnatomicalStructure\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:Artery\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A type of blood vessel that specifically carries blood away from the heart.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"Artery\",\n                  \"rdfs:subClassOf\": \"schema:Vessel\"\n                },\n                {\n                  \"@id\": \"schema:LymphaticVessel\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"LymphaticVessel\",\n                  \"rdfs:subClassOf\": \"schema:Vessel\"\n                },\n                {\n                  \"@id\": \"schema:Vein\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A type of blood vessel that specifically carries blood to the heart.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"Vein\",\n                  \"rdfs:subClassOf\": \"schema:Vessel\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"AnatomicalSystem\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        },\n        {\n          \"@id\": \"schema:MedicalCause\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. <p>Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalCause\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        },\n        {\n          \"@id\": \"schema:MedicalCondition\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalCondition\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:InfectiousDisease\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"InfectiousDisease\",\n              \"rdfs:subClassOf\": \"schema:MedicalCondition\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalContraindication\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalContraindication\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        },\n        {\n          \"@id\": \"schema:MedicalDevice\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any object used in a medical capacity, such as to diagnose or treat a patient.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalDevice\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        },\n        {\n          \"@id\": \"schema:MedicalGuideline\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalGuideline\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MedicalGuidelineContraindication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalGuidelineContraindication\",\n              \"rdfs:subClassOf\": \"schema:MedicalGuideline\"\n            },\n            {\n              \"@id\": \"schema:MedicalGuidelineRecommendation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalGuidelineRecommendation\",\n              \"rdfs:subClassOf\": \"schema:MedicalGuideline\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalIndication\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalIndication\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:ApprovedIndication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"ApprovedIndication\",\n              \"rdfs:subClassOf\": \"schema:MedicalIndication\"\n            },\n            {\n              \"@id\": \"schema:PreventionIndication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An indication for preventing an underlying condition, symptom, etc.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PreventionIndication\",\n              \"rdfs:subClassOf\": \"schema:MedicalIndication\"\n            },\n            {\n              \"@id\": \"schema:TreatmentIndication\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An indication for treating an underlying condition, symptom, etc.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"TreatmentIndication\",\n              \"rdfs:subClassOf\": \"schema:MedicalIndication\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalIntangible\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.\",\n          \"name\": \"MedicalIntangible\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:DDxElement\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DDxElement\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:DoseSchedule\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A specific dosing schedule for a drug or supplement.\",\n              \"name\": \"DoseSchedule\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:MaximumDoseSchedule\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.\",\n                  \"name\": \"MaximumDoseSchedule\",\n                  \"rdfs:subClassOf\": \"schema:DoseSchedule\"\n                },\n                {\n                  \"@id\": \"schema:RecommendedDoseSchedule\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.\",\n                  \"name\": \"RecommendedDoseSchedule\",\n                  \"rdfs:subClassOf\": \"schema:DoseSchedule\"\n                },\n                {\n                  \"@id\": \"schema:ReportedDoseSchedule\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A patient-reported or observed dosing schedule for a drug or supplement.\",\n                  \"name\": \"ReportedDoseSchedule\",\n                  \"rdfs:subClassOf\": \"schema:DoseSchedule\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:DrugCost\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.\",\n              \"name\": \"DrugCost\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:DrugLegalStatus\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"The legal availability status of a medical drug.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DrugLegalStatus\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:DrugStrength\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A specific strength in which a medical drug is available in a specific country.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DrugStrength\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:MedicalCode\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A code for a medical entity.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalCode\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:MedicalConditionStage\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A stage of a medical condition, such as 'Stage IIIa'.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalConditionStage\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\"\n            },\n            {\n              \"@id\": \"schema:MedicalEnumeration\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Enumerations related to health and the practice of medicine.\",\n              \"name\": \"MedicalEnumeration\",\n              \"rdfs:subClassOf\": \"schema:MedicalIntangible\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:DrugCostCategory\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Enumerated categories of medical drug costs.\",\n                  \"name\": \"DrugCostCategory\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:DrugPregnancyCategory\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.\",\n                  \"name\": \"DrugPregnancyCategory\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:DrugPrescriptionStatus\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Indicates whether this drug is available by prescription or over-the-counter.\",\n                  \"name\": \"DrugPrescriptionStatus\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:InfectiousAgentClass\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Classes of agents or pathogens that transmit infectious diseases. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"InfectiousAgentClass\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalAudience\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Target audiences for medical web pages. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalAudience\",\n                  \"rdfs:subClassOf\": [\n                    \"schema:Audience\",\n                    \"schema:MedicalEnumeration\",\n                    \"schema:PeopleAudience\"\n                  ]\n                },\n                {\n                  \"@id\": \"schema:MedicalDevicePurpose\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Categories of medical devices, organized by the purpose or intended use of the device.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalDevicePurpose\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalEvidenceLevel\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Level of evidence for a medical guideline. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalEvidenceLevel\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalImagingTechnique\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Any medical imaging modality typically used for diagnostic purposes. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalImagingTechnique\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalObservationalStudyDesign\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Design models for observational medical studies. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalObservationalStudyDesign\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalProcedureType\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"An enumeration that describes different types of medical procedures.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalProcedureType\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalSpecialty\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalSpecialty\",\n                  \"rdfs:subClassOf\": [\n                    \"schema:MedicalEnumeration\",\n                    \"schema:Specialty\"\n                  ]\n                },\n                {\n                  \"@id\": \"schema:MedicalStudyStatus\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"The status of a medical study. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalStudyStatus\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicalTrialDesign\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Design models for medical trials. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"MedicalTrialDesign\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:MedicineSystem\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Systems of medical practice.\",\n                  \"name\": \"MedicineSystem\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:PhysicalActivityCategory\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Categories of physical activity, organized by physiologic classification.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"PhysicalActivityCategory\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                },\n                {\n                  \"@id\": \"schema:PhysicalExam\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A type of physical examination of a patient performed by a physician. Enumerated type.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"PhysicalExam\",\n                  \"rdfs:subClassOf\": \"schema:MedicalEnumeration\"\n                }\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalProcedure\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalProcedure\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:DiagnosticProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DiagnosticProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTest\"\n              ]\n            },\n            {\n              \"@id\": \"schema:PalliativeProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PalliativeProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTherapy\"\n              ]\n            },\n            {\n              \"@id\": \"schema:TherapeuticProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"TherapeuticProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTherapy\"\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalRiskEstimator\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any rule set or interactive tool for estimating the risk of developing a complication or condition.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalRiskEstimator\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MedicalRiskCalculator\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalRiskCalculator\",\n              \"rdfs:subClassOf\": \"schema:MedicalRiskEstimator\"\n            },\n            {\n              \"@id\": \"schema:MedicalRiskScore\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalRiskScore\",\n              \"rdfs:subClassOf\": \"schema:MedicalRiskEstimator\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalRiskFactor\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalRiskFactor\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        },\n        {\n          \"@id\": \"schema:MedicalSignOrSymptom\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any indication of the existence of a medical condition or disease.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalSignOrSymptom\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MedicalSign\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalSign\",\n              \"rdfs:subClassOf\": \"schema:MedicalSignOrSymptom\"\n            },\n            {\n              \"@id\": \"schema:MedicalSymptom\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any indication of the existence of a medical condition or disease that is apparent to the patient.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalSymptom\",\n              \"rdfs:subClassOf\": \"schema:MedicalSignOrSymptom\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalStudy\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalStudy\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:MedicalObservationalStudy\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalObservationalStudy\",\n              \"rdfs:subClassOf\": \"schema:MedicalStudy\"\n            },\n            {\n              \"@id\": \"schema:MedicalTrial\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalTrial\",\n              \"rdfs:subClassOf\": \"schema:MedicalStudy\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalTest\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any medical test, typically performed for diagnostic purposes.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalTest\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:BloodTest\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical test performed on a sample of a patient's blood.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"BloodTest\",\n              \"rdfs:subClassOf\": \"schema:MedicalTest\"\n            },\n            {\n              \"@id\": \"schema:DiagnosticProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DiagnosticProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTest\"\n              ]\n            },\n            {\n              \"@id\": \"schema:ImagingTest\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any medical imaging modality typically used for diagnostic purposes.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"ImagingTest\",\n              \"rdfs:subClassOf\": \"schema:MedicalTest\"\n            },\n            {\n              \"@id\": \"schema:MedicalTestPanel\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Any collection of tests commonly ordered together.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"MedicalTestPanel\",\n              \"rdfs:subClassOf\": \"schema:MedicalTest\"\n            },\n            {\n              \"@id\": \"schema:PathologyTest\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PathologyTest\",\n              \"rdfs:subClassOf\": \"schema:MedicalTest\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:MedicalTherapy\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"MedicalTherapy\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\",\n          \"children\": [\n            {\n              \"@id\": \"schema:DietarySupplement\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DietarySupplement\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:Drug\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"Drug\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:DrugClass\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"DrugClass\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:LifestyleModification\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"LifestyleModification\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:Diet\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"Diet\",\n                  \"rdfs:subClassOf\": [\n                    \"schema:CreativeWork\",\n                    \"schema:LifestyleModification\"\n                  ]\n                },\n                {\n                  \"@id\": \"schema:PhysicalActivity\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.\",\n                  \"http://purl.org/dc/terms/source\": {\n                    \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                  },\n                  \"name\": \"PhysicalActivity\",\n                  \"rdfs:subClassOf\": \"schema:LifestyleModification\",\n                  \"children\": [\n                    {\n                      \"@id\": \"schema:ExercisePlan\",\n                      \"@type\": \"rdfs:Class\",\n                      \"description\": \"Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.\",\n                      \"http://purl.org/dc/terms/source\": {\n                        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n                      },\n                      \"name\": \"ExercisePlan\",\n                      \"rdfs:subClassOf\": [\n                        \"schema:CreativeWork\",\n                        \"schema:PhysicalActivity\"\n                      ]\n                    }\n                  ]\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:PalliativeProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PalliativeProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTherapy\"\n              ]\n            },\n            {\n              \"@id\": \"schema:PhysicalTherapy\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A process of progressive physical care and rehabilitation aimed at improving a health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PhysicalTherapy\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:PsychologicalTreatment\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A process of care relying upon counseling, dialogue, communication, verbalization aimed at improving a mental health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"PsychologicalTreatment\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:RadiationTherapy\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A process of care using radiation aimed at improving a health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"RadiationTherapy\",\n              \"rdfs:subClassOf\": \"schema:MedicalTherapy\"\n            },\n            {\n              \"@id\": \"schema:TherapeuticProcedure\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition.\",\n              \"http://purl.org/dc/terms/source\": {\n                \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n              },\n              \"name\": \"TherapeuticProcedure\",\n              \"rdfs:subClassOf\": [\n                \"schema:MedicalProcedure\",\n                \"schema:MedicalTherapy\"\n              ]\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n          },\n          \"name\": \"SuperficialAnatomy\",\n          \"rdfs:subClassOf\": \"schema:MedicalEntity\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Organization\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"An organization such as a school, NGO, corporation, club, etc.\",\n      \"name\": \"Organization\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:Corporation\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Organization: A business corporation.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n          },\n          \"name\": \"Corporation\",\n          \"rdfs:subClassOf\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:EducationalOrganization\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An educational organization.\",\n          \"name\": \"EducationalOrganization\",\n          \"rdfs:subClassOf\": \"schema:Organization\",\n          \"children\": [\n            {\n              \"@id\": \"schema:CollegeOrUniversity\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A college, university, or other third-level educational institution.\",\n              \"name\": \"CollegeOrUniversity\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            },\n            {\n              \"@id\": \"schema:ElementarySchool\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An elementary school.\",\n              \"name\": \"ElementarySchool\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            },\n            {\n              \"@id\": \"schema:HighSchool\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A high school.\",\n              \"name\": \"HighSchool\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            },\n            {\n              \"@id\": \"schema:MiddleSchool\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A middle school.\",\n              \"name\": \"MiddleSchool\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            },\n            {\n              \"@id\": \"schema:Preschool\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A preschool.\",\n              \"name\": \"Preschool\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            },\n            {\n              \"@id\": \"schema:School\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A school.\",\n              \"name\": \"School\",\n              \"rdfs:subClassOf\": \"schema:EducationalOrganization\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:GovernmentOrganization\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A governmental organization or agency.\",\n          \"name\": \"GovernmentOrganization\",\n          \"rdfs:subClassOf\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:LocalBusiness\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.\",\n          \"name\": \"LocalBusiness\",\n          \"rdfs:subClassOf\": [\n            \"schema:Organization\",\n            \"schema:Place\"\n          ],\n          \"children\": [\n            {\n              \"@id\": \"schema:TravelAgency\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A travel agency.\",\n              \"name\": \"TravelAgency\",\n              \"rdfs:subClassOf\": \"schema:LocalBusiness\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:NGO\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Organization: Non-governmental Organization.\",\n          \"name\": \"NGO\",\n          \"rdfs:subClassOf\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:PerformingGroup\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A performance group, such as a band, an orchestra, or a circus.\",\n          \"name\": \"PerformingGroup\",\n          \"rdfs:subClassOf\": \"schema:Organization\",\n          \"children\": [\n            {\n              \"@id\": \"schema:DanceGroup\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A dance group&#x2014;for example, the Alvin Ailey Dance Theater or Riverdance.\",\n              \"name\": \"DanceGroup\",\n              \"rdfs:subClassOf\": \"schema:PerformingGroup\"\n            },\n            {\n              \"@id\": \"schema:MusicGroup\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.\",\n              \"name\": \"MusicGroup\",\n              \"rdfs:subClassOf\": \"schema:PerformingGroup\"\n            },\n            {\n              \"@id\": \"schema:TheaterGroup\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A theater group or company&#x2014;for example, the Royal Shakespeare Company or Druid Theatre.\",\n              \"name\": \"TheaterGroup\",\n              \"rdfs:subClassOf\": \"schema:PerformingGroup\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:SportsTeam\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"Organization: Sports team.\",\n          \"name\": \"SportsTeam\",\n          \"rdfs:subClassOf\": \"schema:Organization\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Person\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"A person (alive, dead, undead, or fictional).\",\n      \"http://purl.org/dc/terms/source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"name\": \"Person\",\n      \"rdfs:subClassOf\": \"schema:Thing\"\n    },\n    {\n      \"@id\": \"schema:Place\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"Entities that have a somewhat fixed, physical extension.\",\n      \"name\": \"Place\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:AdministrativeArea\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A geographical region under the jurisdiction of a particular government.\",\n          \"name\": \"AdministrativeArea\",\n          \"rdfs:subClassOf\": \"schema:Place\",\n          \"children\": [\n            {\n              \"@id\": \"schema:City\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A city or town.\",\n              \"name\": \"City\",\n              \"rdfs:subClassOf\": \"schema:AdministrativeArea\"\n            },\n            {\n              \"@id\": \"schema:Country\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A country.\",\n              \"name\": \"Country\",\n              \"rdfs:subClassOf\": \"schema:AdministrativeArea\"\n            },\n            {\n              \"@id\": \"schema:State\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A state or province.\",\n              \"name\": \"State\",\n              \"rdfs:subClassOf\": \"schema:AdministrativeArea\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:CivicStructure\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A public structure, such as a town hall or concert hall.\",\n          \"name\": \"CivicStructure\",\n          \"rdfs:subClassOf\": \"schema:Place\",\n          \"children\": [\n            {\n              \"@id\": \"schema:Airport\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An airport.\",\n              \"name\": \"Airport\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Aquarium\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Aquarium.\",\n              \"name\": \"Aquarium\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Beach\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Beach.\",\n              \"name\": \"Beach\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:BusStation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A bus station.\",\n              \"name\": \"BusStation\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:BusStop\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A bus stop.\",\n              \"name\": \"BusStop\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Campground\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A campground.\",\n              \"name\": \"Campground\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Cemetery\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A graveyard.\",\n              \"name\": \"Cemetery\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Crematorium\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A crematorium.\",\n              \"name\": \"Crematorium\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:EventVenue\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An event venue.\",\n              \"name\": \"EventVenue\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:FireStation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A fire station. With firemen.\",\n              \"name\": \"FireStation\",\n              \"rdfs:subClassOf\": [\n                \"schema:CivicStructure\",\n                \"schema:EmergencyService\"\n              ]\n            },\n            {\n              \"@id\": \"schema:GovernmentBuilding\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A government building.\",\n              \"name\": \"GovernmentBuilding\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:CityHall\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A city hall.\",\n                  \"name\": \"CityHall\",\n                  \"rdfs:subClassOf\": \"schema:GovernmentBuilding\"\n                },\n                {\n                  \"@id\": \"schema:Courthouse\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A courthouse.\",\n                  \"name\": \"Courthouse\",\n                  \"rdfs:subClassOf\": \"schema:GovernmentBuilding\"\n                },\n                {\n                  \"@id\": \"schema:DefenceEstablishment\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A defence establishment, such as an army or navy base.\",\n                  \"name\": \"DefenceEstablishment\",\n                  \"rdfs:subClassOf\": \"schema:GovernmentBuilding\"\n                },\n                {\n                  \"@id\": \"schema:Embassy\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"An embassy.\",\n                  \"name\": \"Embassy\",\n                  \"rdfs:subClassOf\": \"schema:GovernmentBuilding\"\n                },\n                {\n                  \"@id\": \"schema:LegislativeBuilding\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A legislative building&#x2014;for example, the state capitol.\",\n                  \"name\": \"LegislativeBuilding\",\n                  \"rdfs:subClassOf\": \"schema:GovernmentBuilding\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:Hospital\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A hospital.\",\n              \"name\": \"Hospital\",\n              \"rdfs:subClassOf\": [\n                \"schema:CivicStructure\",\n                \"schema:EmergencyService\",\n                \"schema:MedicalOrganization\"\n              ]\n            },\n            {\n              \"@id\": \"schema:MovieTheater\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A movie theater.\",\n              \"name\": \"MovieTheater\",\n              \"rdfs:subClassOf\": [\n                \"schema:CivicStructure\",\n                \"schema:EntertainmentBusiness\"\n              ]\n            },\n            {\n              \"@id\": \"schema:Museum\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A museum.\",\n              \"name\": \"Museum\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:MusicVenue\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A music venue.\",\n              \"name\": \"MusicVenue\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Park\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A park.\",\n              \"name\": \"Park\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:ParkingFacility\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A parking lot or other parking facility.\",\n              \"name\": \"ParkingFacility\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:PerformingArtsTheater\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A theatre or other performing art center.\",\n              \"name\": \"PerformingArtsTheater\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:PlaceOfWorship\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Place of worship, such as a church, synagogue, or mosque.\",\n              \"name\": \"PlaceOfWorship\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:BuddhistTemple\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A Buddhist temple.\",\n                  \"name\": \"BuddhistTemple\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                },\n                {\n                  \"@id\": \"schema:CatholicChurch\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A Catholic church.\",\n                  \"name\": \"CatholicChurch\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                },\n                {\n                  \"@id\": \"schema:Church\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A church.\",\n                  \"name\": \"Church\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                },\n                {\n                  \"@id\": \"schema:HinduTemple\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A Hindu temple.\",\n                  \"name\": \"HinduTemple\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                },\n                {\n                  \"@id\": \"schema:Mosque\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A mosque.\",\n                  \"name\": \"Mosque\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                },\n                {\n                  \"@id\": \"schema:Synagogue\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A synagogue.\",\n                  \"name\": \"Synagogue\",\n                  \"rdfs:subClassOf\": \"schema:PlaceOfWorship\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:Playground\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A playground.\",\n              \"name\": \"Playground\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:PoliceStation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A police station.\",\n              \"name\": \"PoliceStation\",\n              \"rdfs:subClassOf\": [\n                \"schema:CivicStructure\",\n                \"schema:EmergencyService\"\n              ]\n            },\n            {\n              \"@id\": \"schema:RVPark\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"An RV park.\",\n              \"name\": \"RVPark\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:StadiumOrArena\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A stadium.\",\n              \"name\": \"StadiumOrArena\",\n              \"rdfs:subClassOf\": [\n                \"schema:CivicStructure\",\n                \"schema:SportsActivityLocation\"\n              ]\n            },\n            {\n              \"@id\": \"schema:SubwayStation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A subway station.\",\n              \"name\": \"SubwayStation\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:TaxiStand\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A taxi stand.\",\n              \"name\": \"TaxiStand\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:TrainStation\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A train station.\",\n              \"name\": \"TrainStation\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            },\n            {\n              \"@id\": \"schema:Zoo\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A zoo.\",\n              \"name\": \"Zoo\",\n              \"rdfs:subClassOf\": \"schema:CivicStructure\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Landform\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A landform or physical feature.  Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.\",\n          \"name\": \"Landform\",\n          \"rdfs:subClassOf\": \"schema:Place\",\n          \"children\": [\n            {\n              \"@id\": \"schema:BodyOfWater\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A body of water, such as a sea, ocean, or lake.\",\n              \"name\": \"BodyOfWater\",\n              \"rdfs:subClassOf\": \"schema:Landform\",\n              \"children\": [\n                {\n                  \"@id\": \"schema:Canal\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A canal, like the Panama Canal\",\n                  \"name\": \"Canal\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:LakeBodyOfWater\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A lake (for example, Lake Pontrachain).\",\n                  \"name\": \"LakeBodyOfWater\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:OceanBodyOfWater\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"An ocean (for example, the Pacific).\",\n                  \"name\": \"OceanBodyOfWater\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:Pond\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A pond\",\n                  \"name\": \"Pond\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:Reservoir\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A reservoir, like the Lake Kariba reservoir.\",\n                  \"name\": \"Reservoir\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:RiverBodyOfWater\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A river (for example, the broad majestic Shannon).\",\n                  \"name\": \"RiverBodyOfWater\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:SeaBodyOfWater\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A sea (for example, the Caspian sea).\",\n                  \"name\": \"SeaBodyOfWater\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                },\n                {\n                  \"@id\": \"schema:Waterfall\",\n                  \"@type\": \"rdfs:Class\",\n                  \"description\": \"A waterfall, like Niagara\",\n                  \"name\": \"Waterfall\",\n                  \"rdfs:subClassOf\": \"schema:BodyOfWater\"\n                }\n              ]\n            },\n            {\n              \"@id\": \"schema:Continent\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"One of the continents (for example, Europe or Africa).\",\n              \"name\": \"Continent\",\n              \"rdfs:subClassOf\": \"schema:Landform\"\n            },\n            {\n              \"@id\": \"schema:Mountain\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A mountain, like Mount Whitney or Mount Everest\",\n              \"name\": \"Mountain\",\n              \"rdfs:subClassOf\": \"schema:Landform\"\n            },\n            {\n              \"@id\": \"schema:Volcano\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A volcano, like Fuji san\",\n              \"name\": \"Volcano\",\n              \"rdfs:subClassOf\": \"schema:Landform\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:LandmarksOrHistoricalBuildings\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"An historical landmark or building.\",\n          \"name\": \"LandmarksOrHistoricalBuildings\",\n          \"rdfs:subClassOf\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:LocalBusiness\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.\",\n          \"name\": \"LocalBusiness\",\n          \"rdfs:subClassOf\": [\n            \"schema:Organization\",\n            \"schema:Place\"\n          ],\n          \"children\": [\n            {\n              \"@id\": \"schema:TravelAgency\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"A travel agency.\",\n              \"name\": \"TravelAgency\",\n              \"rdfs:subClassOf\": \"schema:LocalBusiness\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:Residence\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"The place where a person lives.\",\n          \"name\": \"Residence\",\n          \"rdfs:subClassOf\": \"schema:Place\",\n          \"children\": [\n            {\n              \"@id\": \"schema:ApartmentComplex\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Residence type: Apartment complex.\",\n              \"name\": \"ApartmentComplex\",\n              \"rdfs:subClassOf\": \"schema:Residence\"\n            },\n            {\n              \"@id\": \"schema:GatedResidenceCommunity\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Residence type: Gated community.\",\n              \"name\": \"GatedResidenceCommunity\",\n              \"rdfs:subClassOf\": \"schema:Residence\"\n            },\n            {\n              \"@id\": \"schema:SingleFamilyResidence\",\n              \"@type\": \"rdfs:Class\",\n              \"description\": \"Residence type: Single-family home.\",\n              \"name\": \"SingleFamilyResidence\",\n              \"rdfs:subClassOf\": \"schema:Residence\"\n            }\n          ]\n        },\n        {\n          \"@id\": \"schema:TouristAttraction\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A tourist attraction.\",\n          \"name\": \"TouristAttraction\",\n          \"rdfs:subClassOf\": \"schema:Place\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Product\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"A product is anything that is made available for sale—for example, a pair of shoes, a concert ticket, or a car. Commodity services, like haircuts, can also be represented using this type.\",\n      \"http://purl.org/dc/terms/source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\"\n      },\n      \"name\": \"Product\",\n      \"rdfs:subClassOf\": \"schema:Thing\",\n      \"children\": [\n        {\n          \"@id\": \"schema:IndividualProduct\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A single, identifiable product instance (e.g. a laptop with a particular serial number).\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n          },\n          \"name\": \"IndividualProduct\",\n          \"rdfs:subClassOf\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:ProductModel\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A datasheet or vendor specification of a product (in the sense of a prototypical description).\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n          },\n          \"name\": \"ProductModel\",\n          \"rdfs:subClassOf\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:SomeProducts\",\n          \"@type\": \"rdfs:Class\",\n          \"description\": \"A placeholder for multiple similar products of the same kind.\",\n          \"http://purl.org/dc/terms/source\": {\n            \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n          },\n          \"name\": \"SomeProducts\",\n          \"rdfs:subClassOf\": \"schema:Product\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Property\",\n      \"@type\": \"rdfs:Class\",\n      \"description\": \"A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.\",\n      \"name\": \"Property\",\n      \"rdfs:subClassOf\": \"schema:Thing\"\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/schema-xform.rb",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\nrequire 'rdf/rdfa'\nrequire 'json/ld'\n\ntype_exclusion = %w(\nFinancialService\nProfessionalService\nEntertainmentBusiness\nAnimalShelter\nAutomotiveBusiness\nStore\nFoodEstablishment\nHealthAndBeautyBusiness\nLodgingBusiness\nSportsActivityLocation\nChildCare\nMedicalOrganization\nDryCleaningOrLaundry\nHomeAndConstructionBusiness\nEmergencyService\nEmploymentAgency\nGovernmentOffice\nInternetCafe\nLibrary\nRadioStation\nRealEstateAgent\nRecyclingCenter\nSelfStorage\nShoppingCenter\nTelevisionStation\nTouristInformationCenter\n)\n\ncontext = JSON.parse(File.read(File.expand_path(\"../schema-context.jsonld\", __FILE__)))['@context']\nobject_map = {}\n\n# Extract IDs\nARGV.each do |infile|\n  outfile = infile.sub('.html', '.jsonld')\n  puts outfile\n  RDF::Repository.load(infile) do |repo|\n    JSON::LD::API.fromRdf(repo) do |expanded|\n      JSON::LD::API.compact(expanded, context) do |compacted|\n        compacted['@graph'].each do |obj|\n          next if type_exclusion.include?(obj['name'])\n          object_map[obj['@id']] = obj if obj['@type'] == \"rdfs:Class\"\n        end\n      end\n    end\n  end\n\n  thing = object_map['schema:Thing']\n\n  # Build type heirarchy\n  object_map.each do |id, obj|\n    Array(obj['rdfs:subClassOf']).each do |super_class|\n      so = object_map[super_class]\n      next if so.nil?\n      raise \"super class not found: #{super_class}\" if so.nil?\n      (so['children'] ||= []) << obj\n    end\n  end\n\n  context = context.merge({\"children\" => {\"@reverse\" => \"rdfs:subClassOf\"}})\n  context = {\"@context\" => context}\n  File.open(outfile, 'w') do |f|\n    f.puts context.merge(thing).to_json(JSON::LD::JSON_STATE)\n  end\nend"
  },
  {
    "path": "example-files/schema.org.jsonld",
    "content": "{\n  \"@context\": {\n    \"cc\": \"http://creativecommons.org/ns#\",\n    \"ctag\": \"http://commontag.org/ns#\",\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"dc11\": \"http://purl.org/dc/elements/1.1/\",\n    \"dcterms\": \"dc\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"gr\": \"http://purl.org/goodrelations/v1#\",\n    \"grddl\": \"http://www.w3.org/2003/g/data-view#\",\n    \"ical\": \"http://www.w3.org/2002/12/cal/icaltzd#\",\n    \"ma\": \"http://www.w3.org/ns/ma-ont#\",\n    \"og\": \"http://ogp.me/ns#\",\n    \"owl\": \"http://www.w3.org/2002/07/owl#\",\n    \"prov\": \"http://www.w3.org/ns/prov#\",\n    \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n    \"rdfa\": \"http://www.w3.org/ns/rdfa#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"rev\": \"http://purl.org/stuff/rev#\",\n    \"rif\": \"http://www.w3.org/2007/rif#\",\n    \"rr\": \"http://www.w3.org/ns/r2rml#\",\n    \"schema\": \"http://schema.org/\",\n    \"sd\": \"http://www.w3.org/ns/sparql-service-description#\",\n    \"sioc\": \"http://rdfs.org/sioc/ns#\",\n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\",\n    \"skosxl\": \"http://www.w3.org/2008/05/skos-xl#\",\n    \"v\": \"http://rdf.data-vocabulary.org/#\",\n    \"vcard\": \"http://www.w3.org/2006/vcard/ns#\",\n    \"void\": \"http://rdfs.org/ns/void#\",\n    \"wdr\": \"http://www.w3.org/2007/05/powder#\",\n    \"wdrs\": \"http://www.w3.org/2007/05/powder-s#\",\n    \"xhv\": \"http://www.w3.org/1999/xhtml/vocab#\",\n    \"xml\": \"http://www.w3.org/XML/1998/namespace\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\"\n  },\n  \"@graph\": [\n    {\n      \"@id\": \"schema:APIReference\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Reference documentation for application programming interfaces (APIs).\",\n      \"rdfs:label\": \"APIReference\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:TechArticle\"\n      }\n    },\n    {\n      \"@id\": \"schema:Abdomen\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Abdomen\",\n      \"rdfs:label\": \"Abdomen\"\n    },\n    {\n      \"@id\": \"schema:AboutPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: About page.\",\n      \"rdfs:label\": \"AboutPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:AccountingService\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Accountancy business.\",\n      \"rdfs:label\": \"AccountingService\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:FinancialService\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:ActiveNotRecruiting\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Active, but not recruiting new participants.\",\n      \"rdfs:label\": \"ActiveNotRecruiting\"\n    },\n    {\n      \"@id\": \"schema:AdministrativeArea\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A geographical region under the jurisdiction of a particular government.\",\n      \"rdfs:label\": \"AdministrativeArea\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:AdultEntertainment\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An adult entertainment establishment.\",\n      \"rdfs:label\": \"AdultEntertainment\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AerobicActivity\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.\",\n      \"rdfs:label\": \"AerobicActivity\"\n    },\n    {\n      \"@id\": \"schema:AggregateOffer\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"When a single product that has different offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.\",\n      \"rdfs:label\": \"AggregateOffer\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Offer\"\n      }\n    },\n    {\n      \"@id\": \"schema:AggregateRating\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The average rating based on multiple ratings or reviews.\",\n      \"rdfs:label\": \"AggregateRating\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Rating\"\n      }\n    },\n    {\n      \"@id\": \"schema:Airport\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An airport.\",\n      \"rdfs:label\": \"Airport\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:AlignmentObject\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\"\n      },\n      \"rdfs:comment\": \"An intangible item that describes an alignment between a learning resource and a node in an educational framework.\",\n      \"rdfs:label\": \"AlignmentObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:AmusementPark\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An amusement park.\",\n      \"rdfs:label\": \"AmusementPark\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AnaerobicActivity\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.\",\n      \"rdfs:label\": \"AnaerobicActivity\"\n    },\n    {\n      \"@id\": \"schema:AnatomicalStructure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.\",\n      \"rdfs:label\": \"AnatomicalStructure\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:AnatomicalSystem\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.\",\n      \"rdfs:label\": \"AnatomicalSystem\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:Anesthesia\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to study of anesthetics and their application.\",\n      \"rdfs:label\": \"Anesthesia\"\n    },\n    {\n      \"@id\": \"schema:AnimalShelter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Animal shelter.\",\n      \"rdfs:label\": \"AnimalShelter\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ApartmentComplex\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Residence type: Apartment complex.\",\n      \"rdfs:label\": \"ApartmentComplex\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Residence\"\n      }\n    },\n    {\n      \"@id\": \"schema:Appearance\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Appearance\",\n      \"rdfs:label\": \"Appearance\"\n    },\n    {\n      \"@id\": \"schema:ApprovedIndication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.\",\n      \"rdfs:label\": \"ApprovedIndication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIndication\"\n      }\n    },\n    {\n      \"@id\": \"schema:Aquarium\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Aquarium.\",\n      \"rdfs:label\": \"Aquarium\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:ArtGallery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An art gallery.\",\n      \"rdfs:label\": \"ArtGallery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Artery\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A type of blood vessel that specifically carries blood away from the heart.\",\n      \"rdfs:label\": \"Artery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:Article\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.\",\n      \"rdfs:label\": \"Article\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:Attorney\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Professional service: Attorney.\",\n      \"rdfs:label\": \"Attorney\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:ProfessionalService\"\n      }\n    },\n    {\n      \"@id\": \"schema:Audience\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Intended audience for an item, i.e. the group for whom the item was created.\",\n      \"rdfs:label\": \"Audience\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:AudioObject\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"An audio file.\",\n      \"rdfs:label\": \"AudioObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutoBodyShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Auto body shop.\",\n      \"rdfs:label\": \"AutoBodyShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutoDealer\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An car dealership.\",\n      \"rdfs:label\": \"AutoDealer\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutoPartsStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An auto parts store.\",\n      \"rdfs:label\": \"AutoPartsStore\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:AutomotiveBusiness\"\n        },\n        {\n          \"@id\": \"schema:Store\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:AutoRental\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A car rental business.\",\n      \"rdfs:label\": \"AutoRental\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutoRepair\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Car repair business.\",\n      \"rdfs:label\": \"AutoRepair\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutoWash\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A car wash business.\",\n      \"rdfs:label\": \"AutoWash\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutomatedTeller\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"ATM/cash machine.\",\n      \"rdfs:label\": \"AutomatedTeller\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FinancialService\"\n      }\n    },\n    {\n      \"@id\": \"schema:AutomotiveBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Car repair, sales, or parts.\",\n      \"rdfs:label\": \"AutomotiveBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Ayurvedic\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.\",\n      \"rdfs:label\": \"Ayurvedic\"\n    },\n    {\n      \"@id\": \"schema:Bacteria\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"Pathogenic bacteria that cause bacterial infection.\",\n      \"rdfs:label\": \"Bacteria\"\n    },\n    {\n      \"@id\": \"schema:Bakery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bakery.\",\n      \"rdfs:label\": \"Bakery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:Balance\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Physical activity that is engaged to help maintain posture and balance.\",\n      \"rdfs:label\": \"Balance\"\n    },\n    {\n      \"@id\": \"schema:BankOrCreditUnion\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Bank or credit union.\",\n      \"rdfs:label\": \"BankOrCreditUnion\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FinancialService\"\n      }\n    },\n    {\n      \"@id\": \"schema:BarOrPub\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bar or pub.\",\n      \"rdfs:label\": \"BarOrPub\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:Beach\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Beach.\",\n      \"rdfs:label\": \"Beach\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:BeautySalon\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Beauty salon.\",\n      \"rdfs:label\": \"BeautySalon\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HealthAndBeautyBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:BedAndBreakfast\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Bed and breakfast.\",\n      \"rdfs:label\": \"BedAndBreakfast\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LodgingBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:BikeStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bike store.\",\n      \"rdfs:label\": \"BikeStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Blog\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A blog\",\n      \"rdfs:label\": \"Blog\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:BlogPosting\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A blog post.\",\n      \"rdfs:label\": \"BlogPosting\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Article\"\n      }\n    },\n    {\n      \"@id\": \"schema:BloodTest\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical test performed on a sample of a patient's blood.\",\n      \"rdfs:label\": \"BloodTest\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:BodyOfWater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A body of water, such as a sea, ocean, or lake.\",\n      \"rdfs:label\": \"BodyOfWater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Landform\"\n      }\n    },\n    {\n      \"@id\": \"schema:Bone\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Rigid connective tissue that comprises up the skeletal structure of the human body.\",\n      \"rdfs:label\": \"Bone\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Book\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A book.\",\n      \"rdfs:label\": \"Book\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:BookFormatType\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The publication format of the book.\",\n      \"rdfs:label\": \"BookFormatType\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:BookStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bookstore.\",\n      \"rdfs:label\": \"BookStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Boolean\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Boolean: True or False.\",\n      \"rdfs:label\": \"Boolean\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:BowlingAlley\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bowling alley.\",\n      \"rdfs:label\": \"BowlingAlley\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:BrainStructure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.\",\n      \"rdfs:label\": \"BrainStructure\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Brand\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A brand is a name used by an organization or business person for labeling a product, product group, or similar.\",\n      \"rdfs:label\": \"Brand\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:Brewery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Brewery.\",\n      \"rdfs:label\": \"Brewery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:BuddhistTemple\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A Buddhist temple.\",\n      \"rdfs:label\": \"BuddhistTemple\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:BusStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bus station.\",\n      \"rdfs:label\": \"BusStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:BusStop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A bus stop.\",\n      \"rdfs:label\": \"BusStop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:BusinessEntityType\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Business\\n    http://purl.org/goodrelations/v1#Enduser\\n    http://purl.org/goodrelations/v1#PublicInstitution\\n    http://purl.org/goodrelations/v1#Reseller\\n\\n    \\t\\t\",\n      \"rdfs:label\": \"BusinessEntityType\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:BusinessEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Business event.\",\n      \"rdfs:label\": \"BusinessEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:BusinessFunction\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#ConstructionInstallation\\n    http://purl.org/goodrelations/v1#Dispose\\n    http://purl.org/goodrelations/v1#LeaseOut\\n    http://purl.org/goodrelations/v1#Maintain\\n    http://purl.org/goodrelations/v1#ProvideService\\n    http://purl.org/goodrelations/v1#Repair\\n    http://purl.org/goodrelations/v1#Sell\\n    http://purl.org/goodrelations/v1#Buy\\n    \\t\\t\",\n      \"rdfs:label\": \"BusinessFunction\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:CT\",\n      \"@type\": \"schema:MedicalImagingTechnique\",\n      \"rdfs:comment\": \"X-ray computed tomography imaging.\",\n      \"rdfs:label\": \"CT\"\n    },\n    {\n      \"@id\": \"schema:CafeOrCoffeeShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A cafe or coffee shop.\",\n      \"rdfs:label\": \"CafeOrCoffeeShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:Campground\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A campground.\",\n      \"rdfs:label\": \"Campground\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Canal\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A canal, like the Panama Canal\",\n      \"rdfs:label\": \"Canal\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:Cardiovascular\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.\",\n      \"rdfs:label\": \"Cardiovascular\"\n    },\n    {\n      \"@id\": \"schema:CardiovascularExam\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Cardiovascular\",\n      \"rdfs:label\": \"CardiovascularExam\"\n    },\n    {\n      \"@id\": \"schema:CaseSeries\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.\",\n      \"rdfs:label\": \"CaseSeries\"\n    },\n    {\n      \"@id\": \"schema:Casino\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A casino.\",\n      \"rdfs:label\": \"Casino\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:CatholicChurch\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A Catholic church.\",\n      \"rdfs:label\": \"CatholicChurch\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:Cemetery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A graveyard.\",\n      \"rdfs:label\": \"Cemetery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:CheckoutPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Checkout page.\",\n      \"rdfs:label\": \"CheckoutPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:ChildCare\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A Childcare center.\",\n      \"rdfs:label\": \"ChildCare\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ChildrensEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Children's event.\",\n      \"rdfs:label\": \"ChildrensEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:Chiropractic\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.\",\n      \"rdfs:label\": \"Chiropractic\"\n    },\n    {\n      \"@id\": \"schema:Church\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A church.\",\n      \"rdfs:label\": \"Church\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:City\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A city or town.\",\n      \"rdfs:label\": \"City\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:CityHall\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A city hall.\",\n      \"rdfs:label\": \"CityHall\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentBuilding\"\n      }\n    },\n    {\n      \"@id\": \"schema:CivicStructure\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A public structure, such as a town hall or concert hall.\",\n      \"rdfs:label\": \"CivicStructure\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:Class\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A class, also often called a 'Type'; equivalent to rdfs:Class.\",\n      \"rdfs:label\": \"Class\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:Clinician\",\n      \"@type\": \"schema:MedicalAudience\",\n      \"rdfs:comment\": \"Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.\",\n      \"rdfs:label\": \"Clinician\"\n    },\n    {\n      \"@id\": \"schema:ClothingStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A clothing store.\",\n      \"rdfs:label\": \"ClothingStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Code\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.\",\n      \"rdfs:label\": \"Code\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:CohortStudy\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study.  A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.\",\n      \"rdfs:label\": \"CohortStudy\"\n    },\n    {\n      \"@id\": \"schema:CollectionPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Collection page.\",\n      \"rdfs:label\": \"CollectionPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:CollegeOrUniversity\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A college, university, or other third-level educational institution.\",\n      \"rdfs:label\": \"CollegeOrUniversity\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:ComedyClub\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A comedy club.\",\n      \"rdfs:label\": \"ComedyClub\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ComedyEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Comedy event.\",\n      \"rdfs:label\": \"ComedyEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:Comment\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A comment on an item - for example, a comment on a blog post. The comment's content is expressed via the \\\"text\\\" property, and its topic via \\\"about\\\", properties shared with all CreativeWorks.\",\n      \"rdfs:label\": \"Comment\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:CommunityHealth\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Community health.\",\n      \"rdfs:label\": \"CommunityHealth\"\n    },\n    {\n      \"@id\": \"schema:Completed\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Completed.\",\n      \"rdfs:label\": \"Completed\"\n    },\n    {\n      \"@id\": \"schema:ComputerStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A computer store.\",\n      \"rdfs:label\": \"ComputerStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:ContactPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Contact page.\",\n      \"rdfs:label\": \"ContactPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:ContactPoint\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A contact point&#x2014;for example, a Customer Complaints department.\",\n      \"rdfs:label\": \"ContactPoint\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:Continent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"One of the continents (for example, Europe or Africa).\",\n      \"rdfs:label\": \"Continent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Landform\"\n      }\n    },\n    {\n      \"@id\": \"schema:ConvenienceStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A convenience store.\",\n      \"rdfs:label\": \"ConvenienceStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Corporation\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"Organization: A business corporation.\",\n      \"rdfs:label\": \"Corporation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Country\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A country.\",\n      \"rdfs:label\": \"Country\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:Courthouse\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A courthouse.\",\n      \"rdfs:label\": \"Courthouse\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentBuilding\"\n      }\n    },\n    {\n      \"@id\": \"schema:CreativeWork\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"The most generic kind of creative work, including books, movies, photographs, software programs, etc.\",\n      \"rdfs:label\": \"CreativeWork\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:CreditCard\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#AmericanExpress\\n    http://purl.org/goodrelations/v1#DinersClub\\n    http://purl.org/goodrelations/v1#Discover\\n    http://purl.org/goodrelations/v1#JCB\\n    http://purl.org/goodrelations/v1#MasterCard\\n    http://purl.org/goodrelations/v1#VISA\\n    \\t\\t\",\n      \"rdfs:label\": \"CreditCard\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PaymentMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:Crematorium\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A crematorium.\",\n      \"rdfs:label\": \"Crematorium\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:CrossSectional\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.\",\n      \"rdfs:label\": \"CrossSectional\"\n    },\n    {\n      \"@id\": \"schema:DDxElement\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.\",\n      \"rdfs:label\": \"DDxElement\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:DamagedCondition\",\n      \"@type\": \"schema:OfferItemCondition\",\n      \"rdfs:comment\": \"Indicates that the item for sale is damaged.\",\n      \"rdfs:label\": \"DamagedCondition\"\n    },\n    {\n      \"@id\": \"schema:DanceEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: A social dance.\",\n      \"rdfs:label\": \"DanceEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:DanceGroup\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A dance group&#x2014;for example, the Alvin Ailey Dance Theater or Riverdance.\",\n      \"rdfs:label\": \"DanceGroup\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PerformingGroup\"\n      }\n    },\n    {\n      \"@id\": \"schema:DataCatalog\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n      },\n      \"rdfs:comment\": \"A collection of datasets.\",\n      \"rdfs:label\": \"DataCatalog\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:DataDownload\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n      },\n      \"rdfs:comment\": \"A dataset in downloadable form.\",\n      \"rdfs:label\": \"DataDownload\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:DataType\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The basic data types such as Integers, Strings, etc.\",\n      \"rdfs:label\": \"DataType\"\n    },\n    {\n      \"@id\": \"schema:Dataset\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\"\n      },\n      \"rdfs:comment\": \"A body of structured information describing some topic(s) of interest.\",\n      \"rdfs:label\": \"Dataset\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:Date\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A date value in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.\",\n      \"rdfs:label\": \"Date\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:DateTime\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).\",\n      \"rdfs:label\": \"DateTime\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:DayOfWeek\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Monday\\n    http://purl.org/goodrelations/v1#Tuesday\\n    http://purl.org/goodrelations/v1#Wednesday\\n    http://purl.org/goodrelations/v1#Thursday\\n    http://purl.org/goodrelations/v1#Friday\\n    http://purl.org/goodrelations/v1#Saturday\\n    http://purl.org/goodrelations/v1#Sunday\\n    http://purl.org/goodrelations/v1#PublicHolidays\\n    \\t\\t\",\n      \"rdfs:label\": \"DayOfWeek\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:DaySpa\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A day spa.\",\n      \"rdfs:label\": \"DaySpa\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HealthAndBeautyBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:DefenceEstablishment\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A defence establishment, such as an army or navy base.\",\n      \"rdfs:label\": \"DefenceEstablishment\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentBuilding\"\n      }\n    },\n    {\n      \"@id\": \"schema:DeliveryChargeSpecification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"The price for the delivery of an offer using a particular delivery method.\",\n      \"rdfs:label\": \"DeliveryChargeSpecification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PriceSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:DeliveryMethod\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\\n    http://purl.org/goodrelations/v1#DeliveryModeFreight\\n    http://purl.org/goodrelations/v1#DeliveryModeMail\\n    http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\\n    http://purl.org/goodrelations/v1#DeliveryModePickUp\\n    http://purl.org/goodrelations/v1#DHL\\n    http://purl.org/goodrelations/v1#FederalExpress\\n    http://purl.org/goodrelations/v1#UPS\\n    \\t\\t\",\n      \"rdfs:label\": \"DeliveryMethod\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:Demand\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.\",\n      \"rdfs:label\": \"Demand\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:Dentist\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A dentist.\",\n      \"rdfs:label\": \"Dentist\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:MedicalOrganization\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Dentistry\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Dentistry.\",\n      \"rdfs:label\": \"Dentistry\"\n    },\n    {\n      \"@id\": \"schema:DepartmentStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A department store.\",\n      \"rdfs:label\": \"DepartmentStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Dermatologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.\",\n      \"rdfs:label\": \"Dermatologic\"\n    },\n    {\n      \"@id\": \"schema:Diagnostic\",\n      \"@type\": \"schema:MedicalDevicePurpose\",\n      \"rdfs:comment\": \"A medical device used for diagnostic purposes.\",\n      \"rdfs:label\": \"Diagnostic\"\n    },\n    {\n      \"@id\": \"schema:DiagnosticLab\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A medical laboratory that offers on-site or off-site diagnostic services.\",\n      \"rdfs:label\": \"DiagnosticLab\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:DiagnosticProcedure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical procedure intended primarly for diagnostic, as opposed to therapeutic, purposes.\",\n      \"rdfs:label\": \"DiagnosticProcedure\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:MedicalProcedure\"\n        },\n        {\n          \"@id\": \"schema:MedicalTest\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Diet\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.\",\n      \"rdfs:label\": \"Diet\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:LifestyleModification\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:DietNutrition\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Diet and nutrition.\",\n      \"rdfs:label\": \"DietNutrition\"\n    },\n    {\n      \"@id\": \"schema:DietarySupplement\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.\",\n      \"rdfs:label\": \"DietarySupplement\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:Discontinued\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale has been discontinued.\",\n      \"rdfs:label\": \"Discontinued\"\n    },\n    {\n      \"@id\": \"schema:Distance\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Properties that take Distances as values are of the form '&lt;Number&gt; &lt;Length unit of measure&gt;'. E.g., '7 ft'\",\n      \"rdfs:label\": \"Distance\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Quantity\"\n      }\n    },\n    {\n      \"@id\": \"schema:DoseSchedule\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A specific dosing schedule for a drug or supplement.\",\n      \"rdfs:label\": \"DoseSchedule\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:DoubleBlindedTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.\",\n      \"rdfs:label\": \"DoubleBlindedTrial\"\n    },\n    {\n      \"@id\": \"schema:Drug\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.\",\n      \"rdfs:label\": \"Drug\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugClass\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.\",\n      \"rdfs:label\": \"DrugClass\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugCost\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema's markup.\",\n      \"rdfs:label\": \"DrugCost\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugCostCategory\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Enumerated categories of medical drug costs.\",\n      \"rdfs:label\": \"DrugCostCategory\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugLegalStatus\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"The legal availability status of a medical drug.\",\n      \"rdfs:label\": \"DrugLegalStatus\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugPregnancyCategory\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.\",\n      \"rdfs:label\": \"DrugPregnancyCategory\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugPrescriptionStatus\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Indicates whether this drug is available by prescription or over-the-counter.\",\n      \"rdfs:label\": \"DrugPrescriptionStatus\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:DrugStrength\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A specific strength in which a medical drug is available in a specific country.\",\n      \"rdfs:label\": \"DrugStrength\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:DryCleaningOrLaundry\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A dry-cleaning business.\",\n      \"rdfs:label\": \"DryCleaningOrLaundry\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Duration\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Quantity: Duration (use  <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>).\",\n      \"rdfs:label\": \"Duration\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Quantity\"\n      }\n    },\n    {\n      \"@id\": \"schema:EBook\",\n      \"@type\": \"schema:BookFormatType\",\n      \"rdfs:comment\": \"Book format: Ebook.\",\n      \"rdfs:label\": \"EBook\"\n    },\n    {\n      \"@id\": \"schema:Ear\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Ear\",\n      \"rdfs:label\": \"Ear\"\n    },\n    {\n      \"@id\": \"schema:EducationEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Education event.\",\n      \"rdfs:label\": \"EducationEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:EducationalAudience\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\"\n      },\n      \"rdfs:comment\": \"An EducationalAudience\",\n      \"rdfs:label\": \"EducationalAudience\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Audience\"\n      }\n    },\n    {\n      \"@id\": \"schema:EducationalOrganization\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An educational organization.\",\n      \"rdfs:label\": \"EducationalOrganization\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Electrician\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An electrician.\",\n      \"rdfs:label\": \"Electrician\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:ElectronicsStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An electronics store.\",\n      \"rdfs:label\": \"ElectronicsStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:ElementarySchool\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An elementary school.\",\n      \"rdfs:label\": \"ElementarySchool\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Embassy\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An embassy.\",\n      \"rdfs:label\": \"Embassy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentBuilding\"\n      }\n    },\n    {\n      \"@id\": \"schema:Emergency\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.\",\n      \"rdfs:label\": \"Emergency\"\n    },\n    {\n      \"@id\": \"schema:EmergencyService\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An emergency service, such as a fire station or ER.\",\n      \"rdfs:label\": \"EmergencyService\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:EmploymentAgency\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An employment agency.\",\n      \"rdfs:label\": \"EmploymentAgency\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Endocrine\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.\",\n      \"rdfs:label\": \"Endocrine\"\n    },\n    {\n      \"@id\": \"schema:Energy\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Properties that take Enerygy as values are of the form '&lt;Number&gt; &lt;Energy unit of measure&gt;'\",\n      \"rdfs:label\": \"Energy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Quantity\"\n      }\n    },\n    {\n      \"@id\": \"schema:EnrollingByInvitation\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Enrolling participants by invitation only.\",\n      \"rdfs:label\": \"EnrollingByInvitation\"\n    },\n    {\n      \"@id\": \"schema:EntertainmentBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A business providing entertainment.\",\n      \"rdfs:label\": \"EntertainmentBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Enumeration\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Lists or enumerations&#x2014;for example, a list of cuisines or music genres, etc.\",\n      \"rdfs:label\": \"Enumeration\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:Event\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An event happening at a certain time at a certain location.\",\n      \"rdfs:label\": \"Event\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:EventVenue\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An event venue.\",\n      \"rdfs:label\": \"EventVenue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:EvidenceLevelA\",\n      \"@type\": \"schema:MedicalEvidenceLevel\",\n      \"rdfs:comment\": \"Data derived from multiple randomized clinical trials or meta-analyses.\",\n      \"rdfs:label\": \"EvidenceLevelA\"\n    },\n    {\n      \"@id\": \"schema:EvidenceLevelB\",\n      \"@type\": \"schema:MedicalEvidenceLevel\",\n      \"rdfs:comment\": \"Data derived from a single randomized trial, or nonrandomized studies.\",\n      \"rdfs:label\": \"EvidenceLevelB\"\n    },\n    {\n      \"@id\": \"schema:EvidenceLevelC\",\n      \"@type\": \"schema:MedicalEvidenceLevel\",\n      \"rdfs:comment\": \"Only consensus opinion of experts, case studies, or standard-of-care.\",\n      \"rdfs:label\": \"EvidenceLevelC\"\n    },\n    {\n      \"@id\": \"schema:ExerciseGym\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A gym.\",\n      \"rdfs:label\": \"ExerciseGym\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:ExercisePlan\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.\",\n      \"rdfs:label\": \"ExercisePlan\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:PhysicalActivity\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Eye\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Eye\",\n      \"rdfs:label\": \"Eye\"\n    },\n    {\n      \"@id\": \"schema:FDAcategoryA\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).\",\n      \"rdfs:label\": \"FDAcategoryA\"\n    },\n    {\n      \"@id\": \"schema:FDAcategoryB\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.\",\n      \"rdfs:label\": \"FDAcategoryB\"\n    },\n    {\n      \"@id\": \"schema:FDAcategoryC\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.\",\n      \"rdfs:label\": \"FDAcategoryC\"\n    },\n    {\n      \"@id\": \"schema:FDAcategoryD\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.\",\n      \"rdfs:label\": \"FDAcategoryD\"\n    },\n    {\n      \"@id\": \"schema:FDAcategoryX\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.\",\n      \"rdfs:label\": \"FDAcategoryX\"\n    },\n    {\n      \"@id\": \"schema:FDAnotEvaluated\",\n      \"@type\": \"schema:DrugPregnancyCategory\",\n      \"rdfs:comment\": \"A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.\",\n      \"rdfs:label\": \"FDAnotEvaluated\"\n    },\n    {\n      \"@id\": \"schema:False\",\n      \"@type\": \"schema:Boolean\",\n      \"rdfs:comment\": \"The boolean value false\",\n      \"rdfs:label\": \"False\"\n    },\n    {\n      \"@id\": \"schema:FastFoodRestaurant\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A fast-food restaurant.\",\n      \"rdfs:label\": \"FastFoodRestaurant\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:Festival\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Festival.\",\n      \"rdfs:label\": \"Festival\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:FinancialService\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Financial services business.\",\n      \"rdfs:label\": \"FinancialService\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:FireStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A fire station. With firemen.\",\n      \"rdfs:label\": \"FireStation\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CivicStructure\"\n        },\n        {\n          \"@id\": \"schema:EmergencyService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Flexibility\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Physical activity that is engaged in to improve joint and muscle flexibility.\",\n      \"rdfs:label\": \"Flexibility\"\n    },\n    {\n      \"@id\": \"schema:Float\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Data type: Floating number.\",\n      \"rdfs:label\": \"Float\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:Florist\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A florist.\",\n      \"rdfs:label\": \"Florist\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:FoodEstablishment\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A food-related business.\",\n      \"rdfs:label\": \"FoodEstablishment\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:FoodEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Food event.\",\n      \"rdfs:label\": \"FoodEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:Fungus\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"Pathogenic fungus.\",\n      \"rdfs:label\": \"Fungus\"\n    },\n    {\n      \"@id\": \"schema:FurnitureStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A furniture store.\",\n      \"rdfs:label\": \"FurnitureStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:GardenStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A garden store.\",\n      \"rdfs:label\": \"GardenStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:GasStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A gas station.\",\n      \"rdfs:label\": \"GasStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Gastroenterologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.\",\n      \"rdfs:label\": \"Gastroenterologic\"\n    },\n    {\n      \"@id\": \"schema:GatedResidenceCommunity\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Residence type: Gated community.\",\n      \"rdfs:label\": \"GatedResidenceCommunity\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Residence\"\n      }\n    },\n    {\n      \"@id\": \"schema:GeneralContractor\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A general contractor.\",\n      \"rdfs:label\": \"GeneralContractor\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Genetic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.\",\n      \"rdfs:label\": \"Genetic\"\n    },\n    {\n      \"@id\": \"schema:Genitourinary\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Genitourinary\",\n      \"rdfs:label\": \"Genitourinary\"\n    },\n    {\n      \"@id\": \"schema:GeoCoordinates\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The geographic coordinates of a place or event.\",\n      \"rdfs:label\": \"GeoCoordinates\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:GeoShape\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"The geographic shape of a place.\",\n      \"rdfs:label\": \"GeoShape\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:Geriatric\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.\",\n      \"rdfs:label\": \"Geriatric\"\n    },\n    {\n      \"@id\": \"schema:GolfCourse\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A golf course.\",\n      \"rdfs:label\": \"GolfCourse\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:GovernmentBuilding\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A government building.\",\n      \"rdfs:label\": \"GovernmentBuilding\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:GovernmentOffice\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A government office&#x2014;for example, an IRS or DMV office.\",\n      \"rdfs:label\": \"GovernmentOffice\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:GovernmentOrganization\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A governmental organization or agency.\",\n      \"rdfs:label\": \"GovernmentOrganization\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:GroceryStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A grocery store.\",\n      \"rdfs:label\": \"GroceryStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Gynecologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.\",\n      \"rdfs:label\": \"Gynecologic\"\n    },\n    {\n      \"@id\": \"schema:HVACBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An HVAC service.\",\n      \"rdfs:label\": \"HVACBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HomeAndConstructionBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:HairSalon\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hair salon.\",\n      \"rdfs:label\": \"HairSalon\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HealthAndBeautyBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Hardcover\",\n      \"@type\": \"schema:BookFormatType\",\n      \"rdfs:comment\": \"Book format: Hardcover.\",\n      \"rdfs:label\": \"Hardcover\"\n    },\n    {\n      \"@id\": \"schema:HardwareStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hardware store.\",\n      \"rdfs:label\": \"HardwareStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Head\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Head\",\n      \"rdfs:label\": \"Head\"\n    },\n    {\n      \"@id\": \"schema:HealthAndBeautyBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Health and beauty.\",\n      \"rdfs:label\": \"HealthAndBeautyBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:HealthClub\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A health club.\",\n      \"rdfs:label\": \"HealthClub\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HealthAndBeautyBusiness\"\n        },\n        {\n          \"@id\": \"schema:SportsActivityLocation\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Hematologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.\",\n      \"rdfs:label\": \"Hematologic\"\n    },\n    {\n      \"@id\": \"schema:HighSchool\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A high school.\",\n      \"rdfs:label\": \"HighSchool\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:HinduTemple\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A Hindu temple.\",\n      \"rdfs:label\": \"HinduTemple\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:HobbyShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hobby store.\",\n      \"rdfs:label\": \"HobbyShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:HomeAndConstructionBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A construction business.\",\n      \"rdfs:label\": \"HomeAndConstructionBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:HomeGoodsStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A home goods store.\",\n      \"rdfs:label\": \"HomeGoodsStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Homeopathic\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.\",\n      \"rdfs:label\": \"Homeopathic\"\n    },\n    {\n      \"@id\": \"schema:Hospital\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hospital.\",\n      \"rdfs:label\": \"Hospital\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CivicStructure\"\n        },\n        {\n          \"@id\": \"schema:EmergencyService\"\n        },\n        {\n          \"@id\": \"schema:MedicalOrganization\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Hostel\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hostel.\",\n      \"rdfs:label\": \"Hostel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LodgingBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Hotel\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A hotel.\",\n      \"rdfs:label\": \"Hotel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LodgingBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:HousePainter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A house painting service.\",\n      \"rdfs:label\": \"HousePainter\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:IceCreamShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An ice cream shop\",\n      \"rdfs:label\": \"IceCreamShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:ImageGallery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Image gallery page.\",\n      \"rdfs:label\": \"ImageGallery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CollectionPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:ImageObject\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An image file.\",\n      \"rdfs:label\": \"ImageObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:ImagingTest\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any medical imaging modality typically used for diagnostic purposes.\",\n      \"rdfs:label\": \"ImagingTest\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:InStock\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale is in stock.\",\n      \"rdfs:label\": \"InStock\"\n    },\n    {\n      \"@id\": \"schema:InStoreOnly\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale is available only in brick-and-mortar stores.\",\n      \"rdfs:label\": \"InStoreOnly\"\n    },\n    {\n      \"@id\": \"schema:IndividualProduct\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A single, identifiable product instance (e.g. a laptop with a particular serial number).\",\n      \"rdfs:label\": \"IndividualProduct\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:Infectious\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of bacterial, viral, fungal and parasitic infections.\",\n      \"rdfs:label\": \"Infectious\"\n    },\n    {\n      \"@id\": \"schema:InfectiousAgentClass\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Classes of agents or pathogens that transmit infectious diseases. Enumerated type.\",\n      \"rdfs:label\": \"InfectiousAgentClass\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:InfectiousDisease\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.\",\n      \"rdfs:label\": \"InfectiousDisease\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:InsuranceAgency\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Insurance agency.\",\n      \"rdfs:label\": \"InsuranceAgency\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FinancialService\"\n      }\n    },\n    {\n      \"@id\": \"schema:Intangible\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.\",\n      \"rdfs:label\": \"Intangible\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:Integer\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Data type: Integer.\",\n      \"rdfs:label\": \"Integer\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:InternationalTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"An international trial.\",\n      \"rdfs:label\": \"InternationalTrial\"\n    },\n    {\n      \"@id\": \"schema:InternetCafe\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An internet cafe.\",\n      \"rdfs:label\": \"InternetCafe\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ItemAvailability\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A list of possible product availablity options.\",\n      \"rdfs:label\": \"ItemAvailability\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:ItemList\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A list of items of any sort&#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.\",\n      \"rdfs:label\": \"ItemList\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:ItemPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A page devoted to a single item, such as a particular product or hotel.\",\n      \"rdfs:label\": \"ItemPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:JewelryStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A jewelry store.\",\n      \"rdfs:label\": \"JewelryStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:JobPosting\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A listing that describes a job opening in a certain organization.\",\n      \"rdfs:label\": \"JobPosting\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:Joint\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"The anatomical location at which two or more bones make contact.\",\n      \"rdfs:label\": \"Joint\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:LaboratoryScience\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Laboratory science.\",\n      \"rdfs:label\": \"LaboratoryScience\"\n    },\n    {\n      \"@id\": \"schema:LakeBodyOfWater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A lake (for example, Lake Pontrachain).\",\n      \"rdfs:label\": \"LakeBodyOfWater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:Landform\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A landform or physical feature.  Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.\",\n      \"rdfs:label\": \"Landform\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:LandmarksOrHistoricalBuildings\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An historical landmark or building.\",\n      \"rdfs:label\": \"LandmarksOrHistoricalBuildings\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:Language\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Natural languages such as Spanish, Tamil, Hindi, English, etc. and programming languages such as Scheme and Lisp.\",\n      \"rdfs:label\": \"Language\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:LegislativeBuilding\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A legislative building&#x2014;for example, the state capitol.\",\n      \"rdfs:label\": \"LegislativeBuilding\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentBuilding\"\n      }\n    },\n    {\n      \"@id\": \"schema:LeisureTimeActivity\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.\",\n      \"rdfs:label\": \"LeisureTimeActivity\"\n    },\n    {\n      \"@id\": \"schema:Library\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A library.\",\n      \"rdfs:label\": \"Library\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:LifestyleModification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.\",\n      \"rdfs:label\": \"LifestyleModification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:Ligament\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.\",\n      \"rdfs:label\": \"Ligament\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:LiquorStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A liquor store.\",\n      \"rdfs:label\": \"LiquorStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:LiteraryEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Literary event.\",\n      \"rdfs:label\": \"LiteraryEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:LocalBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.\",\n      \"rdfs:label\": \"LocalBusiness\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Locksmith\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A locksmith.\",\n      \"rdfs:label\": \"Locksmith\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:LodgingBusiness\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A lodging business, such as a motel, hotel, or inn.\",\n      \"rdfs:label\": \"LodgingBusiness\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Longitudinal\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.\",\n      \"rdfs:label\": \"Longitudinal\"\n    },\n    {\n      \"@id\": \"schema:Lung\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Lung\",\n      \"rdfs:label\": \"Lung\"\n    },\n    {\n      \"@id\": \"schema:LymphaticVessel\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.\",\n      \"rdfs:label\": \"LymphaticVessel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:MRI\",\n      \"@type\": \"schema:MedicalImagingTechnique\",\n      \"rdfs:comment\": \"Magnetic resonance imaging.\",\n      \"rdfs:label\": \"MRI\"\n    },\n    {\n      \"@id\": \"schema:Map\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A map.\",\n      \"rdfs:label\": \"Map\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:Mass\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Properties that take Mass as values are of the form '&lt;Number&gt; &lt;Mass unit of measure&gt;'. E.g., '7 kg'\",\n      \"rdfs:label\": \"Mass\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Quantity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MaximumDoseSchedule\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.\",\n      \"rdfs:label\": \"MaximumDoseSchedule\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:MediaObject\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An image, video, or audio object embedded in a web page. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject's).\",\n      \"rdfs:label\": \"MediaObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalAudience\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Target audiences for medical web pages. Enumerated type.\",\n      \"rdfs:label\": \"MedicalAudience\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:Audience\"\n        },\n        {\n          \"@id\": \"schema:MedicalEnumeration\"\n        },\n        {\n          \"@id\": \"schema:PeopleAudience\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:MedicalCause\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. <p>Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.\",\n      \"rdfs:label\": \"MedicalCause\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalClinic\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A medical clinic.\",\n      \"rdfs:label\": \"MedicalClinic\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalCode\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A code for a medical entity.\",\n      \"rdfs:label\": \"MedicalCode\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalCondition\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.\",\n      \"rdfs:label\": \"MedicalCondition\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalConditionStage\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A stage of a medical condition, such as 'Stage IIIa'.\",\n      \"rdfs:label\": \"MedicalConditionStage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalContraindication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).\",\n      \"rdfs:label\": \"MedicalContraindication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalDevice\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any object used in a medical capacity, such as to diagnose or treat a patient.\",\n      \"rdfs:label\": \"MedicalDevice\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalDevicePurpose\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Categories of medical devices, organized by the purpose or intended use of the device.\",\n      \"rdfs:label\": \"MedicalDevicePurpose\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalEntity\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"The most generic type of entity related to health and the practice of medicine.\",\n      \"rdfs:label\": \"MedicalEntity\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalEnumeration\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Enumerations related to health and the practice of medicine.\",\n      \"rdfs:label\": \"MedicalEnumeration\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIntangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalEvidenceLevel\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Level of evidence for a medical guideline. Enumerated type.\",\n      \"rdfs:label\": \"MedicalEvidenceLevel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalGuideline\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.\",\n      \"rdfs:label\": \"MedicalGuideline\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalGuidelineContraindication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.\",\n      \"rdfs:label\": \"MedicalGuidelineContraindication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalGuidelineRecommendation\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.\",\n      \"rdfs:label\": \"MedicalGuidelineRecommendation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalImagingTechnique\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any medical imaging modality typically used for diagnostic purposes. Enumerated type.\",\n      \"rdfs:label\": \"MedicalImagingTechnique\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalIndication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.\",\n      \"rdfs:label\": \"MedicalIndication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalIntangible\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A utility class that serves as the umbrella for a number of 'intangible' things in the medical space.\",\n      \"rdfs:label\": \"MedicalIntangible\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalObservationalStudy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.\",\n      \"rdfs:label\": \"MedicalObservationalStudy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalStudy\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalObservationalStudyDesign\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Design models for observational medical studies. Enumerated type.\",\n      \"rdfs:label\": \"MedicalObservationalStudyDesign\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalOrganization\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A medical organization, such as a doctor's office or clinic.\",\n      \"rdfs:label\": \"MedicalOrganization\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalProcedure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques.\",\n      \"rdfs:label\": \"MedicalProcedure\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalProcedureType\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An enumeration that describes different types of medical procedures.\",\n      \"rdfs:label\": \"MedicalProcedureType\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalResearcher\",\n      \"@type\": \"schema:MedicalAudience\",\n      \"rdfs:comment\": \"Medical researchers.\",\n      \"rdfs:label\": \"MedicalResearcher\"\n    },\n    {\n      \"@id\": \"schema:MedicalRiskCalculator\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.\",\n      \"rdfs:label\": \"MedicalRiskCalculator\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalRiskEstimator\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalRiskEstimator\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any rule set or interactive tool for estimating the risk of developing a complication or condition.\",\n      \"rdfs:label\": \"MedicalRiskEstimator\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalRiskFactor\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A risk factor is anything that increases a person's likelihood of developing or contracting a disease, medical condition, or complication.\",\n      \"rdfs:label\": \"MedicalRiskFactor\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalRiskScore\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.\",\n      \"rdfs:label\": \"MedicalRiskScore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalRiskEstimator\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalScholarlyArticle\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A scholarly article in the medical domain.\",\n      \"rdfs:label\": \"MedicalScholarlyArticle\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:ScholarlyArticle\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalSign\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any physical manifestation of a person's medical condition discoverable by objective diagnostic tests or physical examination.\",\n      \"rdfs:label\": \"MedicalSign\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalSignOrSymptom\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalSignOrSymptom\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any indication of the existence of a medical condition or disease.\",\n      \"rdfs:label\": \"MedicalSignOrSymptom\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalSpecialty\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.\",\n      \"rdfs:label\": \"MedicalSpecialty\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:MedicalEnumeration\"\n        },\n        {\n          \"@id\": \"schema:Specialty\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:MedicalStudy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.\",\n      \"rdfs:label\": \"MedicalStudy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalStudyStatus\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"The status of a medical study. Enumerated type.\",\n      \"rdfs:label\": \"MedicalStudyStatus\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalSymptom\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any indication of the existence of a medical condition or disease that is apparent to the patient.\",\n      \"rdfs:label\": \"MedicalSymptom\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalSignOrSymptom\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalTest\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any medical test, typically performed for diagnostic purposes.\",\n      \"rdfs:label\": \"MedicalTest\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalTestPanel\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any collection of tests commonly ordered together.\",\n      \"rdfs:label\": \"MedicalTestPanel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalTherapy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.\",\n      \"rdfs:label\": \"MedicalTherapy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalTrial\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.\",\n      \"rdfs:label\": \"MedicalTrial\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalStudy\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalTrialDesign\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Design models for medical trials. Enumerated type.\",\n      \"rdfs:label\": \"MedicalTrialDesign\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicalWebPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A web page that provides medical information.\",\n      \"rdfs:label\": \"MedicalWebPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:MedicineSystem\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Systems of medical practice.\",\n      \"rdfs:label\": \"MedicineSystem\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:MensClothingStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A men's clothing store.\",\n      \"rdfs:label\": \"MensClothingStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:MiddleSchool\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A middle school.\",\n      \"rdfs:label\": \"MiddleSchool\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Midwifery\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Midwifery.\",\n      \"rdfs:label\": \"Midwifery\"\n    },\n    {\n      \"@id\": \"schema:MobileApplication\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A mobile software application.\",\n      \"rdfs:label\": \"MobileApplication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      }\n    },\n    {\n      \"@id\": \"schema:MobilePhoneStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A mobile-phone store.\",\n      \"rdfs:label\": \"MobilePhoneStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Mosque\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A mosque.\",\n      \"rdfs:label\": \"Mosque\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:Motel\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A motel.\",\n      \"rdfs:label\": \"Motel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LodgingBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:MotorcycleDealer\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A motorcycle dealer.\",\n      \"rdfs:label\": \"MotorcycleDealer\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:MotorcycleRepair\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A motorcycle repair shop.\",\n      \"rdfs:label\": \"MotorcycleRepair\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AutomotiveBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Mountain\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A mountain, like Mount Whitney or Mount Everest\",\n      \"rdfs:label\": \"Mountain\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Landform\"\n      }\n    },\n    {\n      \"@id\": \"schema:Movie\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A movie.\",\n      \"rdfs:label\": \"Movie\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:MovieRentalStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A movie rental store.\",\n      \"rdfs:label\": \"MovieRentalStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:MovieTheater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A movie theater.\",\n      \"rdfs:label\": \"MovieTheater\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CivicStructure\"\n        },\n        {\n          \"@id\": \"schema:EntertainmentBusiness\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:MovingCompany\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A moving company.\",\n      \"rdfs:label\": \"MovingCompany\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HomeAndConstructionBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:MultiCenterTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial that takes place at multiple centers.\",\n      \"rdfs:label\": \"MultiCenterTrial\"\n    },\n    {\n      \"@id\": \"schema:MulticellularParasite\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"Multicellular parasite that causes an infection.\",\n      \"rdfs:label\": \"MulticellularParasite\"\n    },\n    {\n      \"@id\": \"schema:Muscle\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.\",\n      \"rdfs:label\": \"Muscle\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Musculoskeletal\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.\",\n      \"rdfs:label\": \"Musculoskeletal\"\n    },\n    {\n      \"@id\": \"schema:MusculoskeletalExam\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Musculoskeletal\",\n      \"rdfs:label\": \"MusculoskeletalExam\"\n    },\n    {\n      \"@id\": \"schema:Museum\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A museum.\",\n      \"rdfs:label\": \"Museum\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicAlbum\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A collection of music tracks.\",\n      \"rdfs:label\": \"MusicAlbum\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MusicPlaylist\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Music event.\",\n      \"rdfs:label\": \"MusicEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicGroup\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.\",\n      \"rdfs:label\": \"MusicGroup\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PerformingGroup\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicPlaylist\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A collection of music tracks in playlist form.\",\n      \"rdfs:label\": \"MusicPlaylist\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicRecording\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A music recording (track), usually a single song.\",\n      \"rdfs:label\": \"MusicRecording\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A music store.\",\n      \"rdfs:label\": \"MusicStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicVenue\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A music venue.\",\n      \"rdfs:label\": \"MusicVenue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:MusicVideoObject\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A music video file.\",\n      \"rdfs:label\": \"MusicVideoObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:NGO\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Organization: Non-governmental Organization.\",\n      \"rdfs:label\": \"NGO\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:NailSalon\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A nail salon.\",\n      \"rdfs:label\": \"NailSalon\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HealthAndBeautyBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Neck\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Neck\",\n      \"rdfs:label\": \"Neck\"\n    },\n    {\n      \"@id\": \"schema:Nerve\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.\",\n      \"rdfs:label\": \"Nerve\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Neuro\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Neuro\",\n      \"rdfs:label\": \"Neuro\"\n    },\n    {\n      \"@id\": \"schema:Neurologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that studies the nerves and nervous system and its respective disease states.\",\n      \"rdfs:label\": \"Neurologic\"\n    },\n    {\n      \"@id\": \"schema:NewCondition\",\n      \"@type\": \"schema:OfferItemCondition\",\n      \"rdfs:comment\": \"Indicates that the item for sale is new.\",\n      \"rdfs:label\": \"NewCondition\"\n    },\n    {\n      \"@id\": \"schema:NewsArticle\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"A news article\",\n      \"rdfs:label\": \"NewsArticle\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Article\"\n      }\n    },\n    {\n      \"@id\": \"schema:NightClub\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A nightclub or discotheque.\",\n      \"rdfs:label\": \"NightClub\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EntertainmentBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:NoninvasiveProcedure\",\n      \"@type\": \"schema:MedicalProcedureType\",\n      \"rdfs:comment\": \"A type of medical procedure that involves noninvasive techniques.\",\n      \"rdfs:label\": \"NoninvasiveProcedure\"\n    },\n    {\n      \"@id\": \"schema:Nose\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Nose\",\n      \"rdfs:label\": \"Nose\"\n    },\n    {\n      \"@id\": \"schema:NotYetRecruiting\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Not yet recruiting.\",\n      \"rdfs:label\": \"NotYetRecruiting\"\n    },\n    {\n      \"@id\": \"schema:Notary\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A notary.\",\n      \"rdfs:label\": \"Notary\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:ProfessionalService\"\n      }\n    },\n    {\n      \"@id\": \"schema:Number\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Data type: Number.\",\n      \"rdfs:label\": \"Number\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:Nursing\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Nursing.\",\n      \"rdfs:label\": \"Nursing\"\n    },\n    {\n      \"@id\": \"schema:NutritionInformation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Nutritional information about the recipe.\",\n      \"rdfs:label\": \"NutritionInformation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:OTC\",\n      \"@type\": \"schema:DrugPrescriptionStatus\",\n      \"rdfs:comment\": \"Available over the counter.\",\n      \"rdfs:label\": \"OTC\"\n    },\n    {\n      \"@id\": \"schema:Observational\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"An observational study design.\",\n      \"rdfs:label\": \"Observational\"\n    },\n    {\n      \"@id\": \"schema:Obstetric\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.\",\n      \"rdfs:label\": \"Obstetric\"\n    },\n    {\n      \"@id\": \"schema:OccupationalActivity\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.\",\n      \"rdfs:label\": \"OccupationalActivity\"\n    },\n    {\n      \"@id\": \"schema:OccupationalTherapy\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Occupational therapy.\",\n      \"rdfs:label\": \"OccupationalTherapy\"\n    },\n    {\n      \"@id\": \"schema:OceanBodyOfWater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An ocean (for example, the Pacific).\",\n      \"rdfs:label\": \"OceanBodyOfWater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:Offer\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\"\n      },\n      \"rdfs:comment\": \"An offer to sell an item&#x2014;for example, an offer to sell a product, the DVD of a movie, or tickets to an event.\",\n      \"rdfs:label\": \"Offer\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:OfferItemCondition\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A list of possible conditions for the item for sale.\",\n      \"rdfs:label\": \"OfferItemCondition\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:OfficeEquipmentStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An office equipment store.\",\n      \"rdfs:label\": \"OfficeEquipmentStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Oncologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.\",\n      \"rdfs:label\": \"Oncologic\"\n    },\n    {\n      \"@id\": \"schema:OnlineOnly\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale is available only online.\",\n      \"rdfs:label\": \"OnlineOnly\"\n    },\n    {\n      \"@id\": \"schema:OpenTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial design in which the researcher knows the full details of the treatment, and so does the patient.\",\n      \"rdfs:label\": \"OpenTrial\"\n    },\n    {\n      \"@id\": \"schema:OpeningHoursSpecification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A structured value providing information about the opening hours of a place or a certain service inside a place.\",\n      \"rdfs:label\": \"OpeningHoursSpecification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:Optician\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An optician's store.\",\n      \"rdfs:label\": \"Optician\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Optometic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Optometry.\",\n      \"rdfs:label\": \"Optometic\"\n    },\n    {\n      \"@id\": \"schema:Organization\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An organization such as a school, NGO, corporation, club, etc.\",\n      \"rdfs:label\": \"Organization\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:Osteopathic\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"A system of medicine focused on promoting the body's innate ability to heal itself.\",\n      \"rdfs:label\": \"Osteopathic\"\n    },\n    {\n      \"@id\": \"schema:Otolaryngologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.\",\n      \"rdfs:label\": \"Otolaryngologic\"\n    },\n    {\n      \"@id\": \"schema:OutOfStock\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale is out of stock.\",\n      \"rdfs:label\": \"OutOfStock\"\n    },\n    {\n      \"@id\": \"schema:OutletStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An outlet store.\",\n      \"rdfs:label\": \"OutletStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:OwnershipInfo\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A structured value providing information about when a certain organization or person owned a certain product.\",\n      \"rdfs:label\": \"OwnershipInfo\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:PET\",\n      \"@type\": \"schema:MedicalImagingTechnique\",\n      \"rdfs:comment\": \"Positron emission tomography imaging.\",\n      \"rdfs:label\": \"PET\"\n    },\n    {\n      \"@id\": \"schema:Painting\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A painting.\",\n      \"rdfs:label\": \"Painting\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:PalliativeProcedure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical procedure intended primarly for palliative purposes, aimed at relieving the symptoms of an underlying health condition.\",\n      \"rdfs:label\": \"PalliativeProcedure\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:MedicalProcedure\"\n        },\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Paperback\",\n      \"@type\": \"schema:BookFormatType\",\n      \"rdfs:comment\": \"Book format: Paperback.\",\n      \"rdfs:label\": \"Paperback\"\n    },\n    {\n      \"@id\": \"schema:ParcelService\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A private parcel service as the delivery mode available for a certain offer.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#DHL\\n    http://purl.org/goodrelations/v1#FederalExpress\\n    http://purl.org/goodrelations/v1#UPS\\n    \\t\",\n      \"rdfs:label\": \"ParcelService\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DeliveryMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:ParentAudience\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A set of characteristics describing parents, who can be interested in viewing some content\",\n      \"rdfs:label\": \"ParentAudience\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PeopleAudience\"\n      }\n    },\n    {\n      \"@id\": \"schema:Park\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A park.\",\n      \"rdfs:label\": \"Park\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:ParkingFacility\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A parking lot or other parking facility.\",\n      \"rdfs:label\": \"ParkingFacility\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Pathology\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.\",\n      \"rdfs:label\": \"Pathology\"\n    },\n    {\n      \"@id\": \"schema:PathologyTest\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.\",\n      \"rdfs:label\": \"PathologyTest\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:Patient\",\n      \"@type\": \"schema:MedicalAudience\",\n      \"rdfs:comment\": \"Patients.\",\n      \"rdfs:label\": \"Patient\"\n    },\n    {\n      \"@id\": \"schema:PawnShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A pawnstore.\",\n      \"rdfs:label\": \"PawnShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:PaymentChargeSpecification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"The costs of settling the payment using a particular payment method.\",\n      \"rdfs:label\": \"PaymentChargeSpecification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PriceSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:PaymentMethod\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n    http://purl.org/goodrelations/v1#ByInvoice\\n    http://purl.org/goodrelations/v1#Cash\\n    http://purl.org/goodrelations/v1#CheckInAdvance\\n    http://purl.org/goodrelations/v1#COD\\n    http://purl.org/goodrelations/v1#DirectDebit\\n    http://purl.org/goodrelations/v1#GoogleCheckout\\n    http://purl.org/goodrelations/v1#PayPal\\n    http://purl.org/goodrelations/v1#PaySwarm\\n    \\t\\t\",\n      \"rdfs:label\": \"PaymentMethod\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:Pediatric\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that specializes in the care of infants, children and adolescents.\",\n      \"rdfs:label\": \"Pediatric\"\n    },\n    {\n      \"@id\": \"schema:PeopleAudience\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A set of characteristics belonging to people, e.g. who compose an item's target audience.\",\n      \"rdfs:label\": \"PeopleAudience\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Audience\"\n      }\n    },\n    {\n      \"@id\": \"schema:PercutaneousProcedure\",\n      \"@type\": \"schema:MedicalProcedureType\",\n      \"rdfs:comment\": \"A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.\",\n      \"rdfs:label\": \"PercutaneousProcedure\"\n    },\n    {\n      \"@id\": \"schema:PerformingArtsTheater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A theatre or other performing art center.\",\n      \"rdfs:label\": \"PerformingArtsTheater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:PerformingGroup\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A performance group, such as a band, an orchestra, or a circus.\",\n      \"rdfs:label\": \"PerformingGroup\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Person\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"A person (alive, dead, undead, or fictional).\",\n      \"rdfs:label\": \"Person\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:PetStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A pet store.\",\n      \"rdfs:label\": \"PetStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Pharmacy\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A pharmacy or drugstore.\",\n      \"rdfs:label\": \"Pharmacy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:PharmacySpecialty\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Pharmacy.\",\n      \"rdfs:label\": \"PharmacySpecialty\"\n    },\n    {\n      \"@id\": \"schema:Photograph\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A photograph.\",\n      \"rdfs:label\": \"Photograph\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:PhysicalActivity\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.\",\n      \"rdfs:label\": \"PhysicalActivity\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LifestyleModification\"\n      }\n    },\n    {\n      \"@id\": \"schema:PhysicalActivityCategory\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Categories of physical activity, organized by physiologic classification.\",\n      \"rdfs:label\": \"PhysicalActivityCategory\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:PhysicalExam\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A type of physical examination of a patient performed by a physician. Enumerated type.\",\n      \"rdfs:label\": \"PhysicalExam\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEnumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:PhysicalTherapy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A process of progressive physical care and rehabilitation aimed at improving a health condition.\",\n      \"rdfs:label\": \"PhysicalTherapy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:Physician\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A doctor's office.\",\n      \"rdfs:label\": \"Physician\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Physiotherapy\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Physiotherapy.\",\n      \"rdfs:label\": \"Physiotherapy\"\n    },\n    {\n      \"@id\": \"schema:Place\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Entities that have a somewhat fixed, physical extension.\",\n      \"rdfs:label\": \"Place\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:PlaceOfWorship\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Place of worship, such as a church, synagogue, or mosque.\",\n      \"rdfs:label\": \"PlaceOfWorship\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:PlaceboControlledTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A placebo-controlled trial design.\",\n      \"rdfs:label\": \"PlaceboControlledTrial\"\n    },\n    {\n      \"@id\": \"schema:PlasticSurgery\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.\",\n      \"rdfs:label\": \"PlasticSurgery\"\n    },\n    {\n      \"@id\": \"schema:Playground\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A playground.\",\n      \"rdfs:label\": \"Playground\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:Plumber\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A plumbing service.\",\n      \"rdfs:label\": \"Plumber\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Podiatric\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Podiatry.\",\n      \"rdfs:label\": \"Podiatric\"\n    },\n    {\n      \"@id\": \"schema:PoliceStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A police station.\",\n      \"rdfs:label\": \"PoliceStation\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CivicStructure\"\n        },\n        {\n          \"@id\": \"schema:EmergencyService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Pond\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A pond\",\n      \"rdfs:label\": \"Pond\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:PostOffice\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A post office.\",\n      \"rdfs:label\": \"PostOffice\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:GovernmentOffice\"\n      }\n    },\n    {\n      \"@id\": \"schema:PostalAddress\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The mailing address.\",\n      \"rdfs:label\": \"PostalAddress\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:ContactPoint\"\n      }\n    },\n    {\n      \"@id\": \"schema:PreOrder\",\n      \"@type\": \"schema:ItemAvailability\",\n      \"rdfs:comment\": \"Indicates that the item for sale is available for pre-order.\",\n      \"rdfs:label\": \"PreOrder\"\n    },\n    {\n      \"@id\": \"schema:Preschool\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A preschool.\",\n      \"rdfs:label\": \"Preschool\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:PrescriptionOnly\",\n      \"@type\": \"schema:DrugPrescriptionStatus\",\n      \"rdfs:comment\": \"Available by prescription only.\",\n      \"rdfs:label\": \"PrescriptionOnly\"\n    },\n    {\n      \"@id\": \"schema:PreventionIndication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An indication for preventing an underlying condition, symptom, etc.\",\n      \"rdfs:label\": \"PreventionIndication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIndication\"\n      }\n    },\n    {\n      \"@id\": \"schema:PriceSpecification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A structured value representing a monetary amount. Typically, only the subclasses of this type are used for markup.\",\n      \"rdfs:label\": \"PriceSpecification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:PrimaryCare\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Primary care.\",\n      \"rdfs:label\": \"PrimaryCare\"\n    },\n    {\n      \"@id\": \"schema:Prion\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"A prion is an infectious agent composed of protein in a misfolded form.\",\n      \"rdfs:label\": \"Prion\"\n    },\n    {\n      \"@id\": \"schema:Product\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\"\n      },\n      \"rdfs:comment\": \"A product is anything that is made available for sale—for example, a pair of shoes, a concert ticket, or a car. Commodity services, like haircuts, can also be represented using this type.\",\n      \"rdfs:label\": \"Product\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:ProductModel\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A datasheet or vendor specification of a product (in the sense of a prototypical description).\",\n      \"rdfs:label\": \"ProductModel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:ProfessionalService\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Provider of professional services.\",\n      \"rdfs:label\": \"ProfessionalService\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ProfilePage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Profile page.\",\n      \"rdfs:label\": \"ProfilePage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:Property\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.\",\n      \"rdfs:label\": \"Property\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:Protozoa\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"Single-celled organism that causes an infection.\",\n      \"rdfs:label\": \"Protozoa\"\n    },\n    {\n      \"@id\": \"schema:Psychiatric\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.\",\n      \"rdfs:label\": \"Psychiatric\"\n    },\n    {\n      \"@id\": \"schema:PsychologicalTreatment\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A process of care relying upon counseling, dialogue, communication, verbalization aimed at improving a mental health condition.\",\n      \"rdfs:label\": \"PsychologicalTreatment\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:PublicHealth\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Environment and public health.\",\n      \"rdfs:label\": \"PublicHealth\"\n    },\n    {\n      \"@id\": \"schema:PublicSwimmingPool\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A public swimming pool.\",\n      \"rdfs:label\": \"PublicSwimmingPool\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:Pulmonary\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.\",\n      \"rdfs:label\": \"Pulmonary\"\n    },\n    {\n      \"@id\": \"schema:QualitativeValue\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A predefined value for a product characteristic, e.g. the the power cord plug type \\\"US\\\" or the garment sizes \\\"S\\\", \\\"M\\\", \\\"L\\\", and \\\"XL\\\"\",\n      \"rdfs:label\": \"QualitativeValue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:QuantitativeValue\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \" A point value or interval for product characteristics and other purposes.\",\n      \"rdfs:label\": \"QuantitativeValue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:Quantity\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like '3 Kg' or '4 milligrams'.\",\n      \"rdfs:label\": \"Quantity\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:RVPark\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An RV park.\",\n      \"rdfs:label\": \"RVPark\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:RadiationTherapy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A process of care using radiation aimed at improving a health condition.\",\n      \"rdfs:label\": \"RadiationTherapy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:RadioStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A radio station.\",\n      \"rdfs:label\": \"RadioStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Radiograpy\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Radiography.\",\n      \"rdfs:label\": \"Radiograpy\"\n    },\n    {\n      \"@id\": \"schema:RandomizedTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A randomized trial design.\",\n      \"rdfs:label\": \"RandomizedTrial\"\n    },\n    {\n      \"@id\": \"schema:Rating\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The rating of the video.\",\n      \"rdfs:label\": \"Rating\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:RealEstateAgent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A real-estate agent.\",\n      \"rdfs:label\": \"RealEstateAgent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Recipe\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A recipe.\",\n      \"rdfs:label\": \"Recipe\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:RecommendedDoseSchedule\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement's manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.\",\n      \"rdfs:label\": \"RecommendedDoseSchedule\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:Recruiting\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Recruiting participants.\",\n      \"rdfs:label\": \"Recruiting\"\n    },\n    {\n      \"@id\": \"schema:RecyclingCenter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A recycling center.\",\n      \"rdfs:label\": \"RecyclingCenter\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:RefurbishedCondition\",\n      \"@type\": \"schema:OfferItemCondition\",\n      \"rdfs:comment\": \"Indicates that the item for sale is refurbished.\",\n      \"rdfs:label\": \"RefurbishedCondition\"\n    },\n    {\n      \"@id\": \"schema:Registry\",\n      \"@type\": \"schema:MedicalObservationalStudyDesign\",\n      \"rdfs:comment\": \"A registry-based study design.\",\n      \"rdfs:label\": \"Registry\"\n    },\n    {\n      \"@id\": \"schema:ReimbursementCap\",\n      \"@type\": \"schema:DrugCostCategory\",\n      \"rdfs:comment\": \"The drug's cost represents the maximum reimbursement paid by an insurer for the drug.\",\n      \"rdfs:label\": \"ReimbursementCap\"\n    },\n    {\n      \"@id\": \"schema:Renal\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.\",\n      \"rdfs:label\": \"Renal\"\n    },\n    {\n      \"@id\": \"schema:ReportedDoseSchedule\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A patient-reported or observed dosing schedule for a drug or supplement.\",\n      \"rdfs:label\": \"ReportedDoseSchedule\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:Researcher\",\n      \"@type\": \"schema:Audience\",\n      \"rdfs:comment\": \"Researchers.\",\n      \"rdfs:label\": \"Researcher\"\n    },\n    {\n      \"@id\": \"schema:Reservoir\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A reservoir, like the Lake Kariba reservoir.\",\n      \"rdfs:label\": \"Reservoir\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:Residence\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The place where a person lives.\",\n      \"rdfs:label\": \"Residence\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:RespiratoryTherapy\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Respiratory therapy.\",\n      \"rdfs:label\": \"RespiratoryTherapy\"\n    },\n    {\n      \"@id\": \"schema:Restaurant\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A restaurant.\",\n      \"rdfs:label\": \"Restaurant\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:ResultsAvailable\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Results are available.\",\n      \"rdfs:label\": \"ResultsAvailable\"\n    },\n    {\n      \"@id\": \"schema:ResultsNotAvailable\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Results are not available.\",\n      \"rdfs:label\": \"ResultsNotAvailable\"\n    },\n    {\n      \"@id\": \"schema:Retail\",\n      \"@type\": \"schema:DrugCostCategory\",\n      \"rdfs:comment\": \"The drug's cost represents the retail cost of the drug.\",\n      \"rdfs:label\": \"Retail\"\n    },\n    {\n      \"@id\": \"schema:Review\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A review of an item - for example, a restaurant, movie, or store.\",\n      \"rdfs:label\": \"Review\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:Rheumatologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that deals with the study and treatment of rheumatic, automimmune or joint diseases.\",\n      \"rdfs:label\": \"Rheumatologic\"\n    },\n    {\n      \"@id\": \"schema:RiverBodyOfWater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A river (for example, the broad majestic Shannon).\",\n      \"rdfs:label\": \"RiverBodyOfWater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:RoofingContractor\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A roofing contractor.\",\n      \"rdfs:label\": \"RoofingContractor\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:HomeAndConstructionBusiness\"\n        },\n        {\n          \"@id\": \"schema:ProfessionalService\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:SaleEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Sales event.\",\n      \"rdfs:label\": \"SaleEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:ScholarlyArticle\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A scholarly article.\",\n      \"rdfs:label\": \"ScholarlyArticle\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Article\"\n      }\n    },\n    {\n      \"@id\": \"schema:School\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A school.\",\n      \"rdfs:label\": \"School\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:Sculpture\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A piece of sculpture.\",\n      \"rdfs:label\": \"Sculpture\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:SeaBodyOfWater\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A sea (for example, the Caspian sea).\",\n      \"rdfs:label\": \"SeaBodyOfWater\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:SearchResultsPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Search results page.\",\n      \"rdfs:label\": \"SearchResultsPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:SelfStorage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Self-storage facility.\",\n      \"rdfs:label\": \"SelfStorage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:ShoeStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A shoe store.\",\n      \"rdfs:label\": \"ShoeStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:ShoppingCenter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A shopping center or mall.\",\n      \"rdfs:label\": \"ShoppingCenter\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:SingleBlindedTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.\",\n      \"rdfs:label\": \"SingleBlindedTrial\"\n    },\n    {\n      \"@id\": \"schema:SingleCenterTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial that takes place at a single center.\",\n      \"rdfs:label\": \"SingleCenterTrial\"\n    },\n    {\n      \"@id\": \"schema:SingleFamilyResidence\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Residence type: Single-family home.\",\n      \"rdfs:label\": \"SingleFamilyResidence\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Residence\"\n      }\n    },\n    {\n      \"@id\": \"schema:SiteNavigationElement\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A navigation element of the page.\",\n      \"rdfs:label\": \"SiteNavigationElement\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:SkiResort\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A ski resort.\",\n      \"rdfs:label\": \"SkiResort\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:Skin\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Skin\",\n      \"rdfs:label\": \"Skin\"\n    },\n    {\n      \"@id\": \"schema:SocialEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Social event.\",\n      \"rdfs:label\": \"SocialEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:SoftwareApplication\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A software application.\",\n      \"rdfs:label\": \"SoftwareApplication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:SomeProducts\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A placeholder for multiple similar products of the same kind.\",\n      \"rdfs:label\": \"SomeProducts\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:Specialty\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.\",\n      \"rdfs:label\": \"Specialty\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:SpeechPathology\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"Speech pathology.\",\n      \"rdfs:label\": \"SpeechPathology\"\n    },\n    {\n      \"@id\": \"schema:SportingGoodsStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A sporting goods store.\",\n      \"rdfs:label\": \"SportingGoodsStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:SportsActivityLocation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A sports location, such as a playing field.\",\n      \"rdfs:label\": \"SportsActivityLocation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:SportsClub\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A sports club.\",\n      \"rdfs:label\": \"SportsClub\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:SportsEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Sports event.\",\n      \"rdfs:label\": \"SportsEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:SportsTeam\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Organization: Sports team.\",\n      \"rdfs:label\": \"SportsTeam\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:StadiumOrArena\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A stadium.\",\n      \"rdfs:label\": \"StadiumOrArena\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:CivicStructure\"\n        },\n        {\n          \"@id\": \"schema:SportsActivityLocation\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:State\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A state or province.\",\n      \"rdfs:label\": \"State\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:Store\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A retail good store.\",\n      \"rdfs:label\": \"Store\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:StrengthTraining\",\n      \"@type\": \"schema:PhysicalActivityCategory\",\n      \"rdfs:comment\": \"Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.\",\n      \"rdfs:label\": \"StrengthTraining\"\n    },\n    {\n      \"@id\": \"schema:StructuredValue\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Structured values are strings&#x2014;for example, addresses&#x2014;that have certain constraints on their structure.\",\n      \"rdfs:label\": \"StructuredValue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Intangible\"\n      }\n    },\n    {\n      \"@id\": \"schema:SubwayStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A subway station.\",\n      \"rdfs:label\": \"SubwayStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:SuperficialAnatomy\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).\",\n      \"rdfs:label\": \"SuperficialAnatomy\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:Surgical\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.\",\n      \"rdfs:label\": \"Surgical\"\n    },\n    {\n      \"@id\": \"schema:SurgicalProcedure\",\n      \"@type\": \"schema:MedicalProcedureType\",\n      \"rdfs:comment\": \"A type of medical procedure that involves invasive surgical techniques.\",\n      \"rdfs:label\": \"SurgicalProcedure\"\n    },\n    {\n      \"@id\": \"schema:Suspended\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Suspended.\",\n      \"rdfs:label\": \"Suspended\"\n    },\n    {\n      \"@id\": \"schema:Synagogue\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A synagogue.\",\n      \"rdfs:label\": \"Synagogue\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PlaceOfWorship\"\n      }\n    },\n    {\n      \"@id\": \"schema:TVEpisode\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An episode of a TV series or season.\",\n      \"rdfs:label\": \"TVEpisode\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:TVSeason\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A TV season.\",\n      \"rdfs:label\": \"TVSeason\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:TVSeries\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A television series.\",\n      \"rdfs:label\": \"TVSeries\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:Table\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A table on the page.\",\n      \"rdfs:label\": \"Table\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:TattooParlor\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A tattoo parlor.\",\n      \"rdfs:label\": \"TattooParlor\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:HealthAndBeautyBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:TaxiStand\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A taxi stand.\",\n      \"rdfs:label\": \"TaxiStand\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:TechArticle\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.\",\n      \"rdfs:label\": \"TechArticle\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Article\"\n      }\n    },\n    {\n      \"@id\": \"schema:TelevisionStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A television station.\",\n      \"rdfs:label\": \"TelevisionStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:TennisComplex\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A tennis complex.\",\n      \"rdfs:label\": \"TennisComplex\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SportsActivityLocation\"\n      }\n    },\n    {\n      \"@id\": \"schema:Terminated\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Terminated.\",\n      \"rdfs:label\": \"Terminated\"\n    },\n    {\n      \"@id\": \"schema:Text\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Data type: Text.\",\n      \"rdfs:label\": \"Text\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:TheaterEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Theater performance.\",\n      \"rdfs:label\": \"TheaterEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:TheaterGroup\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A theater group or company&#x2014;for example, the Royal Shakespeare Company or Druid Theatre.\",\n      \"rdfs:label\": \"TheaterGroup\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PerformingGroup\"\n      }\n    },\n    {\n      \"@id\": \"schema:Therapeutic\",\n      \"@type\": \"schema:MedicalDevicePurpose\",\n      \"rdfs:comment\": \"A medical device used for therapeutic purposes.\",\n      \"rdfs:label\": \"Therapeutic\"\n    },\n    {\n      \"@id\": \"schema:TherapeuticProcedure\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A medical procedure intended primarly for therapeutic purposes, aimed at improving a health condition.\",\n      \"rdfs:label\": \"TherapeuticProcedure\",\n      \"rdfs:subClassOf\": [\n        {\n          \"@id\": \"schema:MedicalProcedure\"\n        },\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:Thing\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The most generic type of item.\",\n      \"rdfs:label\": \"Thing\"\n    },\n    {\n      \"@id\": \"schema:Throat\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"Throat\",\n      \"rdfs:label\": \"Throat\"\n    },\n    {\n      \"@id\": \"schema:Time\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see <a href=\\\"http://www.w3.org/TR/xmlschema-2/#time\\\">XML schema for details</a>).\",\n      \"rdfs:label\": \"Time\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:DataType\"\n      }\n    },\n    {\n      \"@id\": \"schema:TireShop\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A tire shop.\",\n      \"rdfs:label\": \"TireShop\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:TouristAttraction\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A tourist attraction.\",\n      \"rdfs:label\": \"TouristAttraction\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:TouristInformationCenter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A tourist information center.\",\n      \"rdfs:label\": \"TouristInformationCenter\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:Toxicologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.\",\n      \"rdfs:label\": \"Toxicologic\"\n    },\n    {\n      \"@id\": \"schema:ToyStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A toystore.\",\n      \"rdfs:label\": \"ToyStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:TraditionalChinese\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.\",\n      \"rdfs:label\": \"TraditionalChinese\"\n    },\n    {\n      \"@id\": \"schema:TrainStation\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A train station.\",\n      \"rdfs:label\": \"TrainStation\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:TravelAgency\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A travel agency.\",\n      \"rdfs:label\": \"TravelAgency\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:LocalBusiness\"\n      }\n    },\n    {\n      \"@id\": \"schema:TreatmentIndication\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"An indication for treating an underlying condition, symptom, etc.\",\n      \"rdfs:label\": \"TreatmentIndication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalIndication\"\n      }\n    },\n    {\n      \"@id\": \"schema:TripleBlindedTrial\",\n      \"@type\": \"schema:MedicalTrialDesign\",\n      \"rdfs:comment\": \"A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.\",\n      \"rdfs:label\": \"TripleBlindedTrial\"\n    },\n    {\n      \"@id\": \"schema:True\",\n      \"@type\": \"schema:Boolean\",\n      \"rdfs:comment\": \"The boolean value true\",\n      \"rdfs:label\": \"True\"\n    },\n    {\n      \"@id\": \"schema:TypeAndQuantityNode\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.\",\n      \"rdfs:label\": \"TypeAndQuantityNode\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:URL\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Data type: URL.\",\n      \"rdfs:label\": \"URL\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:Ultrasound\",\n      \"@type\": \"schema:MedicalImagingTechnique\",\n      \"rdfs:comment\": \"Ultrasound imaging.\",\n      \"rdfs:label\": \"Ultrasound\"\n    },\n    {\n      \"@id\": \"schema:UnitPriceSpecification\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"The price asked for a given offer by the respective organization or person.\",\n      \"rdfs:label\": \"UnitPriceSpecification\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:PriceSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:Urologic\",\n      \"@type\": \"schema:MedicalSpecialty\",\n      \"rdfs:comment\": \"A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.\",\n      \"rdfs:label\": \"Urologic\"\n    },\n    {\n      \"@id\": \"schema:UsedCondition\",\n      \"@type\": \"schema:OfferItemCondition\",\n      \"rdfs:comment\": \"Indicates that the item for sale is used.\",\n      \"rdfs:label\": \"UsedCondition\"\n    },\n    {\n      \"@id\": \"schema:UserBlocks\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Block this content.\",\n      \"rdfs:label\": \"UserBlocks\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserCheckins\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Check-in at a place.\",\n      \"rdfs:label\": \"UserCheckins\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserComments\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"The UserInteraction event in which a user comments on an item.\",\n      \"rdfs:label\": \"UserComments\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserDownloads\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Download of an item.\",\n      \"rdfs:label\": \"UserDownloads\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserInteraction\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A user interacting with a page\",\n      \"rdfs:label\": \"UserInteraction\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserLikes\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Like an item.\",\n      \"rdfs:label\": \"UserLikes\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserPageVisits\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Visit to a web page.\",\n      \"rdfs:label\": \"UserPageVisits\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserPlays\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Play count of an item, for example a video or a song.\",\n      \"rdfs:label\": \"UserPlays\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserPlusOnes\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: +1.\",\n      \"rdfs:label\": \"UserPlusOnes\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:UserTweets\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"User interaction: Tweets.\",\n      \"rdfs:label\": \"UserTweets\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:UserInteraction\"\n      }\n    },\n    {\n      \"@id\": \"schema:Vein\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A type of blood vessel that specifically carries blood to the heart.\",\n      \"rdfs:label\": \"Vein\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:Vessel\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\"\n      },\n      \"rdfs:comment\": \"A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.\",\n      \"rdfs:label\": \"Vessel\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:VeterinaryCare\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A vet's office.\",\n      \"rdfs:label\": \"VeterinaryCare\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MedicalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:VideoGallery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web page type: Video gallery page.\",\n      \"rdfs:label\": \"VideoGallery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CollectionPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:VideoObject\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\"\n      },\n      \"rdfs:comment\": \"A video file.\",\n      \"rdfs:label\": \"VideoObject\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:Virus\",\n      \"@type\": \"schema:InfectiousAgentClass\",\n      \"rdfs:comment\": \"Pathogenic virus that causes viral infection.\",\n      \"rdfs:label\": \"Virus\"\n    },\n    {\n      \"@id\": \"schema:VisualArtsEvent\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Event type: Visual arts event.\",\n      \"rdfs:label\": \"VisualArtsEvent\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:VitalSign\",\n      \"@type\": \"schema:PhysicalExam\",\n      \"rdfs:comment\": \"VitalSign\",\n      \"rdfs:label\": \"VitalSign\"\n    },\n    {\n      \"@id\": \"schema:Volcano\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A volcano, like Fuji san\",\n      \"rdfs:label\": \"Volcano\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Landform\"\n      }\n    },\n    {\n      \"@id\": \"schema:WPAdBlock\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"An advertising section of the page.\",\n      \"rdfs:label\": \"WPAdBlock\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:WPFooter\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The footer section of the page.\",\n      \"rdfs:label\": \"WPFooter\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:WPHeader\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"The header section of the page.\",\n      \"rdfs:label\": \"WPHeader\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:WPSideBar\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A sidebar section of the page.\",\n      \"rdfs:label\": \"WPSideBar\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:WarrantyPromise\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\",\n      \"rdfs:label\": \"WarrantyPromise\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:StructuredValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:WarrantyScope\",\n      \"@type\": \"rdfs:Class\",\n      \"dc:source\": {\n        \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\"\n      },\n      \"rdfs:comment\": \"A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\\n\\n    Commonly used values:\\n\\n    http://purl.org/goodrelations/v1#Labor-BringIn\\n    http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\\n    http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\\n    \\t\",\n      \"rdfs:label\": \"WarrantyScope\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Enumeration\"\n      }\n    },\n    {\n      \"@id\": \"schema:Waterfall\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A waterfall, like Niagara\",\n      \"rdfs:label\": \"Waterfall\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:BodyOfWater\"\n      }\n    },\n    {\n      \"@id\": \"schema:WebApplication\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"Web applications.\",\n      \"rdfs:label\": \"WebApplication\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      }\n    },\n    {\n      \"@id\": \"schema:WebPage\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as <code>breadcrumb</code> may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page\",\n      \"rdfs:label\": \"WebPage\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:WebPageElement\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A web page element, like a table or an image\",\n      \"rdfs:label\": \"WebPageElement\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:WesternConventional\",\n      \"@type\": \"schema:MedicineSystem\",\n      \"rdfs:comment\": \"The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.\",\n      \"rdfs:label\": \"WesternConventional\"\n    },\n    {\n      \"@id\": \"schema:Wholesale\",\n      \"@type\": \"schema:DrugCostCategory\",\n      \"rdfs:comment\": \"The drug's cost represents the wholesale acquisition cost of the drug.\",\n      \"rdfs:label\": \"Wholesale\"\n    },\n    {\n      \"@id\": \"schema:WholesaleStore\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A wholesale store.\",\n      \"rdfs:label\": \"WholesaleStore\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:Store\"\n      }\n    },\n    {\n      \"@id\": \"schema:Winery\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A winery.\",\n      \"rdfs:label\": \"Winery\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      }\n    },\n    {\n      \"@id\": \"schema:Withdrawn\",\n      \"@type\": \"schema:MedicalStudyStatus\",\n      \"rdfs:comment\": \"Withdrawn.\",\n      \"rdfs:label\": \"Withdrawn\"\n    },\n    {\n      \"@id\": \"schema:XRay\",\n      \"@type\": \"schema:MedicalImagingTechnique\",\n      \"rdfs:comment\": \"X-ray imaging.\",\n      \"rdfs:label\": \"XRay\"\n    },\n    {\n      \"@id\": \"schema:Zoo\",\n      \"@type\": \"rdfs:Class\",\n      \"rdfs:comment\": \"A zoo.\",\n      \"rdfs:label\": \"Zoo\",\n      \"rdfs:subClassOf\": {\n        \"@id\": \"schema:CivicStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:about\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The subject matter of the content.\",\n      \"rdfs:label\": \"about\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:acceptedPaymentMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The payment method(s) accepted by seller for this offer.\",\n      \"rdfs:label\": \"acceptedPaymentMethod\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:PaymentMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:acceptsReservations\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Either <code>Yes/No</code>, or a URL at which reservations can be made.\",\n      \"rdfs:label\": \"acceptsReservations\",\n      \"schema:domain\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:accountablePerson\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies the Person that is legally accountable for the CreativeWork.\",\n      \"rdfs:label\": \"accountablePerson\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:acquiredFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The organization or person from which the product was acquired.\",\n      \"rdfs:label\": \"acquiredFrom\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OwnershipInfo\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:action\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The movement the muscle generates.\",\n      \"rdfs:label\": \"action\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:activeIngredient\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An active ingredient, typically chemical compounds and/or biologic substances.\",\n      \"rdfs:label\": \"activeIngredient\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        },\n        {\n          \"@id\": \"schema:DrugStrength\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:activityDuration\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Length of time to engage in the activity.\",\n      \"rdfs:label\": \"activityDuration\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:activityFrequency\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"How often one should engage in the activity.\",\n      \"rdfs:label\": \"activityFrequency\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:actor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A cast member of the movie, TV series, season, or episode, or video.\",\n      \"rdfs:label\": \"actor\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:actors\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A cast member of the movie, TV series, season, or episode, or video. (legacy spelling; see singular form, actor)\",\n      \"rdfs:label\": \"actors\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:addOn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).\",\n      \"rdfs:label\": \"addOn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Offer\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Offer\"\n      }\n    },\n    {\n      \"@id\": \"schema:additionalName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An additional name for a Person, can be used for a middle name.\",\n      \"rdfs:label\": \"additionalName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:additionalType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.\",\n      \"rdfs:label\": \"additionalType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Thing\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:additionalVariable\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.\",\n      \"rdfs:label\": \"additionalVariable\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:address\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Physical address of the item.\",\n      \"rdfs:label\": \"address\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:PostalAddress\"\n      }\n    },\n    {\n      \"@id\": \"schema:addressCountry\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The country. For example, USA. You can also provide the two-letter <a href='http://en.wikipedia.org/wiki/ISO_3166-1'>ISO 3166-1 alpha-2 country code</a>.\",\n      \"rdfs:label\": \"addressCountry\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Country\"\n      }\n    },\n    {\n      \"@id\": \"schema:addressLocality\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The locality. For example, Mountain View.\",\n      \"rdfs:label\": \"addressLocality\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:addressRegion\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The region. For example, CA.\",\n      \"rdfs:label\": \"addressRegion\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:administrationRoute\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A route by which this drug may be administered, e.g. 'oral'.\",\n      \"rdfs:label\": \"administrationRoute\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:advanceBookingRequirement\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The amount of time that is required between accepting the offer and the actual usage of the resource or service.\",\n      \"rdfs:label\": \"advanceBookingRequirement\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:adverseOutcome\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.\",\n      \"rdfs:label\": \"adverseOutcome\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        },\n        {\n          \"@id\": \"schema:MedicalDevice\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:affectedBy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Drugs that affect the test's results.\",\n      \"rdfs:label\": \"affectedBy\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Drug\"\n      }\n    },\n    {\n      \"@id\": \"schema:affiliation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An organization that this person is affiliated with. For example, a school/university, a club, or a team.\",\n      \"rdfs:label\": \"affiliation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:aggregateRating\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The overall rating, based on a collection of reviews or ratings, of the item.\",\n      \"rdfs:label\": \"aggregateRating\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:AggregateRating\"\n      }\n    },\n    {\n      \"@id\": \"schema:album\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A music album.\",\n      \"rdfs:label\": \"album\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicGroup\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MusicAlbum\"\n      }\n    },\n    {\n      \"@id\": \"schema:albums\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A collection of music albums (legacy spelling; see singular form, album).\",\n      \"rdfs:label\": \"albums\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicGroup\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MusicAlbum\"\n      }\n    },\n    {\n      \"@id\": \"schema:alcoholWarning\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.\",\n      \"rdfs:label\": \"alcoholWarning\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:algorithm\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The algorithm or rules to follow to compute the score.\",\n      \"rdfs:label\": \"algorithm\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalRiskScore\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:alignmentType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A category of alignment between the learning resource and the framework node. Recommended values include: 'assesses', 'teaches', 'requires', 'textComplexity', 'readingLevel', 'educationalSubject', and 'educationLevel'.\",\n      \"rdfs:label\": \"alignmentType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AlignmentObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:alternateName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any alternate name for this medical entity.\",\n      \"rdfs:label\": \"alternateName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:alternativeHeadline\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A secondary title of the CreativeWork.\",\n      \"rdfs:label\": \"alternativeHeadline\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:alumni\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Alumni of educational organization.\",\n      \"rdfs:label\": \"alumni\",\n      \"schema:domain\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:alumniOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An educational organizations that the person is an alumni of.\",\n      \"rdfs:label\": \"alumniOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:EducationalOrganization\"\n      }\n    },\n    {\n      \"@id\": \"schema:amountOfThisGood\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The quantity of the goods included in the offer.\",\n      \"rdfs:label\": \"amountOfThisGood\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TypeAndQuantityNode\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:antagonist\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The muscle whose action counteracts the specified muscle.\",\n      \"rdfs:label\": \"antagonist\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Muscle\"\n      }\n    },\n    {\n      \"@id\": \"schema:applicableLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location in which the status applies.\",\n      \"rdfs:label\": \"applicableLocation\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DrugCost\"\n        },\n        {\n          \"@id\": \"schema:DrugLegalStatus\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:applicationCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Type of software application, e.g. \\\"Game, Multimedia\\\".\",\n      \"rdfs:label\": \"applicationCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:applicationSubCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Subcategory of the application, e.g. \\\"Arcade Game\\\".\",\n      \"rdfs:label\": \"applicationSubCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:applicationSuite\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The name of the application suite to which the application belongs (e.g. Excel belongs to Office)\",\n      \"rdfs:label\": \"applicationSuite\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:appliesToDeliveryMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The delivery method(s) to which the delivery charge or payment charge specification applies.\",\n      \"rdfs:label\": \"appliesToDeliveryMethod\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DeliveryChargeSpecification\"\n        },\n        {\n          \"@id\": \"schema:PaymentChargeSpecification\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DeliveryMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:appliesToPaymentMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The payment method(s) to which the payment charge specification applies.\",\n      \"rdfs:label\": \"appliesToPaymentMethod\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PaymentChargeSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:PaymentMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:arterialBranch\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The branches that comprise the arterial structure.\",\n      \"rdfs:label\": \"arterialBranch\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Artery\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:articleBody\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The actual body of the article.\",\n      \"rdfs:label\": \"articleBody\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Article\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:articleSection\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Articles may belong to one or more 'sections' in a magazine or newspaper, such as Sports, Lifestyle, etc.\",\n      \"rdfs:label\": \"articleSection\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Article\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:aspect\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An aspect of medical practice that is considered on the page, such as 'diagnosis', 'treatment', 'causes', 'prognosis', 'etiology', 'epidemiology', etc.\",\n      \"rdfs:label\": \"aspect\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalWebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:assembly\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Library file name e.g., mscorlib.dll, system.web.dll\",\n      \"rdfs:label\": \"assembly\",\n      \"schema:domain\": {\n        \"@id\": \"schema:APIReference\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:assemblyVersion\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Associated product/technology version. e.g., .NET Framework 4.5\",\n      \"rdfs:label\": \"assemblyVersion\",\n      \"schema:domain\": {\n        \"@id\": \"schema:APIReference\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:associatedAnatomy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The anatomy of the underlying organ system or structures associated with this entity.\",\n      \"rdfs:label\": \"associatedAnatomy\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:PhysicalActivity\"\n        },\n        {\n          \"@id\": \"schema:MedicalCondition\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:associatedArticle\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A NewsArticle associated with the Media Object.\",\n      \"rdfs:label\": \"associatedArticle\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:NewsArticle\"\n      }\n    },\n    {\n      \"@id\": \"schema:associatedMedia\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The media objects that encode this creative work. This property is a synonym for encodings.\",\n      \"rdfs:label\": \"associatedMedia\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:associatedPathophysiology\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.\",\n      \"rdfs:label\": \"associatedPathophysiology\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:attendee\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A person or organization attending the event.\",\n      \"rdfs:label\": \"attendee\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:attendees\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A person attending the event (legacy spelling; see singular form, attendee).\",\n      \"rdfs:label\": \"attendees\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:audience\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The intended audience of the item, i.e. the group for whom the item was created.\",\n      \"rdfs:label\": \"audience\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Audience\"\n      }\n    },\n    {\n      \"@id\": \"schema:audio\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An embedded audio object.\",\n      \"rdfs:label\": \"audio\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AudioObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:author\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The author of this content. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.\",\n      \"rdfs:label\": \"author\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:availability\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The availability of this item&#x2014;for example In stock, Out of stock, Pre-order, etc.\",\n      \"rdfs:label\": \"availability\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:ItemAvailability\"\n      }\n    },\n    {\n      \"@id\": \"schema:availabilityEnds\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The end of the availability of the product or service included in the offer.\",\n      \"rdfs:label\": \"availabilityEnds\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:availabilityStarts\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The beginning of the availability of the product or service included in the offer.\",\n      \"rdfs:label\": \"availabilityStarts\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:availableAtOrFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The place(s) from which the offer can be obtained (e.g. store locations).\",\n      \"rdfs:label\": \"availableAtOrFrom\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:availableDeliveryMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The delivery method(s) available for this offer.\",\n      \"rdfs:label\": \"availableDeliveryMethod\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DeliveryMethod\"\n      }\n    },\n    {\n      \"@id\": \"schema:availableIn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location in which the strength is available.\",\n      \"rdfs:label\": \"availableIn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugStrength\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:availableService\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical service available from this provider.\",\n      \"rdfs:label\": \"availableService\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Hospital\"\n        },\n        {\n          \"@id\": \"schema:MedicalClinic\"\n        },\n        {\n          \"@id\": \"schema:Physician\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:MedicalProcedure\"\n        },\n        {\n          \"@id\": \"schema:MedicalTest\"\n        },\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:availableStrength\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An available dosage strength for the drug.\",\n      \"rdfs:label\": \"availableStrength\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugStrength\"\n      }\n    },\n    {\n      \"@id\": \"schema:availableTest\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A diagnostic test or procedure offered by this lab.\",\n      \"rdfs:label\": \"availableTest\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DiagnosticLab\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:award\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An award won by this person or for this creative work.\",\n      \"rdfs:label\": \"award\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:awards\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Awards won by this person or for this creative work. (legacy spelling; see singular form, award)\",\n      \"rdfs:label\": \"awards\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:background\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Descriptive information establishing a historical perspective on the supplement. May include the rationale for the name, the population where the supplement first came to prominence, etc.\",\n      \"rdfs:label\": \"background\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DietarySupplement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:baseSalary\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The base salary of the job.\",\n      \"rdfs:label\": \"baseSalary\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:benefits\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Description of benefits associated with the job.\",\n      \"rdfs:label\": \"benefits\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:bestRating\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.\",\n      \"rdfs:label\": \"bestRating\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Rating\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:billingIncrement\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.\",\n      \"rdfs:label\": \"billingIncrement\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UnitPriceSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:biomechnicalClass\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The biomechanical properties of the bone.\",\n      \"rdfs:label\": \"biomechnicalClass\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Joint\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:birthDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date of birth.\",\n      \"rdfs:label\": \"birthDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:bitrate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The bitrate of the media object.\",\n      \"rdfs:label\": \"bitrate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:blogPost\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A posting that is part of this blog.\",\n      \"rdfs:label\": \"blogPost\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Blog\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:BlogPosting\"\n      }\n    },\n    {\n      \"@id\": \"schema:blogPosts\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The postings that are part of this blog (legacy spelling; see singular form, blogPost).\",\n      \"rdfs:label\": \"blogPosts\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Blog\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:BlogPosting\"\n      }\n    },\n    {\n      \"@id\": \"schema:bloodSupply\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The blood vessel that carries blood from the heart to the muscle.\",\n      \"rdfs:label\": \"bloodSupply\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:bodyLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Location in the body of the anatomical structure.\",\n      \"rdfs:label\": \"bodyLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:bookEdition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The edition of the book.\",\n      \"rdfs:label\": \"bookEdition\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Book\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:bookFormat\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The format of the book.\",\n      \"rdfs:label\": \"bookFormat\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Book\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:BookFormatType\"\n      }\n    },\n    {\n      \"@id\": \"schema:box\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more spacedelimited points where the first and final points are identical.\",\n      \"rdfs:label\": \"box\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoShape\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:branch\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The branches that delineate from the nerve bundle.\",\n      \"rdfs:label\": \"branch\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Nerve\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:Nerve\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:branchOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The larger organization that this local business is a branch of, if any.\",\n      \"rdfs:label\": \"branchOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LocalBusiness\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:brand\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.\",\n      \"rdfs:label\": \"brand\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Brand\"\n        },\n        {\n          \"@id\": \"schema:Organization\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:breadcrumb\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A set of links that can help a user understand and navigate a website hierarchy.\",\n      \"rdfs:label\": \"breadcrumb\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:breastfeedingWarning\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any precaution, guidance, contraindication, etc. related to this drug's use by breastfeeding mothers.\",\n      \"rdfs:label\": \"breastfeedingWarning\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:browserRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies browser requirements in human-readable text. For example,\\\"requires HTML5 support\\\".\",\n      \"rdfs:label\": \"browserRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:businessFunction\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.\",\n      \"rdfs:label\": \"businessFunction\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        },\n        {\n          \"@id\": \"schema:TypeAndQuantityNode\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:BusinessFunction\"\n      }\n    },\n    {\n      \"@id\": \"schema:byArtist\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The artist that performed this album or recording.\",\n      \"rdfs:label\": \"byArtist\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MusicAlbum\"\n        },\n        {\n          \"@id\": \"schema:MusicRecording\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MusicGroup\"\n      }\n    },\n    {\n      \"@id\": \"schema:calories\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of calories\",\n      \"rdfs:label\": \"calories\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Energy\"\n      }\n    },\n    {\n      \"@id\": \"schema:caption\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The caption for this object.\",\n      \"rdfs:label\": \"caption\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:VideoObject\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:carbohydrateContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of carbohydrates.\",\n      \"rdfs:label\": \"carbohydrateContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:carrierRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).\",\n      \"rdfs:label\": \"carrierRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MobileApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:catalog\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A data catalog which contains a dataset.\",\n      \"rdfs:label\": \"catalog\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Dataset\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DataCatalog\"\n      }\n    },\n    {\n      \"@id\": \"schema:category\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.\",\n      \"rdfs:label\": \"category\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PhysicalActivity\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:PhysicalActivityCategory\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:Thing\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:cause\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An underlying cause. More specifically, one of the causative agent(s) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.\",\n      \"rdfs:label\": \"cause\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalCondition\"\n        },\n        {\n          \"@id\": \"schema:MedicalSignOrSymptom\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCause\"\n      }\n    },\n    {\n      \"@id\": \"schema:causeOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The condition, complication, symptom, sign, etc. caused.\",\n      \"rdfs:label\": \"causeOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCause\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:childMaxAge\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Maximal age of the child\",\n      \"rdfs:label\": \"childMaxAge\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ParentAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:childMinAge\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Minimal age of the child\",\n      \"rdfs:label\": \"childMinAge\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ParentAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:children\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A child of the person.\",\n      \"rdfs:label\": \"children\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:cholesterolContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of milligrams of cholesterol.\",\n      \"rdfs:label\": \"cholesterolContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:circle\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.\",\n      \"rdfs:label\": \"circle\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoShape\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:citation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A citation or reference to another creative work, such as another publication, web page, scholarly article, etc. NOTE: Candidate for promotion to ScholarlyArticle.\",\n      \"rdfs:label\": \"citation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalScholarlyArticle\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:clincalPharmacology\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).\",\n      \"rdfs:label\": \"clincalPharmacology\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:closes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The closing hour of the place or service on the given day(s) of the week.\",\n      \"rdfs:label\": \"closes\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OpeningHoursSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Time\"\n      }\n    },\n    {\n      \"@id\": \"schema:code\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.\",\n      \"rdfs:label\": \"code\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCode\"\n      }\n    },\n    {\n      \"@id\": \"schema:codeRepository\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex)\",\n      \"rdfs:label\": \"codeRepository\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Code\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:codeValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The actual code.\",\n      \"rdfs:label\": \"codeValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCode\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:codingSystem\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The coding system, e.g. 'ICD-10'.\",\n      \"rdfs:label\": \"codingSystem\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCode\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:colleague\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A colleague of the person.\",\n      \"rdfs:label\": \"colleague\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:colleagues\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A colleague of the person (legacy spelling; see singular form, colleague).\",\n      \"rdfs:label\": \"colleagues\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:color\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The color of the product.\",\n      \"rdfs:label\": \"color\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:comment\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Comments, typically from users, on this CreativeWork.\",\n      \"rdfs:label\": \"comment\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:UserComments\"\n      }\n    },\n    {\n      \"@id\": \"schema:commentText\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The text of the UserComment.\",\n      \"rdfs:label\": \"commentText\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UserComments\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:commentTime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The time at which the UserComment was made.\",\n      \"rdfs:label\": \"commentTime\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UserComments\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:comprisedOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The underlying anatomical structures, such as organs, that comprise the anatomical system.\",\n      \"rdfs:label\": \"comprisedOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalSystem\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:connectedTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Other anatomical structures to which this structure is connected.\",\n      \"rdfs:label\": \"connectedTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:contactPoint\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A contact point for a person or organization.\",\n      \"rdfs:label\": \"contactPoint\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:ContactPoint\"\n      }\n    },\n    {\n      \"@id\": \"schema:contactPoints\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A contact point for a person or organization (legacy spelling; see singular form, contactPoint).\",\n      \"rdfs:label\": \"contactPoints\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:ContactPoint\"\n      }\n    },\n    {\n      \"@id\": \"schema:contactType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.\",\n      \"rdfs:label\": \"contactType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ContactPoint\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:containedIn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The basic containment relation between places.\",\n      \"rdfs:label\": \"containedIn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:contentLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location of the content.\",\n      \"rdfs:label\": \"contentLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:contentRating\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Official rating of a piece of content&#x2014;for example,'MPAA PG-13'.\",\n      \"rdfs:label\": \"contentRating\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:contentSize\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"File size in (mega/kilo) bytes.\",\n      \"rdfs:label\": \"contentSize\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:contentUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Actual bytes of the media object, for example the image file or video file. (previous spelling: contentURL)\",\n      \"rdfs:label\": \"contentUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:contraindication\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A contraindication for this therapy.\",\n      \"rdfs:label\": \"contraindication\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        },\n        {\n          \"@id\": \"schema:MedicalDevice\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalContraindication\"\n      }\n    },\n    {\n      \"@id\": \"schema:contributor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A secondary contributor to the CreativeWork.\",\n      \"rdfs:label\": \"contributor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:cookTime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The time it takes to actually cook the dish, in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>.\",\n      \"rdfs:label\": \"cookTime\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:cookingMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The method of cooking, such as Frying, Steaming, ...\",\n      \"rdfs:label\": \"cookingMethod\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:copyrightHolder\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The party holding the legal copyright to the CreativeWork.\",\n      \"rdfs:label\": \"copyrightHolder\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:copyrightYear\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The year during which the claimed copyright for the CreativeWork was first asserted.\",\n      \"rdfs:label\": \"copyrightYear\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:cost\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Cost per unit of the drug, as reported by the source being tagged.\",\n      \"rdfs:label\": \"cost\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugCost\"\n      }\n    },\n    {\n      \"@id\": \"schema:costCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The category of cost, such as wholesale, retail, reimbursement cap, etc.\",\n      \"rdfs:label\": \"costCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugCost\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugCostCategory\"\n      }\n    },\n    {\n      \"@id\": \"schema:costCurrency\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The currency (in 3-letter <a href=http://en.wikipedia.org/wiki/ISO_4217>ISO 4217 format</a>) of the drug cost.\",\n      \"rdfs:label\": \"costCurrency\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugCost\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:costOrigin\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Additional details to capture the origin of the cost data. For example, 'Medicare Part B'.\",\n      \"rdfs:label\": \"costOrigin\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugCost\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:costPerUnit\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The cost per unit of the drug.\",\n      \"rdfs:label\": \"costPerUnit\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugCost\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:countriesNotSupported\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.\",\n      \"rdfs:label\": \"countriesNotSupported\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:countriesSupported\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.\",\n      \"rdfs:label\": \"countriesSupported\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:creator\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.\",\n      \"rdfs:label\": \"creator\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:UserComments\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:currenciesAccepted\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The currency accepted (in <a href='http://en.wikipedia.org/wiki/ISO_4217'>ISO 4217 currency format</a>).\",\n      \"rdfs:label\": \"currenciesAccepted\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LocalBusiness\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:dataset\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A dataset contained in a catalog.\",\n      \"rdfs:label\": \"dataset\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DataCatalog\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Dataset\"\n      }\n    },\n    {\n      \"@id\": \"schema:dateCreated\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date on which the CreativeWork was created.\",\n      \"rdfs:label\": \"dateCreated\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:dateModified\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date on which the CreativeWork was most recently modified.\",\n      \"rdfs:label\": \"dateModified\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:datePosted\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Publication date for the job posting.\",\n      \"rdfs:label\": \"datePosted\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:datePublished\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date of first broadcast/publication.\",\n      \"rdfs:label\": \"datePublished\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:dateline\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location where the NewsArticle was produced.\",\n      \"rdfs:label\": \"dateline\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NewsArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:dayOfWeek\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The day of the week for which these opening hours are valid.\",\n      \"rdfs:label\": \"dayOfWeek\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OpeningHoursSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DayOfWeek\"\n      }\n    },\n    {\n      \"@id\": \"schema:deathDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date of death.\",\n      \"rdfs:label\": \"deathDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:deliveryLeadTime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The typical delay between the receipt of the order and the goods leaving the warehouse.\",\n      \"rdfs:label\": \"deliveryLeadTime\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:dependencies\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Prerequisites needed to fulfill steps in article.\",\n      \"rdfs:label\": \"dependencies\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TechArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:depth\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The depth of the product.\",\n      \"rdfs:label\": \"depth\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Distance\"\n        },\n        {\n          \"@id\": \"schema:QuantitativeValue\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:description\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A short description of the item.\",\n      \"rdfs:label\": \"description\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Thing\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:device\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Device required to run the application. Used in cases where a specific make/model is required to run the application.\",\n      \"rdfs:label\": \"device\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:diagnosis\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One or more alternative conditions considered in the differential diagnosis process.\",\n      \"rdfs:label\": \"diagnosis\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DDxElement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:diagram\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.\",\n      \"rdfs:label\": \"diagram\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:ImageObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:dietFeatures\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body's approved dietary guidelines.\",\n      \"rdfs:label\": \"dietFeatures\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:differentialDiagnosis\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.\",\n      \"rdfs:label\": \"differentialDiagnosis\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DDxElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:director\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The director of the movie, TV episode, or series.\",\n      \"rdfs:label\": \"director\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:discusses\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies the CreativeWork associated with the UserComment.\",\n      \"rdfs:label\": \"discusses\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UserComments\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:discussionUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A link to the page containing the comments of the CreativeWork.\",\n      \"rdfs:label\": \"discussionUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:distinguishingSign\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.\",\n      \"rdfs:label\": \"distinguishingSign\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DDxElement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalSignOrSymptom\"\n      }\n    },\n    {\n      \"@id\": \"schema:distribution\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A downloadable form of this dataset, at a specific location, in a specific format.\",\n      \"rdfs:label\": \"distribution\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Dataset\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DataDownload\"\n      }\n    },\n    {\n      \"@id\": \"schema:domainIncludes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Relates a property to a class that is (one of) the type(s) the property is expected to be used on.\",\n      \"rdfs:label\": \"domainIncludes\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Property\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Class\"\n      }\n    },\n    {\n      \"@id\": \"schema:dosageForm\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A dosage form in which this drug/supplement is available, e.g. 'tablet', 'suspension', 'injection'.\",\n      \"rdfs:label\": \"dosageForm\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:doseSchedule\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.\",\n      \"rdfs:label\": \"doseSchedule\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:doseUnit\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The unit of the dose, e.g. 'mg'.\",\n      \"rdfs:label\": \"doseUnit\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DoseSchedule\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:doseValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The value of the dose, e.g. 500.\",\n      \"rdfs:label\": \"doseValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DoseSchedule\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:downloadUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If the file can be downloaded, URL to download the binary.\",\n      \"rdfs:label\": \"downloadUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:drainsTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The vasculature that the vein drains into.\",\n      \"rdfs:label\": \"drainsTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Vein\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:drug\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A drug in this drug class.\",\n      \"rdfs:label\": \"drug\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugClass\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Drug\"\n      }\n    },\n    {\n      \"@id\": \"schema:drugClass\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The class of drug this belongs to (e.g., statins).\",\n      \"rdfs:label\": \"drugClass\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugClass\"\n      }\n    },\n    {\n      \"@id\": \"schema:drugUnit\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The unit in which the drug is measured, e.g. '5 mg tablet'.\",\n      \"rdfs:label\": \"drugUnit\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugCost\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:duns\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Dun & Bradstreet DUNS number for identifying an organization or business person.\",\n      \"rdfs:label\": \"duns\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:duplicateTherapy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A therapy that duplicates or overlaps this one.\",\n      \"rdfs:label\": \"duplicateTherapy\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:duration\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The duration of the item (movie, audio recording, event, etc.) in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>.\",\n      \"rdfs:label\": \"duration\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MediaObject\"\n        },\n        {\n          \"@id\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:MusicRecording\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:durationOfWarranty\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.\",\n      \"rdfs:label\": \"durationOfWarranty\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WarrantyPromise\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:editor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies the Person who edited the CreativeWork.\",\n      \"rdfs:label\": \"editor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:educationRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Educational background needed for the position.\",\n      \"rdfs:label\": \"educationRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:educationalAlignment\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An alignment to an established educational framework.\",\n      \"rdfs:label\": \"educationalAlignment\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AlignmentObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:educationalFramework\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The framework to which the resource being described is aligned.\",\n      \"rdfs:label\": \"educationalFramework\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AlignmentObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:educationalRole\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An educationalRole of an EducationalAudience\",\n      \"rdfs:label\": \"educationalRole\",\n      \"schema:domain\": {\n        \"@id\": \"schema:EducationalAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:educationalUse\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The purpose of a work in the context of education; for example, 'assignment', 'group work'.\",\n      \"rdfs:label\": \"educationalUse\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:elevation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The elevation of a location.\",\n      \"rdfs:label\": \"elevation\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:GeoCoordinates\"\n        },\n        {\n          \"@id\": \"schema:GeoShape\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:eligibleCustomerType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The type(s) of customers for which the given offer is valid.\",\n      \"rdfs:label\": \"eligibleCustomerType\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:BusinessEntityType\"\n      }\n    },\n    {\n      \"@id\": \"schema:eligibleDuration\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The duration for which the given offer is valid.\",\n      \"rdfs:label\": \"eligibleDuration\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:eligibleQuantity\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.\",\n      \"rdfs:label\": \"eligibleQuantity\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:eligibleRegion\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.\",\n      \"rdfs:label\": \"eligibleRegion\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:DeliveryChargeSpecification\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:GeoShape\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:eligibleTransactionVolume\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.\",\n      \"rdfs:label\": \"eligibleTransactionVolume\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:PriceSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:email\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Email address.\",\n      \"rdfs:label\": \"email\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:ContactPoint\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:embedUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A URL pointing to a player for a specific video. In general, this is the information in the <code>src</code> element of an <code>embed</code> tag and should not be the same as the content of the <code>loc</code> tag. (previous spelling: embedURL)\",\n      \"rdfs:label\": \"embedUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:employee\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Someone working for this organization.\",\n      \"rdfs:label\": \"employee\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:employees\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"People working for this organization. (legacy spelling; see singular form, employee)\",\n      \"rdfs:label\": \"employees\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:employmentType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).\",\n      \"rdfs:label\": \"employmentType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:encodesCreativeWork\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The creative work encoded by this media object\",\n      \"rdfs:label\": \"encodesCreativeWork\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:CreativeWork\"\n      }\n    },\n    {\n      \"@id\": \"schema:encoding\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A media object that encode this CreativeWork.\",\n      \"rdfs:label\": \"encoding\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:encodingFormat\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"mp3, mpeg4, etc.\",\n      \"rdfs:label\": \"encodingFormat\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:encodings\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The media objects that encode this creative work (legacy spelling; see singular form, encoding).\",\n      \"rdfs:label\": \"encodings\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MediaObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:endDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The end date and time of the event (in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>).\",\n      \"rdfs:label\": \"endDate\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:endorsers\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"People or organizations that endorse the plan.\",\n      \"rdfs:label\": \"endorsers\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:epidemiology\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The characteristics of associated patients, such as age, gender, race etc.\",\n      \"rdfs:label\": \"epidemiology\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:PhysicalActivity\"\n        },\n        {\n          \"@id\": \"schema:MedicalCondition\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:episode\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An episode of a TV series or season.\",\n      \"rdfs:label\": \"episode\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:TVEpisode\"\n      }\n    },\n    {\n      \"@id\": \"schema:episodeNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The episode number.\",\n      \"rdfs:label\": \"episodeNumber\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TVEpisode\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:episodes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The episode of a TV series or season (legacy spelling; see singular form, episode).\",\n      \"rdfs:label\": \"episodes\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:TVEpisode\"\n      }\n    },\n    {\n      \"@id\": \"schema:equal\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is equal to the object.\",\n      \"rdfs:label\": \"equal\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:estimatesRiskOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The condition, complication, or symptom whose risk is being estimated.\",\n      \"rdfs:label\": \"estimatesRiskOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalRiskEstimator\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:event\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Upcoming or past event associated with this place or organization.\",\n      \"rdfs:label\": \"event\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:events\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event).\",\n      \"rdfs:label\": \"events\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:evidenceLevel\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Strength of evidence of the data used to formulate the guideline (enumerated).\",\n      \"rdfs:label\": \"evidenceLevel\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEvidenceLevel\"\n      }\n    },\n    {\n      \"@id\": \"schema:evidenceOrigin\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.\",\n      \"rdfs:label\": \"evidenceOrigin\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:exerciseType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.\",\n      \"rdfs:label\": \"exerciseType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:exifData\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"exif data for this object.\",\n      \"rdfs:label\": \"exifData\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ImageObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:expectedPrognosis\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The likely outcome in either the short term or long term of the medical condition.\",\n      \"rdfs:label\": \"expectedPrognosis\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:experienceRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Description of skills and experience needed for the position.\",\n      \"rdfs:label\": \"experienceRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:expertConsiderations\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Medical expert advice related to the plan.\",\n      \"rdfs:label\": \"expertConsiderations\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:expires\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date the content expires and is no longer useful or available. Useful for videos.\",\n      \"rdfs:label\": \"expires\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:familyName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the Name property.\",\n      \"rdfs:label\": \"familyName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:fatContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of fat.\",\n      \"rdfs:label\": \"fatContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:faxNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The fax number.\",\n      \"rdfs:label\": \"faxNumber\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:ContactPoint\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:featureList\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Features or modules provided by this application (and possibly required by other applications).\",\n      \"rdfs:label\": \"featureList\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:fiberContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of fiber.\",\n      \"rdfs:label\": \"fiberContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:fileFormat\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"MIME format of the binary (e.g. application/zip).\",\n      \"rdfs:label\": \"fileFormat\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:fileSize\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.\",\n      \"rdfs:label\": \"fileSize\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:follows\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The most generic uni-directional social relation.\",\n      \"rdfs:label\": \"follows\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:followup\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Typical or recommended followup care after the procedure is performed.\",\n      \"rdfs:label\": \"followup\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalProcedure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:foodWarning\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.\",\n      \"rdfs:label\": \"foodWarning\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:founder\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A person who founded this organization.\",\n      \"rdfs:label\": \"founder\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:founders\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A person who founded this organization (legacy spelling; see singular form, founder).\",\n      \"rdfs:label\": \"founders\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:foundingDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date that this organization was founded.\",\n      \"rdfs:label\": \"foundingDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:frequency\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"How often the dose is taken, e.g. 'daily'.\",\n      \"rdfs:label\": \"frequency\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DoseSchedule\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:function\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Function of the anatomical structure.\",\n      \"rdfs:label\": \"function\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:functionalClass\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The degree of mobility the joint allows.\",\n      \"rdfs:label\": \"functionalClass\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Joint\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:gender\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Gender of the person.\",\n      \"rdfs:label\": \"gender\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:genre\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Genre of the creative work\",\n      \"rdfs:label\": \"genre\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:geo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The geo coordinates of the place.\",\n      \"rdfs:label\": \"geo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:GeoCoordinates\"\n        },\n        {\n          \"@id\": \"schema:GeoShape\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:givenName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the Name property.\",\n      \"rdfs:label\": \"givenName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:globalLocationNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.\",\n      \"rdfs:label\": \"globalLocationNumber\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:greater\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is greater than the object.\",\n      \"rdfs:label\": \"greater\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:greaterOrEqual\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.\",\n      \"rdfs:label\": \"greaterOrEqual\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:gtin13\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero.\",\n      \"rdfs:label\": \"gtin13\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:gtin14\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The GTIN-14 code of the product, or the product to which the offer refers.\",\n      \"rdfs:label\": \"gtin14\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:gtin8\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.\",\n      \"rdfs:label\": \"gtin8\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:guideline\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical guideline related to this entity.\",\n      \"rdfs:label\": \"guideline\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      }\n    },\n    {\n      \"@id\": \"schema:guidelineDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date on which this guideline's recommendation was made.\",\n      \"rdfs:label\": \"guidelineDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:guidelineSubject\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The medical conditions, treatments, etc. that are the subject of the guideline.\",\n      \"rdfs:label\": \"guidelineSubject\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalGuideline\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:hasPOS\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Points-of-Sales operated by the organization or person.\",\n      \"rdfs:label\": \"hasPOS\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:headline\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Headline of the article\",\n      \"rdfs:label\": \"headline\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:healthCondition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Expectations for health conditions of target audience\",\n      \"rdfs:label\": \"healthCondition\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PeopleAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:height\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The height of the item.\",\n      \"rdfs:label\": \"height\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MediaObject\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Distance\"\n        },\n        {\n          \"@id\": \"schema:QuantitativeValue\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:highPrice\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The highest price of all offers available.\",\n      \"rdfs:label\": \"highPrice\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AggregateOffer\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:hiringOrganization\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Organization offering the job position.\",\n      \"rdfs:label\": \"hiringOrganization\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:homeLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A contact location for a person's residence.\",\n      \"rdfs:label\": \"homeLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ContactPoint\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:honorificPrefix\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An honorific prefix preceding a Person's name such as Dr/Mrs/Mr.\",\n      \"rdfs:label\": \"honorificPrefix\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:honorificSuffix\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An honorific suffix preceding a Person's name such as M.D. /PhD/MSCSW.\",\n      \"rdfs:label\": \"honorificSuffix\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:hospitalAffiliation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A hospital with which the physician or office is affiliated.\",\n      \"rdfs:label\": \"hospitalAffiliation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Physician\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Hospital\"\n      }\n    },\n    {\n      \"@id\": \"schema:howPerformed\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"How the procedure is performed.\",\n      \"rdfs:label\": \"howPerformed\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalProcedure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:identifyingExam\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A physical examination that can identify this sign.\",\n      \"rdfs:label\": \"identifyingExam\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalSign\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:PhysicalExam\"\n      }\n    },\n    {\n      \"@id\": \"schema:identifyingTest\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A diagnostic test that can identify this sign.\",\n      \"rdfs:label\": \"identifyingTest\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalSign\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:illustrator\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The illustrator of the book.\",\n      \"rdfs:label\": \"illustrator\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Book\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:image\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"URL of an image of the item.\",\n      \"rdfs:label\": \"image\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Thing\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:imagingTechnique\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Imaging technique used.\",\n      \"rdfs:label\": \"imagingTechnique\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ImagingTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalImagingTechnique\"\n      }\n    },\n    {\n      \"@id\": \"schema:inAlbum\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The album to which this recording belongs.\",\n      \"rdfs:label\": \"inAlbum\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicRecording\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MusicAlbum\"\n      }\n    },\n    {\n      \"@id\": \"schema:inLanguage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The language of the content. please use one of the language codes from the <a href='http://tools.ietf.org/html/bcp47'>IETF BCP 47 standard.</a>\",\n      \"rdfs:label\": \"inLanguage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:inPlaylist\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The playlist to which this recording belongs.\",\n      \"rdfs:label\": \"inPlaylist\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicRecording\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MusicPlaylist\"\n      }\n    },\n    {\n      \"@id\": \"schema:incentives\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Description of bonus and commission compensation aspects of the job.\",\n      \"rdfs:label\": \"incentives\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:includedRiskFactor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.\",\n      \"rdfs:label\": \"includedRiskFactor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalRiskEstimator\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalRiskFactor\"\n      }\n    },\n    {\n      \"@id\": \"schema:includesObject\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This links to a node or nodes indicating the exact quantity of the products included in the offer.\",\n      \"rdfs:label\": \"includesObject\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:TypeAndQuantityNode\"\n      }\n    },\n    {\n      \"@id\": \"schema:increasesRiskOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The condition, complication, etc. influenced by this factor.\",\n      \"rdfs:label\": \"increasesRiskOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalRiskFactor\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:indication\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A factor that indicates use of this therapy for treatment and/or prevention of a condition, symptom, etc. For therapies such as drugs, indications can include both officially-approved indications as well as off-label uses. These can be distinguished by using the ApprovedIndication subtype of MedicalIndication.\",\n      \"rdfs:label\": \"indication\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        },\n        {\n          \"@id\": \"schema:MedicalDevice\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalIndication\"\n      }\n    },\n    {\n      \"@id\": \"schema:industry\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The industry associated with the job position.\",\n      \"rdfs:label\": \"industry\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:infectiousAgent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The actual infectious agent, such as a specific bacterium.\",\n      \"rdfs:label\": \"infectiousAgent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:InfectiousDisease\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:infectiousAgentClass\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The class of infectious agent (bacteria, prion, etc.) that causes the disease.\",\n      \"rdfs:label\": \"infectiousAgentClass\",\n      \"schema:domain\": {\n        \"@id\": \"schema:InfectiousDisease\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:InfectiousAgentClass\"\n      }\n    },\n    {\n      \"@id\": \"schema:ingredients\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An ingredient used in the recipe.\",\n      \"rdfs:label\": \"ingredients\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:insertion\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The place of attachment of a muscle, or what the muscle moves.\",\n      \"rdfs:label\": \"insertion\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:installUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"URL at which the app may be installed, if different from the URL of the item.\",\n      \"rdfs:label\": \"installUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:intensity\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.\",\n      \"rdfs:label\": \"intensity\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:interactingDrug\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.\",\n      \"rdfs:label\": \"interactingDrug\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Drug\"\n      }\n    },\n    {\n      \"@id\": \"schema:interactionCount\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A count of a specific user interactions with this item&#x2014;for example, <code>20 UserLikes</code>, <code>5 UserComments</code>, or <code>300 UserDownloads</code>. The user interaction type should be one of the sub types of <a href='UserInteraction'>UserInteraction</a>.\",\n      \"rdfs:label\": \"interactionCount\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:MediaObject\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:interactivityType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The predominant mode of learning supported by the learning resource. Acceptable values are 'active', 'expositive', or 'mixed'.\",\n      \"rdfs:label\": \"interactivityType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:inventoryLevel\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The current approximate inventory level for the item or items.\",\n      \"rdfs:label\": \"inventoryLevel\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        },\n        {\n          \"@id\": \"schema:SomeProducts\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:isAccessoryOrSparePartFor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to another product (or multiple products) for which this product is an accessory or spare part.\",\n      \"rdfs:label\": \"isAccessoryOrSparePartFor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:isAvailableGenerically\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"True if the drug is available in a generic form (regardless of name).\",\n      \"rdfs:label\": \"isAvailableGenerically\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:isBasedOnUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html\",\n      \"rdfs:label\": \"isBasedOnUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:isConsumableFor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to another product (or multiple products) for which this product is a consumable.\",\n      \"rdfs:label\": \"isConsumableFor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:isFamilyFriendly\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates whether this content is family friendly.\",\n      \"rdfs:label\": \"isFamilyFriendly\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:isPartOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates the collection or gallery to which the item belongs.\",\n      \"rdfs:label\": \"isPartOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:CollectionPage\"\n      }\n    },\n    {\n      \"@id\": \"schema:isProprietary\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"True if this item's name is a proprietary/brand name (vs. generic name).\",\n      \"rdfs:label\": \"isProprietary\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:isRelatedTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to another, somehow related product (or multiple products).\",\n      \"rdfs:label\": \"isRelatedTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:isSimilarTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to another, functionally similar product (or multiple products).\",\n      \"rdfs:label\": \"isSimilarTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:isVariantOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.\",\n      \"rdfs:label\": \"isVariantOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ProductModel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:ProductModel\"\n      }\n    },\n    {\n      \"@id\": \"schema:isbn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The ISBN of the book.\",\n      \"rdfs:label\": \"isbn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Book\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:isicV4\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.\",\n      \"rdfs:label\": \"isicV4\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:itemCondition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.\",\n      \"rdfs:label\": \"itemCondition\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:OfferItemCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:itemListElement\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A single list item.\",\n      \"rdfs:label\": \"itemListElement\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ItemList\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:itemListOrder\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Type of ordering (e.g. Ascending, Descending, Unordered).\",\n      \"rdfs:label\": \"itemListOrder\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ItemList\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:itemOffered\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The item being sold.\",\n      \"rdfs:label\": \"itemOffered\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:itemReviewed\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The item that is being reviewed/rated.\",\n      \"rdfs:label\": \"itemReviewed\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:AggregateRating\"\n        },\n        {\n          \"@id\": \"schema:Review\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:jobLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A (typically single) geographic location associated with the job position.\",\n      \"rdfs:label\": \"jobLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:jobTitle\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The job title of the person (for example, Financial Manager).\",\n      \"rdfs:label\": \"jobTitle\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:keywords\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The keywords/tags used to describe this content.\",\n      \"rdfs:label\": \"keywords\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:knows\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The most generic bi-directional social/work relation.\",\n      \"rdfs:label\": \"knows\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:labelDetails\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Link to the drug's label details.\",\n      \"rdfs:label\": \"labelDetails\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:lastReviewed\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date on which the content on this web page was last reviewed for accuracy and/or completeness.\",\n      \"rdfs:label\": \"lastReviewed\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:latitude\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The latitude of a location. For example <code>37.42242</code>.\",\n      \"rdfs:label\": \"latitude\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoCoordinates\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:learningResourceType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The predominant type or kind characterizing the learning resource. For example, 'presentation', 'handout'.\",\n      \"rdfs:label\": \"learningResourceType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:legalName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The official name of the organization, e.g. the registered company name.\",\n      \"rdfs:label\": \"legalName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:legalStatus\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The drug or supplement's legal status, including any controlled substance schedules that apply.\",\n      \"rdfs:label\": \"legalStatus\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DrugLegalStatus\"\n      }\n    },\n    {\n      \"@id\": \"schema:lesser\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is lesser than the object.\",\n      \"rdfs:label\": \"lesser\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:lesserOrEqual\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.\",\n      \"rdfs:label\": \"lesserOrEqual\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:line\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.\",\n      \"rdfs:label\": \"line\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoShape\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:location\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location of the event or organization.\",\n      \"rdfs:label\": \"location\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Event\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:PostalAddress\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:logo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"URL of an image for the logo of the item.\",\n      \"rdfs:label\": \"logo\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Brand\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:longitude\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The longitude of a location. For example <code>-122.08585</code>.\",\n      \"rdfs:label\": \"longitude\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoCoordinates\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:lowPrice\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The lowest price of all offers available.\",\n      \"rdfs:label\": \"lowPrice\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AggregateOffer\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:mainContentOfPage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates if this web page element is the main subject of the page.\",\n      \"rdfs:label\": \"mainContentOfPage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:WebPageElement\"\n      }\n    },\n    {\n      \"@id\": \"schema:makesOffer\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to products or services offered by the organization or person.\",\n      \"rdfs:label\": \"makesOffer\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Offer\"\n      }\n    },\n    {\n      \"@id\": \"schema:manufacturer\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The manufacturer of the product.\",\n      \"rdfs:label\": \"manufacturer\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:map\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A URL to a map of the place.\",\n      \"rdfs:label\": \"map\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:maps\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A URL to a map of the place (legacy spelling; see singular form, map).\",\n      \"rdfs:label\": \"maps\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:maxPrice\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The highest price if the price is a range.\",\n      \"rdfs:label\": \"maxPrice\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PriceSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:maxValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The upper of the product characteristic.\",\n      \"rdfs:label\": \"maxValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:maximumIntake\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Recommended intake of this supplement for a given population as defined by a specific recommending authority.\",\n      \"rdfs:label\": \"maximumIntake\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DietarySupplement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MaximumDoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:mechanismOfAction\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.\",\n      \"rdfs:label\": \"mechanismOfAction\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:medicalSpecialty\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical specialty of the provider.\",\n      \"rdfs:label\": \"medicalSpecialty\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Hospital\"\n        },\n        {\n          \"@id\": \"schema:MedicalClinic\"\n        },\n        {\n          \"@id\": \"schema:Physician\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalSpecialty\"\n      }\n    },\n    {\n      \"@id\": \"schema:medicineSystem\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The system of medicine that includes this MedicalEntity, for example 'evidence-based', 'homeopathic', 'chiropractic', etc.\",\n      \"rdfs:label\": \"medicineSystem\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicineSystem\"\n      }\n    },\n    {\n      \"@id\": \"schema:member\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A member of this organization.\",\n      \"rdfs:label\": \"member\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:memberOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An organization to which the person belongs.\",\n      \"rdfs:label\": \"memberOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:members\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A member of this organization (legacy spelling; see singular form, member).\",\n      \"rdfs:label\": \"members\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Organization\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:memoryRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Minimum memory requirements.\",\n      \"rdfs:label\": \"memoryRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:mentions\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.\",\n      \"rdfs:label\": \"mentions\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:menu\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Either the actual menu or a URL of the menu.\",\n      \"rdfs:label\": \"menu\",\n      \"schema:domain\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:minPrice\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The lowest price if the price is a range.\",\n      \"rdfs:label\": \"minPrice\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PriceSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:minValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The lower value of the product characteristic.\",\n      \"rdfs:label\": \"minValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:model\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.\",\n      \"rdfs:label\": \"model\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ProductModel\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:mpn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.\",\n      \"rdfs:label\": \"mpn\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:musicBy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The composer of the movie or TV soundtrack.\",\n      \"rdfs:label\": \"musicBy\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:MusicGroup\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:musicGroupMember\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A member of the music group&#x2014;for example, John, Paul, George, or Ringo.\",\n      \"rdfs:label\": \"musicGroupMember\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicGroup\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:naics\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The North American Industry Classification System (NAICS) code for a particular organization or business person.\",\n      \"rdfs:label\": \"naics\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:name\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The name of the item.\",\n      \"rdfs:label\": \"name\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Thing\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:nationality\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Nationality of the person.\",\n      \"rdfs:label\": \"nationality\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Country\"\n      }\n    },\n    {\n      \"@id\": \"schema:naturalProgression\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The expected progression of the condition if it is not treated and allowed to progress naturally.\",\n      \"rdfs:label\": \"naturalProgression\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:nerve\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The underlying innervation associated with the muscle.\",\n      \"rdfs:label\": \"nerve\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Nerve\"\n      }\n    },\n    {\n      \"@id\": \"schema:nerveMotor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The neurological pathway extension that involves muscle control.\",\n      \"rdfs:label\": \"nerveMotor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Nerve\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Muscle\"\n      }\n    },\n    {\n      \"@id\": \"schema:nonEqual\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"This ordering relation for qualitative values indicates that the subject is not equal to the object.\",\n      \"rdfs:label\": \"nonEqual\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QualitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QualitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:nonProprietaryName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The generic name of this drug or supplement.\",\n      \"rdfs:label\": \"nonProprietaryName\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:Drug\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:normalRange\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Range of acceptable values for a typical patient, when applicable.\",\n      \"rdfs:label\": \"normalRange\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:numTracks\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of tracks in this album or playlist.\",\n      \"rdfs:label\": \"numTracks\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MusicPlaylist\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:numberOfEpisodes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of episodes in this season or series.\",\n      \"rdfs:label\": \"numberOfEpisodes\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:numberOfPages\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of pages in the book.\",\n      \"rdfs:label\": \"numberOfPages\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Book\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:nutrition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Nutrition information about the recipe.\",\n      \"rdfs:label\": \"nutrition\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:NutritionInformation\"\n      }\n    },\n    {\n      \"@id\": \"schema:occupationalCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Category or categories describing the job. Use BLS O*NET-SOC taxonomy: http://www.onetcenter.org/taxonomy.html. Ideally includes textual label and formal code, with the property repeated for each applicable value.\",\n      \"rdfs:label\": \"occupationalCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:offerCount\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of offers for the product.\",\n      \"rdfs:label\": \"offerCount\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AggregateOffer\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:offers\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An offer to sell this item&#x2014;for example, an offer to sell a product, the DVD of a movie, or tickets to an event.\",\n      \"rdfs:label\": \"offers\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:MediaObject\"\n        },\n        {\n          \"@id\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Offer\"\n      }\n    },\n    {\n      \"@id\": \"schema:openingHours\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.<br />- Days are specified using the following two-letter combinations: <code>Mo</code>, <code>Tu</code>, <code>We</code>, <code>Th</code>, <code>Fr</code>, <code>Sa</code>, <code>Su</code>.<br />- Times are specified using 24:00 time. For example, 3pm is specified as <code>15:00</code>. <br />- Here is an example: <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Tu,Th 16:00-20:00&quot;&gt;Tuesdays and Thursdays 4-8pm&lt;/time&gt;</code>. <br />- If a business is open 7 days a week, then it can be specified as <code>&lt;time itemprop=&quot;openingHours&quot; datetime=&quot;Mo-Su&quot;&gt;Monday through Sunday, all day&lt;/time&gt;</code>.\",\n      \"rdfs:label\": \"openingHours\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:LocalBusiness\"\n        },\n        {\n          \"@id\": \"schema:CivicStructure\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:openingHoursSpecification\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The opening hours of a certain place.\",\n      \"rdfs:label\": \"openingHoursSpecification\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:OpeningHoursSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:opens\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The opening hour of the place or service on the given day(s) of the week.\",\n      \"rdfs:label\": \"opens\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OpeningHoursSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Time\"\n      }\n    },\n    {\n      \"@id\": \"schema:operatingSystem\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Operating systems supported (Windows 7, OSX 10.6, Android 1.6).\",\n      \"rdfs:label\": \"operatingSystem\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:origin\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The place or point where a muscle arises.\",\n      \"rdfs:label\": \"origin\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Muscle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:originatesFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The vasculature the lymphatic structure originates, or afferents, from.\",\n      \"rdfs:label\": \"originatesFrom\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LymphaticVessel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:outcome\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Expected or actual outcomes of the study.\",\n      \"rdfs:label\": \"outcome\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:overdosage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.\",\n      \"rdfs:label\": \"overdosage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:overview\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Descriptive information establishing the overarching theory/philosophy of the plan. May include the rationale for the name, the population where the plan first came to prominence, etc.\",\n      \"rdfs:label\": \"overview\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:ownedFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date and time of obtaining the product.\",\n      \"rdfs:label\": \"ownedFrom\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OwnershipInfo\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:ownedThrough\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date and time of giving up ownership on the product.\",\n      \"rdfs:label\": \"ownedThrough\",\n      \"schema:domain\": {\n        \"@id\": \"schema:OwnershipInfo\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:owns\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Products owned by the organization or person.\",\n      \"rdfs:label\": \"owns\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:OwnershipInfo\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:parent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A parent of this person.\",\n      \"rdfs:label\": \"parent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:parents\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A parents of the person (legacy spelling; see singular form, parent).\",\n      \"rdfs:label\": \"parents\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:partOfSeason\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The season to which this episode belongs.\",\n      \"rdfs:label\": \"partOfSeason\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TVEpisode\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:TVSeason\"\n      }\n    },\n    {\n      \"@id\": \"schema:partOfSystem\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The anatomical or organ system that this structure is part of.\",\n      \"rdfs:label\": \"partOfSystem\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalSystem\"\n      }\n    },\n    {\n      \"@id\": \"schema:partOfTVSeries\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The TV series to which this episode or season belongs.\",\n      \"rdfs:label\": \"partOfTVSeries\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeason\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:TVSeries\"\n      }\n    },\n    {\n      \"@id\": \"schema:pathophysiology\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.\",\n      \"rdfs:label\": \"pathophysiology\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:PhysicalActivity\"\n        },\n        {\n          \"@id\": \"schema:MedicalCondition\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:paymentAccepted\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Cash, credit card, etc.\",\n      \"rdfs:label\": \"paymentAccepted\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LocalBusiness\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:performer\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A performer at the event&#x2014;for example, a presenter, musician, musical group or actor.\",\n      \"rdfs:label\": \"performer\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:performerIn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Event that this person is a performer or participant in.\",\n      \"rdfs:label\": \"performerIn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:performers\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The main performer or performers of the event&#x2014;for example, a presenter, musician, or actor (legacy spelling; see singular form, performer).\",\n      \"rdfs:label\": \"performers\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:permissions\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).\",\n      \"rdfs:label\": \"permissions\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:phase\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The phase of the trial.\",\n      \"rdfs:label\": \"phase\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTrial\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:photo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A photograph of this place.\",\n      \"rdfs:label\": \"photo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:Photograph\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:photos\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Photographs of this place (legacy spelling; see singular form, photo).\",\n      \"rdfs:label\": \"photos\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Place\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:Photograph\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:physiologicalBenefits\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specific physiologic benefits associated to the plan.\",\n      \"rdfs:label\": \"physiologicalBenefits\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:playerType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Player type required&#x2014;for example, Flash or Silverlight.\",\n      \"rdfs:label\": \"playerType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:polygon\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more spacedelimited points where the first and final points are identical.\",\n      \"rdfs:label\": \"polygon\",\n      \"schema:domain\": {\n        \"@id\": \"schema:GeoShape\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:population\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any characteristics of the population used in the study, e.g. 'males under 65'.\",\n      \"rdfs:label\": \"population\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:possibleComplication\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.\",\n      \"rdfs:label\": \"possibleComplication\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:possibleTreatment\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A possible treatment to address this condition, sign or symptom.\",\n      \"rdfs:label\": \"possibleTreatment\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalCondition\"\n        },\n        {\n          \"@id\": \"schema:MedicalSignOrSymptom\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:postOfficeBoxNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The post offce box number for PO box addresses.\",\n      \"rdfs:label\": \"postOfficeBoxNumber\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:postOp\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A description of the postoperative procedures, care, and/or followups for this device.\",\n      \"rdfs:label\": \"postOp\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalDevice\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:postalCode\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The postal code. For example, 94043.\",\n      \"rdfs:label\": \"postalCode\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:preOp\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A description of the workup, testing, and other preparations required before implanting this device.\",\n      \"rdfs:label\": \"preOp\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalDevice\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:predecessorOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer from a previous, often discontinued variant of the product to its newer variant.\",\n      \"rdfs:label\": \"predecessorOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ProductModel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:ProductModel\"\n      }\n    },\n    {\n      \"@id\": \"schema:pregnancyCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Pregnancy category of this drug.\",\n      \"rdfs:label\": \"pregnancyCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugPregnancyCategory\"\n      }\n    },\n    {\n      \"@id\": \"schema:pregnancyWarning\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any precaution, guidance, contraindication, etc. related to this drug's use during pregnancy.\",\n      \"rdfs:label\": \"pregnancyWarning\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:prepTime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The length of time it takes to prepare the recipe, in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>.\",\n      \"rdfs:label\": \"prepTime\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:preparation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Typical preparation that a patient must undergo before having the procedure performed.\",\n      \"rdfs:label\": \"preparation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalProcedure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:prescribingInfo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Link to prescribing information for the drug.\",\n      \"rdfs:label\": \"prescribingInfo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:prescriptionStatus\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates whether this drug is available by prescription or over-the-counter.\",\n      \"rdfs:label\": \"prescriptionStatus\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DrugPrescriptionStatus\"\n      }\n    },\n    {\n      \"@id\": \"schema:price\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.\",\n      \"rdfs:label\": \"price\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:priceCurrency\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The currency (in 3-letter ISO 4217 format) of the offer price or a price component, when attached to PriceSpecification and its subtypes.\",\n      \"rdfs:label\": \"priceCurrency\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:priceRange\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The price range of the business, for example <code>$$$</code>.\",\n      \"rdfs:label\": \"priceRange\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LocalBusiness\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:priceSpecification\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One or more detailed price specifications, indicating the unit price and delivery or payment charges.\",\n      \"rdfs:label\": \"priceSpecification\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:PriceSpecification\"\n      }\n    },\n    {\n      \"@id\": \"schema:priceType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A short text or acronym indicating multiple price specifications for the same offer, e.g. SRP for the suggested retail price or INVOICE for the invoice price, mostly used in the car industry.\",\n      \"rdfs:label\": \"priceType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UnitPriceSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:priceValidUntil\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The date after which the price is no longer available.\",\n      \"rdfs:label\": \"priceValidUntil\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Offer\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:primaryImageOfPage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates the main image on the page\",\n      \"rdfs:label\": \"primaryImageOfPage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:ImageObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:primaryPrevention\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.\",\n      \"rdfs:label\": \"primaryPrevention\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:printColumn\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of the column in which the NewsArticle appears in the print edition.\",\n      \"rdfs:label\": \"printColumn\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NewsArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:printEdition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The edition of the print product in which the NewsArticle appears.\",\n      \"rdfs:label\": \"printEdition\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NewsArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:printPage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).\",\n      \"rdfs:label\": \"printPage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NewsArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:printSection\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If this NewsArticle appears in print, this field indicates the print section in which the article appeared.\",\n      \"rdfs:label\": \"printSection\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NewsArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:procedure\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A description of the procedure involved in setting up, using, and/or installing the device.\",\n      \"rdfs:label\": \"procedure\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalDevice\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:procedureType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The type of procedure, for example Surgical, Noninvasive, or Percutaneous.\",\n      \"rdfs:label\": \"procedureType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalProcedure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalProcedureType\"\n      }\n    },\n    {\n      \"@id\": \"schema:processorRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Processor architecture required to run the application (e.g. IA64).\",\n      \"rdfs:label\": \"processorRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:producer\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The producer of the movie, TV series, season, or episode, or video.\",\n      \"rdfs:label\": \"producer\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:productID\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The product identifier, such as ISBN. For example: <code>&lt;meta itemprop='productID' content='isbn:123-456-789'/&gt;</code>.\",\n      \"rdfs:label\": \"productID\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:productionCompany\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The production company or studio that made the movie, TV series, season, or episode, or video.\",\n      \"rdfs:label\": \"productionCompany\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        },\n        {\n          \"@id\": \"schema:VideoObject\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:proficiencyLevel\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Proficiency needed for this content; expected values: 'Beginner', 'Expert'.\",\n      \"rdfs:label\": \"proficiencyLevel\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TechArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:programmingLanguage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The computer programming language.\",\n      \"rdfs:label\": \"programmingLanguage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Code\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Thing\"\n      }\n    },\n    {\n      \"@id\": \"schema:programmingModel\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates whether API is managed or unmanaged.\",\n      \"rdfs:label\": \"programmingModel\",\n      \"schema:domain\": {\n        \"@id\": \"schema:APIReference\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:proprietaryName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Proprietary name given to the diet plan, typically by its originator or creator.\",\n      \"rdfs:label\": \"proprietaryName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:proteinContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of protein.\",\n      \"rdfs:label\": \"proteinContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:provider\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies the Person or Organization that distributed the CreativeWork.\",\n      \"rdfs:label\": \"provider\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:publicationType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The type of the medical article, taken from the US NLM MeSH <a href=http://www.nlm.nih.gov/mesh/pubtypes.html>publication type catalog.\",\n      \"rdfs:label\": \"publicationType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalScholarlyArticle\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:publisher\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The publisher of the creative work.\",\n      \"rdfs:label\": \"publisher\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:publishingPrinciples\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Link to page describing the editorial principles of the organization primarily responsible for the creation of the CreativeWork.\",\n      \"rdfs:label\": \"publishingPrinciples\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:purpose\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The purpose or purposes of this device, for example whether it is intended for diagnostic or therapeutic use.\",\n      \"rdfs:label\": \"purpose\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalDevice\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalDevicePurpose\"\n      }\n    },\n    {\n      \"@id\": \"schema:qualifications\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specific qualifications required for this role.\",\n      \"rdfs:label\": \"qualifications\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:rangeIncludes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.\",\n      \"rdfs:label\": \"rangeIncludes\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Property\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Class\"\n      }\n    },\n    {\n      \"@id\": \"schema:ratingCount\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The count of total number of ratings.\",\n      \"rdfs:label\": \"ratingCount\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AggregateRating\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:ratingValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The rating for the content.\",\n      \"rdfs:label\": \"ratingValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Rating\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recipeCategory\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The category of the recipe&#x2014;for example, appetizer, entree, etc.\",\n      \"rdfs:label\": \"recipeCategory\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recipeCuisine\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The cuisine of the recipe (for example, French or Ethopian).\",\n      \"rdfs:label\": \"recipeCuisine\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recipeInstructions\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The steps to make the dish.\",\n      \"rdfs:label\": \"recipeInstructions\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recipeYield\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The quantity produced by the recipe (for example, number of people served, number of servings, etc).\",\n      \"rdfs:label\": \"recipeYield\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recognizingAuthority\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.\",\n      \"rdfs:label\": \"recognizingAuthority\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:recommendationStrength\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Strength of the guideline's recommendation (e.g. 'class I').\",\n      \"rdfs:label\": \"recommendationStrength\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalGuidelineRecommendation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:recommendedIntake\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Recommended intake of this supplement for a given population as defined by a specific recommending authority.\",\n      \"rdfs:label\": \"recommendedIntake\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DietarySupplement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:RecommendedDoseSchedule\"\n      }\n    },\n    {\n      \"@id\": \"schema:regionDrained\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.\",\n      \"rdfs:label\": \"regionDrained\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:LymphaticVessel\"\n        },\n        {\n          \"@id\": \"schema:Vein\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:regionsAllowed\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The regions where the media is allowed. If not specified, then it's assumed to be allowed everywhere. Specify the countries in <a href='http://en.wikipedia.org/wiki/ISO_3166'>ISO 3166 format</a>.\",\n      \"rdfs:label\": \"regionsAllowed\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedAnatomy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Anatomical systems or structures that relate to the superficial anatomy.\",\n      \"rdfs:label\": \"relatedAnatomy\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SuperficialAnatomy\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:relatedCondition\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical condition associated with this anatomy.\",\n      \"rdfs:label\": \"relatedCondition\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedDrug\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any other drug related to this one, for example commonly-prescribed alternatives.\",\n      \"rdfs:label\": \"relatedDrug\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Drug\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedLink\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A link related to this web page, for example to other related web pages.\",\n      \"rdfs:label\": \"relatedLink\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedStructure\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.\",\n      \"rdfs:label\": \"relatedStructure\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalSystem\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedTherapy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical therapy related to this anatomy.\",\n      \"rdfs:label\": \"relatedTherapy\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:AnatomicalSystem\"\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:relatedTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The most generic familial relation.\",\n      \"rdfs:label\": \"relatedTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:releaseDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The release date of a product or product model. This can be used to distinguish the exact variant of a product.\",\n      \"rdfs:label\": \"releaseDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:releaseNotes\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Description of what changed in this version.\",\n      \"rdfs:label\": \"releaseNotes\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:relevantSpecialty\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If applicable, a medical specialty in which this entity is relevant.\",\n      \"rdfs:label\": \"relevantSpecialty\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalSpecialty\"\n      }\n    },\n    {\n      \"@id\": \"schema:repetitions\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Number of times one should repeat the activity.\",\n      \"rdfs:label\": \"repetitions\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:replyToUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The URL at which a reply may be posted to the specified UserComment.\",\n      \"rdfs:label\": \"replyToUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:UserComments\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:representativeOfPage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates whether this image is representative of the content of the page.\",\n      \"rdfs:label\": \"representativeOfPage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ImageObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:requirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).\",\n      \"rdfs:label\": \"requirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:requiresSubscription\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Indicates if use of the media require a subscription  (either paid or free). Allowed values are <code>true</code> or <code>false</code> (note that an earlier version had 'yes', 'no').\",\n      \"rdfs:label\": \"requiresSubscription\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:responsibilities\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Responsibilities associated with this role.\",\n      \"rdfs:label\": \"responsibilities\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:restPeriods\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"How often one should break from the activity.\",\n      \"rdfs:label\": \"restPeriods\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:review\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A review of the item.\",\n      \"rdfs:label\": \"review\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Review\"\n      }\n    },\n    {\n      \"@id\": \"schema:reviewBody\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The actual body of the review\",\n      \"rdfs:label\": \"reviewBody\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Review\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:reviewCount\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The count of total number of reviews.\",\n      \"rdfs:label\": \"reviewCount\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AggregateRating\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:reviewRating\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The rating given in this review. Note that reviews can themselves be rated. The <code>reviewRating</code> applies to rating given by the review. The <code>aggregateRating</code> property applies to the review itself, as a creative work.\",\n      \"rdfs:label\": \"reviewRating\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Review\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Rating\"\n      }\n    },\n    {\n      \"@id\": \"schema:reviewedBy\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"People or organizations that have reviewed the content on this web page for accuracy and/or completeness.\",\n      \"rdfs:label\": \"reviewedBy\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:reviews\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Review of the item (legacy spelling; see singular form, review).\",\n      \"rdfs:label\": \"reviews\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:CreativeWork\"\n        },\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Review\"\n      }\n    },\n    {\n      \"@id\": \"schema:riskFactor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age,  coexisting condition.\",\n      \"rdfs:label\": \"riskFactor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalRiskFactor\"\n      }\n    },\n    {\n      \"@id\": \"schema:risks\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specific physiologic risks associated to the plan.\",\n      \"rdfs:label\": \"risks\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Diet\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:runsTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The vasculature the lymphatic structure runs, or efferents, to.\",\n      \"rdfs:label\": \"runsTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:LymphaticVessel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Vessel\"\n      }\n    },\n    {\n      \"@id\": \"schema:runtime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0)\",\n      \"rdfs:label\": \"runtime\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Code\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:safetyConsideration\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.\",\n      \"rdfs:label\": \"safetyConsideration\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DietarySupplement\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:salaryCurrency\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The currency (coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 used for the main salary information in this job posting.\",\n      \"rdfs:label\": \"salaryCurrency\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:sampleType\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Full (compile ready) solution, code snippet, inline code, scripts, template.\",\n      \"rdfs:label\": \"sampleType\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Code\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:saturatedFatContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of saturated fat.\",\n      \"rdfs:label\": \"saturatedFatContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:screenshot\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A link to a screenshot image of the app.\",\n      \"rdfs:label\": \"screenshot\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:season\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A season of a TV series.\",\n      \"rdfs:label\": \"season\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TVSeries\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:TVSeason\"\n      }\n    },\n    {\n      \"@id\": \"schema:seasonNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The season number.\",\n      \"rdfs:label\": \"seasonNumber\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TVSeason\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:seasons\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The seasons of the TV series (legacy spelling; see singular form, season).\",\n      \"rdfs:label\": \"seasons\",\n      \"schema:domain\": {\n        \"@id\": \"schema:TVSeries\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:TVSeason\"\n      }\n    },\n    {\n      \"@id\": \"schema:secondaryPrevention\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.\",\n      \"rdfs:label\": \"secondaryPrevention\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTherapy\"\n      }\n    },\n    {\n      \"@id\": \"schema:seeks\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to products or services sought by the organization or person (demand).\",\n      \"rdfs:label\": \"seeks\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Demand\"\n      }\n    },\n    {\n      \"@id\": \"schema:seller\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The seller.\",\n      \"rdfs:label\": \"seller\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:sensoryUnit\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The neurological pathway extension that inputs and sends information to the brain or spinal cord.\",\n      \"rdfs:label\": \"sensoryUnit\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Nerve\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:AnatomicalStructure\"\n        },\n        {\n          \"@id\": \"schema:SuperficialAnatomy\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:serialNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.\",\n      \"rdfs:label\": \"serialNumber\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        },\n        {\n          \"@id\": \"schema:IndividualProduct\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:seriousAdverseOutcome\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.\",\n      \"rdfs:label\": \"seriousAdverseOutcome\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MedicalTherapy\"\n        },\n        {\n          \"@id\": \"schema:MedicalDevice\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:servesCuisine\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The cuisine of the restaurant.\",\n      \"rdfs:label\": \"servesCuisine\",\n      \"schema:domain\": {\n        \"@id\": \"schema:FoodEstablishment\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:servingSize\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The serving size, in terms of the number of volume or mass\",\n      \"rdfs:label\": \"servingSize\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:sibling\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A sibling of the person.\",\n      \"rdfs:label\": \"sibling\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:siblings\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A sibling of the person (legacy spelling; see singular form, sibling).\",\n      \"rdfs:label\": \"siblings\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:signDetected\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A sign detected by the test.\",\n      \"rdfs:label\": \"signDetected\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalSign\"\n      }\n    },\n    {\n      \"@id\": \"schema:signOrSymptom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experienceof the medical condition.\",\n      \"rdfs:label\": \"signOrSymptom\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalSignOrSymptom\"\n      }\n    },\n    {\n      \"@id\": \"schema:significance\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.\",\n      \"rdfs:label\": \"significance\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SuperficialAnatomy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:significantLink\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.\",\n      \"rdfs:label\": \"significantLink\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:significantLinks\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most (legacy spelling; see singular form, significantLink).\",\n      \"rdfs:label\": \"significantLinks\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:skills\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Skills required to fulfill this role.\",\n      \"rdfs:label\": \"skills\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:sku\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.\",\n      \"rdfs:label\": \"sku\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:sodiumContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of milligrams of sodium.\",\n      \"rdfs:label\": \"sodiumContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:softwareVersion\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Version of the software instance.\",\n      \"rdfs:label\": \"softwareVersion\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:source\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The anatomical or organ system that the artery originates from.\",\n      \"rdfs:label\": \"source\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Artery\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:sourceOrganization\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Organization on whose behalf the creator was working.\",\n      \"rdfs:label\": \"sourceOrganization\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:sourcedFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The neurological pathway that originates the neurons.\",\n      \"rdfs:label\": \"sourcedFrom\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Nerve\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:BrainStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:spatial\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The range of spatial applicability of a dataset, e.g. for a dataset of New York weather, the state of New York.\",\n      \"rdfs:label\": \"spatial\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Dataset\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Place\"\n      }\n    },\n    {\n      \"@id\": \"schema:specialCommitments\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.\",\n      \"rdfs:label\": \"specialCommitments\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:specialty\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"One of the domain specialities to which this web page's content applies.\",\n      \"rdfs:label\": \"specialty\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WebPage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Specialty\"\n      }\n    },\n    {\n      \"@id\": \"schema:sponsor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Sponsor of the study.\",\n      \"rdfs:label\": \"sponsor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:spouse\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The person's spouse.\",\n      \"rdfs:label\": \"spouse\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Person\"\n      }\n    },\n    {\n      \"@id\": \"schema:stage\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The stage of the condition, if applicable.\",\n      \"rdfs:label\": \"stage\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalConditionStage\"\n      }\n    },\n    {\n      \"@id\": \"schema:stageAsNumber\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The stage represented as a number, e.g. 3.\",\n      \"rdfs:label\": \"stageAsNumber\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalConditionStage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:startDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The start date and time of the event (in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 date format</a>).\",\n      \"rdfs:label\": \"startDate\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Event\"\n        },\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:status\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The status of the study (enumerated).\",\n      \"rdfs:label\": \"status\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalStudyStatus\"\n      }\n    },\n    {\n      \"@id\": \"schema:storageRequirements\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Storage requirements (free space required).\",\n      \"rdfs:label\": \"storageRequirements\",\n      \"schema:domain\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:streetAddress\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The street address. For example, 1600 Amphitheatre Pkwy.\",\n      \"rdfs:label\": \"streetAddress\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PostalAddress\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:strengthUnit\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The units of an active ingredient's strength, e.g. mg.\",\n      \"rdfs:label\": \"strengthUnit\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugStrength\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:strengthValue\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The value of an active ingredient's strength, e.g. 325.\",\n      \"rdfs:label\": \"strengthValue\",\n      \"schema:domain\": {\n        \"@id\": \"schema:DrugStrength\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:structuralClass\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The name given to how bone physically connects to each other.\",\n      \"rdfs:label\": \"structuralClass\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Joint\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:study\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical study or trial related to this entity.\",\n      \"rdfs:label\": \"study\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalEntity\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalStudy\"\n      }\n    },\n    {\n      \"@id\": \"schema:studyDesign\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifics about the observational study design (enumerated).\",\n      \"rdfs:label\": \"studyDesign\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalObservationalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalObservationalStudyDesign\"\n      }\n    },\n    {\n      \"@id\": \"schema:studyLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The location in which the study is taking/took place.\",\n      \"rdfs:label\": \"studyLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AdministrativeArea\"\n      }\n    },\n    {\n      \"@id\": \"schema:studySubject\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.\",\n      \"rdfs:label\": \"studySubject\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalStudy\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalEntity\"\n      }\n    },\n    {\n      \"@id\": \"schema:subEvent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An Event that is part of this event. For example, a conference event includes many presentations, each are a subEvent of the conference.\",\n      \"rdfs:label\": \"subEvent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:subEvents\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Events that are a part of this event. For example, a conference event includes many presentations, each are subEvents of the conference (legacy spelling; see singular form, subEvent).\",\n      \"rdfs:label\": \"subEvents\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:subStageSuffix\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The substage, e.g. 'a' for Stage IIIa.\",\n      \"rdfs:label\": \"subStageSuffix\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalConditionStage\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:subStructure\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Component (sub-)structure(s) that comprise this anatomical structure.\",\n      \"rdfs:label\": \"subStructure\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:subTest\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A component test of the panel.\",\n      \"rdfs:label\": \"subTest\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTestPanel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:subtype\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A more specific type of the condition, where applicable, for example 'Type 1 Diabetes', 'Type 2 Diabetes', or 'Gestational Diabetes' for Diabetes.\",\n      \"rdfs:label\": \"subtype\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:successorOf\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer from a newer variant of a product  to its previous, often discontinued predecessor.\",\n      \"rdfs:label\": \"successorOf\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ProductModel\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:ProductModel\"\n      }\n    },\n    {\n      \"@id\": \"schema:sugarContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of sugar.\",\n      \"rdfs:label\": \"sugarContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:suggestedGender\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The gender of the person or audience.\",\n      \"rdfs:label\": \"suggestedGender\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PeopleAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:suggestedMaxAge\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Maximal age recommended for viewing content\",\n      \"rdfs:label\": \"suggestedMaxAge\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PeopleAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:suggestedMinAge\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Minimal age recommended for viewing content\",\n      \"rdfs:label\": \"suggestedMinAge\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PeopleAudience\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:superEvent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.\",\n      \"rdfs:label\": \"superEvent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Event\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Event\"\n      }\n    },\n    {\n      \"@id\": \"schema:supplyTo\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The area to which the artery supplies blood to.\",\n      \"rdfs:label\": \"supplyTo\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Artery\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetDescription\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The description of a node in an established educational framework.\",\n      \"rdfs:label\": \"targetDescription\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AlignmentObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetName\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The name of a node in an established educational framework.\",\n      \"rdfs:label\": \"targetName\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AlignmentObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetPlatform\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Type of app development: phone, Metro style, desktop, XBox, etc.\",\n      \"rdfs:label\": \"targetPlatform\",\n      \"schema:domain\": {\n        \"@id\": \"schema:APIReference\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetPopulation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Characteristics of the population for which this is intended, or which typically uses it, e.g. 'adults'.\",\n      \"rdfs:label\": \"targetPopulation\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:DietarySupplement\"\n        },\n        {\n          \"@id\": \"schema:DoseSchedule\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetProduct\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Target Operating System / Product to which the code applies.  If applies to several versions, just the product name can be used.\",\n      \"rdfs:label\": \"targetProduct\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Code\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:SoftwareApplication\"\n      }\n    },\n    {\n      \"@id\": \"schema:targetUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The URL of a node in an established educational framework.\",\n      \"rdfs:label\": \"targetUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:AlignmentObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:taxID\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.\",\n      \"rdfs:label\": \"taxID\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:telephone\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The telephone number.\",\n      \"rdfs:label\": \"telephone\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        },\n        {\n          \"@id\": \"schema:ContactPoint\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:temporal\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).\",\n      \"rdfs:label\": \"temporal\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Dataset\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:text\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The textual content of this CreativeWork.\",\n      \"rdfs:label\": \"text\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:thumbnail\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Thumbnail image for an image or video.\",\n      \"rdfs:label\": \"thumbnail\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:ImageObject\"\n        },\n        {\n          \"@id\": \"schema:VideoObject\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:ImageObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:thumbnailUrl\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A thumbnail image relevant to the Thing.\",\n      \"rdfs:label\": \"thumbnailUrl\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:tickerSymbol\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we reccommend using the controlled vocaulary of Market Identifier Codes (MIC) specified in ISO15022.\",\n      \"rdfs:label\": \"tickerSymbol\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Corporation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:timeRequired\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. 'P30M', 'P1H25M'.\",\n      \"rdfs:label\": \"timeRequired\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:tissueSample\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The type of tissue sample required for the test.\",\n      \"rdfs:label\": \"tissueSample\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PathologyTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:title\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The title of the job.\",\n      \"rdfs:label\": \"title\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:totalTime\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The total time it takes to prepare and cook the recipe, in <a href='http://en.wikipedia.org/wiki/ISO_8601'>ISO 8601 duration format</a>.\",\n      \"rdfs:label\": \"totalTime\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Recipe\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Duration\"\n      }\n    },\n    {\n      \"@id\": \"schema:track\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A music recording (track)&#x2014;usually a single song.\",\n      \"rdfs:label\": \"track\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MusicPlaylist\"\n        },\n        {\n          \"@id\": \"schema:MusicGroup\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MusicRecording\"\n      }\n    },\n    {\n      \"@id\": \"schema:tracks\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A music recording (track)&#x2014;usually a single song (legacy spelling; see singular form, track).\",\n      \"rdfs:label\": \"tracks\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MusicPlaylist\"\n        },\n        {\n          \"@id\": \"schema:MusicGroup\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:MusicRecording\"\n      }\n    },\n    {\n      \"@id\": \"schema:trailer\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The trailer of the movie or TV series, season, or episode.\",\n      \"rdfs:label\": \"trailer\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Movie\"\n        },\n        {\n          \"@id\": \"schema:TVEpisode\"\n        },\n        {\n          \"@id\": \"schema:TVSeason\"\n        },\n        {\n          \"@id\": \"schema:TVSeries\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:VideoObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:transFatContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of trans fat.\",\n      \"rdfs:label\": \"transFatContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:transcript\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"If this MediaObject is an AudioObject or VideoObject, the transcript of that object.\",\n      \"rdfs:label\": \"transcript\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:AudioObject\"\n        },\n        {\n          \"@id\": \"schema:VideoObject\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:transmissionMethod\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"How the disease spreads, either as a route or vector, for example 'direct contact', 'Aedes aegypti', etc.\",\n      \"rdfs:label\": \"transmissionMethod\",\n      \"schema:domain\": {\n        \"@id\": \"schema:InfectiousDisease\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:trialDesign\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifics about the trial design (enumerated).\",\n      \"rdfs:label\": \"trialDesign\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTrial\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTrialDesign\"\n      }\n    },\n    {\n      \"@id\": \"schema:tributary\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.\",\n      \"rdfs:label\": \"tributary\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Vein\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:AnatomicalStructure\"\n      }\n    },\n    {\n      \"@id\": \"schema:typeOfGood\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The product that this structured value is referring to.\",\n      \"rdfs:label\": \"typeOfGood\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:OwnershipInfo\"\n        },\n        {\n          \"@id\": \"schema:TypeAndQuantityNode\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Product\"\n      }\n    },\n    {\n      \"@id\": \"schema:typicalAgeRange\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The typical range of ages the content's intendedEndUser, for example '7-9', '11-'.\",\n      \"rdfs:label\": \"typicalAgeRange\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:typicalTest\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A medical test typically performed given this condition.\",\n      \"rdfs:label\": \"typicalTest\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalCondition\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalTest\"\n      }\n    },\n    {\n      \"@id\": \"schema:unitCode\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The unit of measurement given using the UN/CEFACT Common Code (3 characters).\",\n      \"rdfs:label\": \"unitCode\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:QuantitativeValue\"\n        },\n        {\n          \"@id\": \"schema:TypeAndQuantityNode\"\n        },\n        {\n          \"@id\": \"schema:UnitPriceSpecification\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:unsaturatedFatContent\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of grams of unsaturated fat.\",\n      \"rdfs:label\": \"unsaturatedFatContent\",\n      \"schema:domain\": {\n        \"@id\": \"schema:NutritionInformation\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Mass\"\n      }\n    },\n    {\n      \"@id\": \"schema:uploadDate\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Date when this media object was uploaded to this site.\",\n      \"rdfs:label\": \"uploadDate\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MediaObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Date\"\n      }\n    },\n    {\n      \"@id\": \"schema:url\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"URL of the item.\",\n      \"rdfs:label\": \"url\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Thing\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:URL\"\n      }\n    },\n    {\n      \"@id\": \"schema:usedToDiagnose\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A condition the test is used to diagnose.\",\n      \"rdfs:label\": \"usedToDiagnose\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalCondition\"\n      }\n    },\n    {\n      \"@id\": \"schema:usesDevice\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Device used to perform the test.\",\n      \"rdfs:label\": \"usesDevice\",\n      \"schema:domain\": {\n        \"@id\": \"schema:MedicalTest\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:MedicalDevice\"\n      }\n    },\n    {\n      \"@id\": \"schema:validFrom\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The beginning of the validity of offer, price specification, or opening hours data.\",\n      \"rdfs:label\": \"validFrom\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        },\n        {\n          \"@id\": \"schema:OpeningHoursSpecification\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:validThrough\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The end of the validity of offer, price specification, or opening hours data.\",\n      \"rdfs:label\": \"validThrough\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:PriceSpecification\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        },\n        {\n          \"@id\": \"schema:OpeningHoursSpecification\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:DateTime\"\n      }\n    },\n    {\n      \"@id\": \"schema:value\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The value of the product characteristic.\",\n      \"rdfs:label\": \"value\",\n      \"schema:domain\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:valueAddedTaxIncluded\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.\",\n      \"rdfs:label\": \"valueAddedTaxIncluded\",\n      \"schema:domain\": {\n        \"@id\": \"schema:PriceSpecification\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Boolean\"\n      }\n    },\n    {\n      \"@id\": \"schema:valueReference\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.\",\n      \"rdfs:label\": \"valueReference\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:QualitativeValue\"\n        },\n        {\n          \"@id\": \"schema:QuantitativeValue\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Enumeration\"\n        },\n        {\n          \"@id\": \"schema:StructuredValue\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:vatID\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The Value-added Tax ID of the organisation or person.\",\n      \"rdfs:label\": \"vatID\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Organization\"\n        },\n        {\n          \"@id\": \"schema:Person\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:version\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The version of the CreativeWork embodied by a specified resource.\",\n      \"rdfs:label\": \"version\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Number\"\n      }\n    },\n    {\n      \"@id\": \"schema:video\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"An embedded video object.\",\n      \"rdfs:label\": \"video\",\n      \"schema:domain\": {\n        \"@id\": \"schema:CreativeWork\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:VideoObject\"\n      }\n    },\n    {\n      \"@id\": \"schema:videoFrameSize\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The frame size of the video.\",\n      \"rdfs:label\": \"videoFrameSize\",\n      \"schema:domain\": {\n        \"@id\": \"schema:VideoObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:videoQuality\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The quality of the video.\",\n      \"rdfs:label\": \"videoQuality\",\n      \"schema:domain\": {\n        \"@id\": \"schema:VideoObject\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:warning\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Any FDA or other warnings about the drug (text or URL).\",\n      \"rdfs:label\": \"warning\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Drug\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Text\"\n        },\n        {\n          \"@id\": \"schema:URL\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:warranty\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The warranty promise(s) included in the offer.\",\n      \"rdfs:label\": \"warranty\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:Offer\"\n        },\n        {\n          \"@id\": \"schema:Demand\"\n        }\n      ],\n      \"schema:range\": {\n        \"@id\": \"schema:WarrantyPromise\"\n      }\n    },\n    {\n      \"@id\": \"schema:warrantyScope\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The scope of the warranty promise.\",\n      \"rdfs:label\": \"warrantyScope\",\n      \"schema:domain\": {\n        \"@id\": \"schema:WarrantyPromise\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:WarrantyScope\"\n      }\n    },\n    {\n      \"@id\": \"schema:weight\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The weight of the product.\",\n      \"rdfs:label\": \"weight\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Product\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:QuantitativeValue\"\n      }\n    },\n    {\n      \"@id\": \"schema:width\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The width of the item.\",\n      \"rdfs:label\": \"width\",\n      \"schema:domain\": [\n        {\n          \"@id\": \"schema:MediaObject\"\n        },\n        {\n          \"@id\": \"schema:Product\"\n        }\n      ],\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Distance\"\n        },\n        {\n          \"@id\": \"schema:QuantitativeValue\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:wordCount\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The number of words in the text of the Article.\",\n      \"rdfs:label\": \"wordCount\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Article\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Integer\"\n      }\n    },\n    {\n      \"@id\": \"schema:workHours\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).\",\n      \"rdfs:label\": \"workHours\",\n      \"schema:domain\": {\n        \"@id\": \"schema:JobPosting\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Text\"\n      }\n    },\n    {\n      \"@id\": \"schema:workLocation\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"A contact location for a person's place of work.\",\n      \"rdfs:label\": \"workLocation\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:ContactPoint\"\n        },\n        {\n          \"@id\": \"schema:Place\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"schema:workload\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.\",\n      \"rdfs:label\": \"workload\",\n      \"schema:domain\": {\n        \"@id\": \"schema:ExercisePlan\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Energy\"\n      }\n    },\n    {\n      \"@id\": \"schema:worksFor\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"Organizations that the person works for.\",\n      \"rdfs:label\": \"worksFor\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Person\"\n      },\n      \"schema:range\": {\n        \"@id\": \"schema:Organization\"\n      }\n    },\n    {\n      \"@id\": \"schema:worstRating\",\n      \"@type\": \"rdf:Property\",\n      \"rdfs:comment\": \"The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.\",\n      \"rdfs:label\": \"worstRating\",\n      \"schema:domain\": {\n        \"@id\": \"schema:Rating\"\n      },\n      \"schema:range\": [\n        {\n          \"@id\": \"schema:Number\"\n        },\n        {\n          \"@id\": \"schema:Text\"\n        }\n      ]\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class is based upon W3C DCAT work, and benefits from collaboration around the DCAT, ADMS and VoID vocabularies. See http://www.w3.org/wiki/WebSchemas/Datasets for full details and mappings.\",\n      \"rdfs:label\": \"DatasetClass\"\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class is derived from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at <a href=\\\"http://purl.org/goodrelations/\\\">http://purl.org/goodrelations/</a>.\",\n      \"rdfs:label\": \"GoodRelationsClass\"\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class contains derivatives of properties from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at <a href=\\\"http://purl.org/goodrelations/\\\">http://purl.org/goodrelations/</a>.\",\n      \"rdfs:label\": \"GoodRelationsProperties\"\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class is based on the work of the LRMI project, see lrmi.net for details.\",\n      \"rdfs:label\": \"LRMIClass\"\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class contains information contributed by <a href=http://wikidoc.org>WikiDoc</a>.\",\n      \"rdfs:label\": \"WikiDoc\"\n    },\n    {\n      \"@id\": \"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\",\n      \"@type\": \"schema:Organization\",\n      \"rdfs:comment\": \"This class contains derivatives of IPTC rNews properties. rNews is a data model of publishing metadata with serializations currently available for RDFa as well as HTML5 Microdata. More information about the IPTC and rNews can be found at <a href=http://rnews.org>rnews.org</a>.\",\n      \"rdfs:label\": \"rNews\"\n    }\n  ]\n}"
  },
  {
    "path": "example-files/scoped-context.jsonld",
    "content": "{\n  \"@context\":\n  {\n    \"name\": \"http://schema.org/name\",\n    \"interest\": {\n      \"@id\":\"http://xmlns.com/foaf/0.1/interest\",\n      \"@context\": {\"@vocab\": \"http://xmlns.com/foaf/0.1/\"}\n    }\n  },\n  \"name\": \"Manu Sporny\",\n  \"interest\": {\n    \"@id\": \"https://www.w3.org/TR/json-ld/\",\n    \"name\": \"JSON-LD\",\n    \"topic\": \"Linking Data\"\n  }\n}\n"
  },
  {
    "path": "example-files/shacl-severity-002-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"id\": \"@id\",\n    \"type\": {\"@id\": \"@type\", \"@container\": \"@set\"},\n    \"@vocab\": \"http://www.w3.org/ns/shacl#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"shacl\": \"http://www.w3.org/ns/shacl#\",\n    \"sh\": \"http://www.w3.org/ns/shacl#\",\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"and\": {\"@type\": \"@id\", \"@container\": \"@list\"},\n    \"annotationProperty\": {\"@type\": \"@id\"},\n    \"class\": {\"@type\": \"@id\"},\n    \"comment\": \"http://www.w3.org/2000/01/rdf-schema#comment\",\n    \"condition\": {\"@type\": \"@id\"},\n    \"datatype\": {\"@type\": \"@vocab\"},\n    \"declare\": {\"@type\": \"@id\"},\n    \"disjoint\": {\"@type\": \"@id\"},\n    \"disjoint\": {\"@type\": \"@id\"},\n    \"entailment\": {\"@type\": \"@id\"},\n    \"equals\": {\"@type\": \"@id\"},\n    \"ignoredProperties\": {\"@type\": \"@id\", \"@container\": \"@list\"},\n    \"in\": {\"@type\": \"@none\", \"@container\": \"@list\"},\n    \"inversePath\": {\"@type\": \"@id\"},\n    \"label\": \"http://www.w3.org/2000/01/rdf-schema#label\",\n    \"languageIn\": {\"@container\": \"@list\"},\n    \"lessThan\": {\"@type\": \"@id\"},\n    \"lessThanOrEquals\": {\"@type\": \"@id\"},\n    \"nodeKind\": {\"@type\": \"@vocab\"},\n    \"or\": {\"@type\": \"@id\", \"@container\": \"@list\"},\n    \"path\": {\"@type\": \"@none\"},\n    \"property\": {\"@type\": \"@id\"},\n    \"severity\": {\"@type\": \"@vocab\"},\n    \"targetClass\": {\"@type\": \"@id\"},\n    \"targetNode\": {\"@type\": \"@none\"},\n    \"xone\": {\"@type\": \"@id\", \"@container\": \"@list\"}\n  },\n  \"@requireAll\": false,\n  \"@type\": [\"NodeShape\", \"PropertyShape\"],\n  \"property\": {},\n  \"targetClass\": {},\n  \"targetNode\": {},\n  \"targetObjectsOf\": {},\n  \"targetSubjectsOf\": {}\n}"
  },
  {
    "path": "example-files/shacl-severity-002.jsonld",
    "content": "[\n  {\n    \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#InvalidResource1\",\n    \"http://datashapes.org/sh/tests/core/misc/severity-002.test#property\": [\n      {\n        \"@value\": true\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#TestShape1\",\n    \"http://www.w3.org/ns/shacl#nodeKind\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl#BlankNode\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#property\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#TestShape2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#severity\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#MySeverity\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#targetNode\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#InvalidResource1\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#TestShape2\",\n    \"http://www.w3.org/ns/shacl#path\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#property\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#datatype\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/XMLSchema#integer\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#severity\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl#Info\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"urn:x-shacl-test:/core/misc/severity-002.ttl\",\n    \"@type\": [\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"urn:x-shacl-test:/core/misc/severity-002\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"@id\": \"urn:x-shacl-test:/core/misc/severity-002\",\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl-test#Validate\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#label\": [\n      {\n        \"@value\": \"Test of sh:severity 002\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g451300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"_:g451320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl-test#approved\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g451300\",\n    \"http://www.w3.org/ns/shacl-test#dataGraph\": [\n      {\n        \"@id\": \"urn:x-shacl-test:/core/misc/severity-002.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl-test#shapesGraph\": [\n      {\n        \"@id\": \"urn:x-shacl-test:/core/misc/severity-002.ttl\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g451320\",\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl#ValidationReport\"\n    ],\n    \"http://www.w3.org/ns/shacl#conforms\": [\n      {\n        \"@value\": false\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#result\": [\n      {\n        \"@id\": \"_:g451340\"\n      },\n      {\n        \"@id\": \"_:g451360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g451340\",\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl#ValidationResult\"\n    ],\n    \"http://www.w3.org/ns/shacl#focusNode\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#InvalidResource1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#resultPath\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#property\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#resultSeverity\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl#Info\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#sourceConstraintComponent\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl#DatatypeConstraintComponent\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#sourceShape\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#TestShape2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#value\": [\n      {\n        \"@value\": true\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g451360\",\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl#ValidationResult\"\n    ],\n    \"http://www.w3.org/ns/shacl#focusNode\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#InvalidResource1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#resultSeverity\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#MySeverity\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#sourceConstraintComponent\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl#NodeKindConstraintComponent\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#sourceShape\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#TestShape1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl#value\": [\n      {\n        \"@id\": \"http://datashapes.org/sh/tests/core/misc/severity-002.test#InvalidResource1\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "example-files/shex-expanded.jsonld",
    "content": "[\n  {\n    \"@id\": \"\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"shex.js-earl.ttl\"\n      },\n      {\n        \"@id\": \"rdf.rb-earl.ttl\"\n      }\n    ],\n    \"http://purl.org/dc/terms/bibliographicCitation\": [\n      {\n        \"@value\": \"[[ShEx]]\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://www.w3.org/ns/earl#generatedBy\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/earl-report\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#testSubjects\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      },\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest\"\n          }\n        ]\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"Shape Expressions Language\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553265860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553273320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553265860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553285680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813275440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553298560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553306240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553298560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553319140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553334880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553319140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553347820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553363980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553347820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553368640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553384820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553368640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553397480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553413360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553397480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553417580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553433020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553417580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553445900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553453480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553445900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553466660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553482100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553466660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553486720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553502700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553486720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553515740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553531740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553515740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553544500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553552240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553544500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553565380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553580660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553565380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553593440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553601060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553593440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553613880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553629780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553613880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553642840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553650380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553642840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553663240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553679200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553663240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553692120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553708140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553692120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553712840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553728880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553712840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553741880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553757720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553741880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553762320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553778140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553762320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553790740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553806340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553790740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553811080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553826820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553811080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553839640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553855680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553839640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553860480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553876560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553860480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553889120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553905380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553889120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553910000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553911700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553925220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553911700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553925980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553910000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553938700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553954660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553938700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553959340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553961260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553974280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553961260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553974980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553959340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159553987760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554003920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159553987760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554008380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554024620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554008380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554037600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554053360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554037600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554057860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554059360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554072580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554059360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554074040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554057860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554086940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554103020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554086940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554107680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554123440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554107680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554136300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554152060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554136300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554156580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554172160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554156580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554185420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554200960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554185420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554205660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554220200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554221620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554205660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554233720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554220200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554234440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554250660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554234440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554255140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554270720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554255140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554284060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554299920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554284060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554304420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554320660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554304420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554333400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554349080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554333400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554353620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554369680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554353620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554382500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554398380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554382500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554402840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554418740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554402840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554431840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554447400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554431840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554452060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554467940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554452060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554480440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554496240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554480440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554500840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554517100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554500840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554529900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554545920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554529900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554550740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554566240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554550740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554579420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554595020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554579420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554599600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554615460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554599600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554628120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554644080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554628120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554648840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554664900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554648840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554677680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554693500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554677680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554698220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554714040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554698220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554726880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554742480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554726880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554747380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554763500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554747380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554776540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554792760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554776540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554797360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554813120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554797360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554825880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554841640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554825880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554846560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554862240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554846560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554875160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554877120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554889260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554890460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566800380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554895580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554905460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554889260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554910320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554921240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554895580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554926440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554910320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554926620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554939520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554944260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554926620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554955460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554939520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554957840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554960200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554975460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554957840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554976060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554960200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554988840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159554988860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555005140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554988840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555006220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554988860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555009740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555019580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555026000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555009740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555037020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555019580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555039080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555041960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555054780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555039080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555059340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555041960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555067960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555072740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555075500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555067960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555088700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555089920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555072740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555103500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555104480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555088700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555117420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555120540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555103500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555133660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555117420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555134420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555138360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555151180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555134420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555154460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555138360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555156820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555167240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555173440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555156820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555183280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555167240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555187780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555188420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555204380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555188420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555204500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555187780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555217400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555218480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555233500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555217400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555235380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555218480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555238540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555249140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555254860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555238540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555266500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555249140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555267840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555272120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555284100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555267840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555288920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555297480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555272120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555302820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555304520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555288920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555317800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555320180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555302820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555333960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555317800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555334020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555347180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555351560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555334020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555363440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555347180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555365400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555368380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555382540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555365400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555384500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555368380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555396120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555397300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555413180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555396120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555413600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555397300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555418240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555418600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555434380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555418240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555436020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555418600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555447280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555449840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555463200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555447280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555467240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555449840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555468080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555480580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555483560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555468080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555496320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555497540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555480580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555510880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555512200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555496320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555517360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555528380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555510880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555533420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555517360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555533780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555546440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555551160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555533780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555562560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555546440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555564800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555567240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555581840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555564800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555583500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555567240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555595880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555596480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555612700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555596480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555612780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555595880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555625940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555626740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555641660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555625940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555643880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555626740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555646600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555649200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555662880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555646600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555674420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555649200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555676040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555679980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555692040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555676040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555697000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555697280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555679980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555710800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555713120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555697000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555726120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555727680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555710800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555741680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555742140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555726120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555746920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555759040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555741680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555762680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555746920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555772680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555775540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555789640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555772680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555791760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555775540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555795060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555796380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555811960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555795060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555812400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555796380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555825340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555825620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555841180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555825340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555842460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555825620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555846080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555856820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555862240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555846080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555874060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555856820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555875160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555887720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555890760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555875160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555903900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555905180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555887720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555910480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555920060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555903900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555924920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555936400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555910480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555941420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555924920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555941840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555954780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555959400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555941840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555970960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555954780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555973080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555975920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555990200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555973080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159555991720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159555975920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556003780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556004600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556020440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556004600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556020500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556003780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556025140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556026020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556041080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556025140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556051240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556026020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556054340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556056660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556070420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556054340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556074080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556056660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556074920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556087980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556090680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556074920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556103900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556105560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556087980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556119380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556120220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556103900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556133220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556136520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556119380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556149340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556133220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556150440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556154120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556167100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556150440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556169980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556154120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556172560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556182840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556189720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556172560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556199300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556182840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556203400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556203800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556219800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556203800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556220280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556203400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556233100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556234500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556249320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556233100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556251580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556234500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556254220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556265200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556270580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556254220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556282440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556265200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556283480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556288320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556299440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556283480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556304640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556314040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556288320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556319320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556320720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556304640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556334080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556336780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556319320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556349680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556334080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556349820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556362640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556366780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556349820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556370200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556362640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556380380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556383040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556397200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556380380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556399400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556383040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556402820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556412860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556428700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556402820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556429000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556412860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556433500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556434140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556449340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556433500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556451600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556434140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556462480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556465520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556478400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556462480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556482860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556465520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556483040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556496640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556499380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556483040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556512740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556514000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556496640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556527120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556528020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556512740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556532900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556544260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556527120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556548620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556532900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556549600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556561600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556566540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556549600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556577800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556561600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556580320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556582660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556598000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556580320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556599120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556582660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556611580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556611880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556627920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556611880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556628640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556611580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556641460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556642960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556657540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556641460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556660020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556642960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556662620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556673980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556678920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556662620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556691120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556673980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556691900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556696760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556707840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556691900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556712180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556713360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556696760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556726880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556728100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556712180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556741460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567735340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556746100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567738260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556746440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556759420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556762280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556746440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556775100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556776500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556759420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556790360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556791440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556775100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556796240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556807160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556790360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159556812220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556796240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557467120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804882640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557479620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804886900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557484140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557500060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557484140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557512900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557528540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557512900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557533340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557549320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557533340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557562200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557577880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557562200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557582580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557598300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557582580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557608220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557611340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557613660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557608220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557627080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557611340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557640320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557647780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557640320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557660760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557676800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557660760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557689660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557706000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557689660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557710840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557727200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557710840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557739880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557756060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557739880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557760680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557776240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557760680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557788860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557804640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557788860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557809020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557825100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557809020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557837980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557854020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557837980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557858720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557874280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557858720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557887160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557903480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557887160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557908440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557924000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557908440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557937520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557953260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557937520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557957880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557972920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557957880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159557985720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558001380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159557985720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558006000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558022300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558006000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558035140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558039140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558051100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558035140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558052580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558039140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558055880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558071960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558055880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558085080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558101000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558085080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558105860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558122020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558105860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558134740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558150040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558134740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558154420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558170540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558154420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558183540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558199540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558183540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558204080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558217880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558220440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558204080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558231480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558217880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558233280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558248880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558233280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558253720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558270000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558253720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558282980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558298960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558282980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558303500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558319000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558303500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558331840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558347480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558331840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558352440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558369140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558352440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558382580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558399740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558382580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558413060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558429940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558413060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558443880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558460900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558443880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558465800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558482600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558465800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558495960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558512560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558495960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558526160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558542500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558526160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558547560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558564180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558547560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558577460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558594580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558577460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558608260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558609480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558623440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558609480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558625180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558608260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558630720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558656180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558630720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558661240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558678340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558661240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558690040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558691500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558695960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558690040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558708260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558691500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558721940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558738480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558721940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558743880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558760460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558743880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558774560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558791200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558774560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558804620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558821760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558804620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558826820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558843460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558826820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558856940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558873520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558856940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558886800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558903640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558886800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558909120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558925820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558909120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558939740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558956140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558939740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558969380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159558986440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159558969380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559000080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559016860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559000080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559022120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559038800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559022120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559052460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559069360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559052460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559082660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559099480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559082660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559104280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559121160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559104280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559134680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559151400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559134680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559164960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559181680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559164960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559186620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559203420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559186620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559216880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559233920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559216880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559247400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559263880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559247400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559269060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559281800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559285920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559269060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559295560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559281800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559299440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559316080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559299440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559329760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559346860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559329760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559351480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559352000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559365320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559351480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559376920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559352000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559382220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559399120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559382220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559412620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559429560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559412620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559442960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559459640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559442960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559461740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559465020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559479540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559461740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559481500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559465020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559493620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559495080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559511420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559493620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559512160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559495080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559525740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559525760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559542580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559525760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559543640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559525740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559547960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559557860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559564500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559547960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559575880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559557860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559578260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559590120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559595520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559578260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559608360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559590120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559609340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559614260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559626060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559609340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559639660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559640940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559614260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559646580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559656360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559639660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559661980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559672960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559646580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559678760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559661980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559678840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559692520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559705360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559678840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559709240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559692520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559710940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559722700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559737660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559710940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559739360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559722700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559744040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559744780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559761420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559744780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559761560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559744040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559774980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559776000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559791480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559774980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559793660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559776000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559805140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559807540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559821640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559805140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559825140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559807540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559826880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559839720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559843360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559826880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559857000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559857400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559839720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559871580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559873860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559857000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559887240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559889680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559871580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559904020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559904320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559887240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559909240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559922060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559904020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559934660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559909240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559936360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559940020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559954640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559936360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559957520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559940020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559969140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559970620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559987540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559969140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159559987660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159559970620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560000880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560001600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560017940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560000880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560019680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560001600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560023280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560034120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560039940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560023280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560051980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560034120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560053320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560066200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560070140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560053320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560083580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560084680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560066200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560098720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560100080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560083580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560105440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560116840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560098720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560130580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560105440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560130960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560135620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560148680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560130960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560152400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560135620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560155020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560166020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560180760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560155020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560182660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560166020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560187240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560196180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560212880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560196180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560212920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560187240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560218260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560219280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560234540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560218260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560236980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560219280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560248840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560251460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560265620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560248840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560269100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560251460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560279040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560283780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560296040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560279040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560301260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560302040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560283780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560316080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560318240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560301260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560331660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560334500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560316080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560348620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560348880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560331660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560362280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560366400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560348620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560379100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560362280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560380880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560384300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560397840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560380880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560400140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560384300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560411460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560413080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560428700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560411460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560429260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560413080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560442280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560442520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560458600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560442280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560459820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560442520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560463000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560465000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560478960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560463000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560481940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560465000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560491900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560495460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560507880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560491900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560513100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560495460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560513240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560526860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560529360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560513240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560542360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560544380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560526860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560557960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560558300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560542360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560562940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560575100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560557960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560578940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560562940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560580440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560592080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560606100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560580440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560608380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560592080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560611480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560613460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560628820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560611480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560629260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560613460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560642420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560642780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560658360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560642420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560660440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560642780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560671600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560673740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560679320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560671600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560690920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560673740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560692640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560704700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560708760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560692640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560721720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560722020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560704700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560727240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560737400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560721720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560742220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560744240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560727240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560757460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560757900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560742220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560770900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560774740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560757460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560787360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560770900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560788480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560792100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560805580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560788480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560807940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560792100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560819280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560821060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560836880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560819280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560837260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560821060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560841980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560842280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560858420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560841980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560859420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560842280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560871600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560873280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560887960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560871600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560890780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560873280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560901120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560904780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560917240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560901120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560921720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560904780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560921860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560934920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560938200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560921860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560951420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560952740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560934920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560966300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560967240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560951420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560972140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560983960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560966300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560988660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560972140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159560989460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561001640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561006480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159560989460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561017840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561001640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561020180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561022580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561037260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561020180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561038740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561022580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561051320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561051880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561067980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561051880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561068220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561051320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561081400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561082500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561097320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561081400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561099460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561082500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561102000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561104640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561117660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561102000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561121500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561104640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561130480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561134640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561146580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561130480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561151280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561152100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561134640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561165880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561167620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561151280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561180500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561182740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561165880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561196160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561196260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561180500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561201100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561213540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561196160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561217740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561201100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561219120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561230700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561244960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561219120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561247140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561230700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561250800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561251980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561267320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561250800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561267740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561251980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561280760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561281100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561296340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561280760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561298080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561281100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561301340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561311900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561317620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561301340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561329200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561311900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561330780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561343040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561346820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561330780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561359800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561360060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561343040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561365200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561375960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561359800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561380680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561382540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561365200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561396100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561396900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561380680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561409960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561413380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561396100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561426180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561409960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561427600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561431120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561444400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561427600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561446940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561431120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561449360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561459540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561474580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561449360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561475720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561459540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561480060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561480380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561496560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561480380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561497340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561480060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561509200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561510920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561525340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561509200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561528020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561510920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561530320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561541560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561546240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561530320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561558880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561541560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561559400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561572360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561575660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561559400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561588860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561589900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561572360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561595440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561605140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561588860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561610180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561612780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561595440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561614760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159561618860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565853220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565853220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565853360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561610180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565866300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159561614760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565867920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565870800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565885040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565867920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565887080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565870800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565899400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565900140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565916180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565900140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565916780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565899400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565920980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565922260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565937240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565920980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565947700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565922260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565950400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565953280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565966240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565950400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565971040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565953280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565971200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565984640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159565987360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565971200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566000320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566001860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159565984640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566015340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566016400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566000320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566029600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566033460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566015340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566045540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566029600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566046740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566049920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566063240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566046740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566065900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566049920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566069260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566079140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566094460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566069260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566095260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566079140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566099960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566100000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566115840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566099960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566117280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566100000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566129600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566131080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566145460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566129600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566148040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566131080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566150160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566161620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566166560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566150160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566179140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566161620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566179480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566184240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566195380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566179480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566200320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566210040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566184240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566215300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566216080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566200320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566229220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566233040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566215300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566245180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566229220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566246900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566258340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566264340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566246900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566266160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566258340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566278060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566279360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566295100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566278060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566295320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566279360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566308600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566309040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566324440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566308600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566325800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566309040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566329180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566331320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566345540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566329180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566356620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566331320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566358580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566361920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566374460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566358580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566378900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566361920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566379080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566392540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566395020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566379080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566408380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566410160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566392540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566423800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566424240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566408380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566429200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566440800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566423800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566445040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566429200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566446240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566458040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566471720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566446240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566474260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566458040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566477040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566479120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566494320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566477040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566495120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566479120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566508240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566508380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566524420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566508380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566525160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566508240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566537580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566539040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566553460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566537580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566556120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566539040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566558320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566569640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566574560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566558320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566586980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566569640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566587380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566592480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566603620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566587380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566608320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566610080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566592480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566623960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566624620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566608320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566637560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566640860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566623960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566653540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566637560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566654420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566658380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566671480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566654420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566674620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566658380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566685460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566687700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566702280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566685460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566703460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566687700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566707720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566707960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566724620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566707960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566733540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566707720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566737520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566738860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566753680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566737520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566756120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566738860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566766780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566769700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566782880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566766780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566787140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566769700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566787820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566800380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566803880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566787820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566817540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566820240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159556726880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566833380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566817540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566833720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566838220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566851360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566833720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566854640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566838220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566865360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566867420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566882360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566865360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566883060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566867420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566887900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566888100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566904640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566887900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566913940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566888100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566917540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566919280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566934160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566917540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566936820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566919280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566947340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566950140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566963040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566947340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566967260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566950140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566967920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566980780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566983600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566967920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566996900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159566998280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566980780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567012160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567013020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159566996900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567018000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567029680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567012160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567033920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567018000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567035700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567047220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567061220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567035700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567063220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567047220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567066920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567068260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567084200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567066920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567084260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567068260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567097200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567098340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567113500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567097200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567115440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567098340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567118240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567128940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567134420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567118240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567145940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567128940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567147200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567159500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567162820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567147200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567176040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567177100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567159500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567182080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567192240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567176040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567197100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567199400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567182080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567212860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567212940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567197100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567226040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567230440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567212860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567242200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567226040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567244280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567246720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567261180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567244280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567263100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567246720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567275560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567276440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567292340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567275560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567292420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567276440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567297280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567298380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567313400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567297280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567323960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567298380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567326420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567329200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567342340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567326420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567346320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567329200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567347120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567359860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567362880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567347120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567375980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567377380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567359860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567390440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567392240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567375980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567405200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567407780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567390440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567413000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567405200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567413040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567426120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567438560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567413040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567442160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567426120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567443680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567455040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567461480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567443680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567471580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567455040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567475600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567476300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567493200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567476300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567493280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567475600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567505800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567506800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567521880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567505800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567524140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567506800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567526360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567537680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567542440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567526360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567554800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567537680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567555420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567560120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567571640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567555420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567576480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567586080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567560120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567591740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567592700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567576480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567605940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567608660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567591740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567621680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567605940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567622620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567634760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567640020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567622620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567651080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567634760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567653760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567655940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567671540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567653760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567672320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567655940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567685000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567685140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567701400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567685140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567702520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567685000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567706040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567707640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567722060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567706040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567733120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567707640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567735340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567738260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567749300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159737012720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567754520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567754600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567770140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567754520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567771180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567754600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567783420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567785360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567799440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567783420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567802560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567785360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567804400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567816280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567820860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567804400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567833920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567816280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567834160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567847680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567850080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567834160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567855000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567864720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567847680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567870000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567871420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567855000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567884780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567887540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567870000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567900520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567884780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567900900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567913620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567918080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567900900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567929800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567913620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567931960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567934440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567948680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567931960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567950560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567934440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567962660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567963300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567979680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567963300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567979740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567962660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567984500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159567985740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568000400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567984500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568011400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159567985740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568013560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568016840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568029280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568013560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568034500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568034540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568016840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568047720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568050040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568034500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568063160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568065320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568047720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568078980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568079820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568063160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568084660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568096440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568078980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568100960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568084660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568110140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568114100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568127680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568110140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568130320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568114100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568133320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568143260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568150460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568133320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568159480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568143260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568164060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568164260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568180480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568164260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568181340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568164060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568193580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568195260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568209860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568193580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568212740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568195260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568214920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568226240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568231220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568214920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568244060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568226240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568244340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568257480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568260140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568244340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568265040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568274960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568257480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568280260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568281240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568265040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568294440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568297760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568280260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568310580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568294440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568311720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568323740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568329720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568311720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568341620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568323740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568343880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568346380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568362540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568343880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568372420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568346380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568376660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568377220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568395200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568377220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568395520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568376660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568408600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568409780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568425500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568408600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568428280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568409780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568439460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568442300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568456100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568439460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568461680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568442300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568470620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159568475160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687523960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687625840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687692160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687741440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687772880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696226880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687776560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696374140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687823440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687877280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797509300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687882920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687949420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159687882920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687963320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687980540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159687963320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159687994580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688012180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159687994580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688026400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688043860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688026400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688057120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688074500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688057120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688080320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688106700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688080320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688112340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688129400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688112340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688143420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688161340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688143420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688175160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688192720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688175160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688206980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688224460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688206980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688238120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688256220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688238120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688270260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688287380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688270260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688293400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688319100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688293400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688325520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688342420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688325520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688348900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688364520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688364520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688379980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688397400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688379980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688411300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688429320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688411300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688443060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688461480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688443060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688475300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688492800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688475300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688498000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688515420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688498000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688529160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688546760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688529160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688560360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688578800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688560360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688592540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688609700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688592540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688624120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688641700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688624120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688656140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688674340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688656140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688688560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688706480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688688560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688711960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688737700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688711960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688743840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688761260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688743840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688775240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688792700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688775240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688806620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688823880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688806620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688837860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688855320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688837860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688869440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688887160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688869440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688900840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688918200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688900840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688924060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688941400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688924060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688954980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688973420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688954980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159688987160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689004400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159688987160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689018260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689036120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689018260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689050400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689068220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689050400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689081840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689099600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689081840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689105160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689130560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689105160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689136520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689154100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689136520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689167780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689184900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689167780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689199000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689216860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689199000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689230200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689247660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689230200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689262020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689279600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689262020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689285540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689311200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689285540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689316900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689334100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689316900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689348020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689365260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689348020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689379300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689397000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689379300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689411460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689429020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689411460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689443080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689460440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689443080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689474800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689492320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689474800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689497800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689523380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689497800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689529220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689545940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689529220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689559860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689577420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689559860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689591260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689608780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689591260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689622800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689640780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689622800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689654760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689672520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689654760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689678160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689703740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689678160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689708980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689726640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689708980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689740800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689758480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689740800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689772640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689790560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689772640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689804140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689821580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689804140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689835640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689853460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689835640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689858960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689884100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689858960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689889680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689906900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689889680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689920960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689938100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689920960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689952400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689970600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689952400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159689984140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690002000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159689984140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690016120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690033120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690016120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690038860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690065040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690038860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690070700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690088120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690070700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690102440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690119660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690102440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690133760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690151300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690133760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690165640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690183040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690165640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690197300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690214720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690197300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690228840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690246480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690228840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690251880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690277500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690251880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690283180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690300960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690283180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690314600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690332440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690314600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690346820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690365100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690346820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690378460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690396360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690378460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690410740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690428200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690410740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690442460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690460360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690442460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690473900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690491320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690473900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690497060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690523800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690497060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690529660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690555400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690529660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690561480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690578640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690561480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690592340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690609300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690592340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690622880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690639760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690622880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690653860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690671700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690653860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690677260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690702920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690677260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690708840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690726480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690708840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690740240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690757800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690740240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690771700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690789640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690771700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690803700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690821640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690803700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690835480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690852120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690835480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690866900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690884440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690866900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690890180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690916080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690890180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690921520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690939420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690921520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690953100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690970880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690953100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159690984780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691002300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159690984780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691016080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691033800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691016080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691048020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691065160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691048020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691070520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691087820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691070520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691102040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691119440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691102040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691133520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691151700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691133520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691164700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691182660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691164700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691196500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691214520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691196500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691228320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691245460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691228320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691251020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691276900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691251020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691282140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691300280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691282140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691313780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691331320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691313780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691345140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691362700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691345140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691377400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691394360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691377400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691408160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691426040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691408160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691431520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691457600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691431520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691463660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691481020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691463660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691495140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691512600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691495140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691526220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691543860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691526220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691558000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691575080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691558000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691589540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691607080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691589540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691620360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691637520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691620360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691642960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691803320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568470620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691807460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159691834600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692251380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692270020\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692508460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159568475160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692573940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_xsd-integer12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692642100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692690700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692704820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159692251380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692738280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692739780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692772300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159692884260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693163280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693262200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696441120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693280300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693312480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693163280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693344900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693358240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704388040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693377400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704449080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693443400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693491520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693493140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693541760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693608320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697274240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693625700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693637340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734606160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693640380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734623740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693652280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-integer1_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693671580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693678800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693705040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693712340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693705040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693727280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693678800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693763180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693795420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693763180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693811640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693844500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693811640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693862460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693893700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693862460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693912520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693943960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693912520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693962280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159693992520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693962280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694010740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694044160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694010740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694070600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694102560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694070600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694121380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694152000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694121380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694169780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694201940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694169780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694219100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694251660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694219100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694269860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694301100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694269860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694318340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694351140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694318340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694369360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694400080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694369360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694417340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694449520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694417340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694466980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694499080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694466980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694516540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694549240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694516540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694565780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694598660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694565780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694617020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694649400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694617020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694676280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694699900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694676280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694725260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694747800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694725260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694764740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694798780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694764740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694826040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694857740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694826040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694875000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694909380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694875000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694926760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694958260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694926760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159694976280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695007740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159694976280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695025300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695058280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695025300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695076460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695108720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695076460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695126100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695158220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695126100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695185760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695218220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695185760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695234620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695266400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695234620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695283280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695316100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695283280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695333680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695366600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695333680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695383760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695416060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695383760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695434600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695467520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695434600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695484740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695516440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695484740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695533400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695564100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695533400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695581420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695614220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695581420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695631880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695663920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695631880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695682460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695713500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695682460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695731420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695762500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695731420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695780220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695812060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695780220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159695829780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696025300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693443400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696041720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159692690700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696041740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696093900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696110500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696161700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen-fr.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696178460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696214920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159692884260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696226880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696231580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696345720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_B12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696374140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696374600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_a_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696441120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696552820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_I.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696555920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696590080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0_0e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696591620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/dummy\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696656100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159693491520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696669900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696687880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704553580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696688040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696701680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696732680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696749620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696850280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696852400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696966920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696732680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159696966940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697013480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_I12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697061060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697078700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696850280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697143460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697242500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697274240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697274320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2a.In2a_Ip1_In1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697310260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697061060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697354780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800901180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697360500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697566600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697360500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697596620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731017960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697596640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731006760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697605080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697783840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697786860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697787240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0123456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697787720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697798060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_false.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697799420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697804360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697830500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697850380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697787720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697865460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697799420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697867820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697870180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697885380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697901280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697901920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697902820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697918080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697933520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697933600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697934360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697946300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697885380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697949580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697966920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697968520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697979240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697902820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697981820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159697982220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698014000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698014900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698032680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697982220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698059900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698065060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698075800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698080000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698014900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698098360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698114840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698115720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT012345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698126280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698127020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698075800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698129820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698131540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698163800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_true.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698164460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698190840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698114840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698209560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.In3_Ip1_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698214640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698223740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698164460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698224280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698241900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1,Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698258060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698258580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698289060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698224280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698305440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698307800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698258060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698322400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698322800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698339100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698360240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698371440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698376580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698322800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698390400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698339100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698409140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698420920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698423260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698423540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698427660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698439820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_I12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698440300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698442200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_xsd-integer1234.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698442820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698455020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698456100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698469460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698486000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698423540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698490300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698420920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698503240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LaDTbloodType.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698506360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.In3_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698521960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698522620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698535120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698541800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698556120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698583660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698521960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698586420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698600820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698535120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698608000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698616780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698634800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698668620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698608000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698699980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698634800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698701080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698731220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698731940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698736540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698736680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698747820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698701080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698752860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698767680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698781300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698786680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698731220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698804500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698816120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698817140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698829560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698832140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698832520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698834860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698781300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698846440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698846840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698847300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType999.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698851500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698879380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698884380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698895240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698899940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698832520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698900540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698916440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698927820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698931060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698879380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698935060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698946920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698963180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698965220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698977920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159698998100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698935060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699013260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159698965220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699028580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699030480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699033980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699048060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699048620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699058700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_B12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699081740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699108600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699033980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699109560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699048060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699128800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699131180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699141520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699142140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699145040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699147500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699180740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699193960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699142140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699196720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699207980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699145040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699209420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699227980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699245480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699279340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699227980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699292520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.In3_Ip1_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699309440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699311140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699245480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699312180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699322120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699323700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699326580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699356260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699371260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699374940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699376120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699323700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699390560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699408800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699419300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699424100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699356260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699426380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699441440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699469280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699469800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699470940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699474580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699419300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699475200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In1_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699490960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699508540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699518940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699534840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699469280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699567080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699567860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699508540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699568180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699574220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699583500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699585940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699604300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699617720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.In3_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699618380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699637520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699568180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699652460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699665440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699604300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699672240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699683800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699698260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699734300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699735100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699748920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699672240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699752900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699698260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699767600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699783560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699783700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699784000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699785140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699799460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699803560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699834300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699785140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699847040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699783700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699868820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699878240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699878380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699894420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699894540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699914260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699916980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LaLTen-fr.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699929420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699878240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699933280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699946320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699946960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699894420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699959960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699963340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699977980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699982920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699992760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159699996760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159700010640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159700015140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699963340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159700015620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159700028040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704388040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704449080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704520320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704553580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704600060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704620320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704669740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0e0lowercase.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704670120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704702680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704761360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704780800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704780840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704828820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704670120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704831840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704871100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159696688040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704871940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704874200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704916380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159687692160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704950200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704954600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159704969140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705000300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705001540\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705001600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT123456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705015900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-integer1_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705018320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705033440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705036160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704950200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705053200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704969140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705068180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705113780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705114900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705118500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705232140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705118500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705234980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705113780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705243880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT1_23456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705276580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705279980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705283540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3X3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705294280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705328860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705344100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705348100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707876360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705348860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705362940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705276580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705363340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705375060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705380000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705407920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705279980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705408360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705410980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_dt1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705427940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705447480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705476680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705477760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0E0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705494440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705427940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705508220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705539160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705447480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705541200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705544060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705579080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705592420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_2345ab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705595060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705608800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705541200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705625740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705642940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705671280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705690300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705690500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705704500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705579080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705720680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705724120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_Bn2.Bn2_Ip1_In1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705736200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@value\": \"v1\",\n        \"@type\": \"http://a.example/dt2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705753640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705756200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705690300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705808260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#semActs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.semact\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705818960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705824740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705838280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705851000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705753640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705887640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705818960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705900920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705933080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705933700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705934200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159705972300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705900920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706003700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705933080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706032020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706049140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706049900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706130360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706131880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706132980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_dt1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706145320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706146060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_23ab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706152780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706032020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706164080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706049140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706210940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706227480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706280280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159705380000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706297620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706210940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706316540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3p4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706328740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706348980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706377480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706390780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706391920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706413140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706456160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706456740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706328740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706473420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706526820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706348980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706528740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706556200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706609800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706611460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706620980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706651580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706662700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT64.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706663260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706130360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706666340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706674400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"_:S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706680260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704780840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706683320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159704780800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706712880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706713260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706717260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706721120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706722380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706743100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT1234.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706745600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706763780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706556200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706794980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706830720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706620980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706831360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706841640\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706858920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706881100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_In2a.In2a_Ip1_In1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706896280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706942700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706831360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706995060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@value\": \"v1\",\n        \"@type\": \"http://a.example/dt1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159706996200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707008260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707009300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707037920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706896280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707039160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707040160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707103300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707105100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707107040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707008260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707127480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707170020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707175780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707202100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0_0e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707220400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707103300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707258120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT1_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707269240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707170020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707273980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707288500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707288760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707290100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707304380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707323960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707333540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707335640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707355520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707372720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707416520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707420200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707288760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707432940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707450860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707335640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707483680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707500780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707517680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707545660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707547620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707629500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707500780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707630840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707517680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707683440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707684400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707699700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707710440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT128.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707775400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707783120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707684400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707792260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip1_Bn2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707810880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707699700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707847220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707876360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707896580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v4\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707925840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707945700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707847220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707975640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0E0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159707996460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708000440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706651580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708027420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708045240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708058540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708061120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708072220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159707996460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708109280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708045240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708110580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708135940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708152620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708153480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708155020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708156240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708176180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708188240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708110580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708190700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708208640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708153480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708209060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708224660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708251940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708284060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708286440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"_:S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708303860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708224660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708316560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2a.In2a_Ip1_In2a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708318200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708319360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708251940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708319780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708332460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC_0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708335700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_23ab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708348900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708365260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708366080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708386140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159708414340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729428440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708366080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729432560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159708365260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729432840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729445340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729466320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729475680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729479700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729483060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729496520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729512300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729527180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729543140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729475680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729564880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729483060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729579420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729582040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729612040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729612980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729630240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729660060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729579420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729660600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT01234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729663200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729678660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729689200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-closed.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729694960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729696220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729612040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729696280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729754140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729772940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729696280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729806660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729823640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729754140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729842920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Idt1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729854800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729872680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729875340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729806660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729887260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729892100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729905380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_true.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729920740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729921560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729936720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729942340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_STRab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729954640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729872680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729971520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729984340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729988680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT05.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159729989620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159729920740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730005560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730006180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730019880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730038220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730039800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730049760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0123450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730051740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730086100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730005560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730086220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730100960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-open.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730115600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730039800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730115940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC0_0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730138800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730153820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730165580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v4\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730166900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730200220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730202380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730217540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730138800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730218300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730219140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730153820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730263560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730264640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730284240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_2345ab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730314420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1HYPHEN_MINUS_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730327820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730328920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730330120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730263560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730344280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_false.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730345300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730264640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730351620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_9.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730367680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730384260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730396140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT1234560.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730396500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730396880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730396900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730397860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DT2015-12-25T01_23_45Z.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730446220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730367680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730463600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730384260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730466500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip1_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730482260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730482360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730482900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT00.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730513980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730515420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730524460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730559700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730482360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730591520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730594060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730594860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730515420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730626480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730629680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_In1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730641740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730656580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730659440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730594060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730694620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730694700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730710860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730641740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730724820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730739920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730740400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730759340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730770100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730694620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730771420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730776920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT123450.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730806200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730824460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730841260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730841680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730759340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730852020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730858800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730874600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730806200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730889880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730891580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730918620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730920620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730925200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/vs1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/v1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730967700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730889880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730984200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159730920620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730987000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159730989660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731006760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731017960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731024560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731034660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706713260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731036260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731052400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159706717260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731065920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731085340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731101920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731104120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrst\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731108340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731112820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731085340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731117000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731122080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731132100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731132240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731065920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731146780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731170120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731146780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731196360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731202360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731216620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731122080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731234940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731249280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731251180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731202360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731282360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731284940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731299820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731299920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731310620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731249280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731331900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731334580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731282360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731346540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731349640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731377120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731378500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731411160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731346540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731415020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731427640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731377120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731428560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731446000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731458860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731460680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731509560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731446000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731511200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731460680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731543940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731544000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731544940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ba.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731574660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731575460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.In1_Ip2_LY.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731590280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731594640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731543940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731605800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731544000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731609560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731627740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731627980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731641160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731642240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731674020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731690680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731627980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731706420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731642240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731711120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731721700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731740620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731771580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731721700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731787100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731792500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731740620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731793580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731823280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731838180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731855600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731793580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731858960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.In1_Ip2_LY.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731872720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731873900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731885400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731887640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731888780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731900800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731902260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731838180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731935600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731938860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731887640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731972800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159731989580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731935600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732004660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732006740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732020140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159731972800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732022480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732051120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732069820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732084560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732085060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732022480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732100000\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732100880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732051120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732101340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732103460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732117500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732131860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732132060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732164660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732170540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732117500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732180960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732132060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732212040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732212480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732219480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732248080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iabc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732251780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732212040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732263500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732212480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732281900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732296840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732297480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732301660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732331860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732281900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732345540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732346140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732348300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732296840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732350360\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732359360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732364980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732380020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732414200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732364980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732414560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732443940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732447000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732380020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732448640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732462520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ia.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732491020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732508720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732448640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732509680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732529700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732543740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732547180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732491020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732560160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732578060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In4.In4_Ip4_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732589380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732594920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732543740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732608120\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732611480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732625820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732644620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732589380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732659960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732661600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732677420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732625820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732678220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732705340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ibc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732708400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732710560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732740220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732678220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732757120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732758340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732708400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732773240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732775120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732789040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732818780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In3.In3_Ip3_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732823860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732773240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732838500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732789040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732858140\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732867400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732869880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732902300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732917060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732919640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_Iab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732921080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732867400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732921700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732869880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732952740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732954760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732956920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159732965820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733002020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733014700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732954760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733017480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733020040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159732965820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733037980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733051720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733065240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733086480\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733087780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733037980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733119760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733065240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733120900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733134220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733162840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733165060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrst.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733165120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733180140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733120900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733184040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733215760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733228060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733162840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733232340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733247200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733262200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733262640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733268360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733215760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733284620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733300620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733326760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733262640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733344460\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733350180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733300620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733360060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733377180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733380560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733397960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733398860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733411640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733360060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733428340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733380560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733441020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733444300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733448040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733473780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733494960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733444300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733496320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733448040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733526080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733526580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrst\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733528260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733528300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733546280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733571860\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733577960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733528300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733589480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733528260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733590580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ba.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733638800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733639840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159699982920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733659720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@value\": \"ab\",\n        \"@type\": \"http://a.example/bloodType999\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType999.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733672700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733676960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733691360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733638800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733703520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733707140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234567.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733723640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733724540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733736460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733672700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733741680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733753500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733758480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733772720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733775900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733724540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733817440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733823160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733835260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733836720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen-fr-jura.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733837160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733838540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733772720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733870400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733817440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733872060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733883500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733884440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733900120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733904200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733922520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733923640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733950100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733883500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733967500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733904200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733967840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733985720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159733986220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734000240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734014700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734017260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734032480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734035280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_LX.In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734051200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159733986220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734051460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734000240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734069920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734083020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734086960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734098500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734098700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734103940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734145900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734083020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734151280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734086960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734169000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734180320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734185160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In1_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734195800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734197120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734213260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734232160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734234060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734180320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734261860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734197120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734265860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734278840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_2345.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734293020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734297460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734315720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734327240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734265860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734327320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@value\": \"ab\",\n        \"@type\": \"http://a.example/bloodType\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734332760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734343040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734346100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734348760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734358820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734360940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734362440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734297460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734382280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734394560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734396080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734410640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734360940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734443920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734444140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734445280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734460420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734396080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734473500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734491200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734492640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734494440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734443920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734494940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734496780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734528500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734542000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734545060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23456.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734554940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734560780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734496780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734572960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734576020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734590740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734528500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734606160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734620180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734623740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734624040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734643940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734650120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159697605080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734664180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734681560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734664180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734694080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734697920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734702460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734708740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734724580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734719140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734694080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734722280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734697920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734724580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734734940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734702460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734738980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734739460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734754880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734739460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734755920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734738980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734767900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734769600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734784180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734767900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734787120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734769600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734789440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734800880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734805000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734789440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734818260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734818360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734800880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734823800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734834240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734818260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734839300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734841240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734823800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734854780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734855560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734839300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734869060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734872240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734854780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734885360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734869060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734886080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734889880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734903140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734886080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734906100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734889880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734917020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734919140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734933720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734917020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734935060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734919140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734939300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734947920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734955440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734947920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734964660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734939300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734968540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734970200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734984700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734968540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734986940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734970200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159734997500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735000600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735013500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159734997500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735017640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735000600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735017980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735031140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735033920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735017980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735047240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735048540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735031140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735053700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735062980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735047240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735067960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735079480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735053700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735083900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735067960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735085400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735097380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735102920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735085400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735113380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735097380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735116360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735117880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735133580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735116360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735134340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735117880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735147420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735147460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735163620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735147420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735164940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735147460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735168820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735178820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735185180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735168820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735196000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735178820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735198160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735201360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735214200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735198160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735227060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735201360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735227400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735232420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735243720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735227400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735248460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735250000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735232420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735263800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735264680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735248460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735277820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735280700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735263800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735293380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735277820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735294060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735298260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735311160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735294060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735314320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735298260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735324920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735327280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735341920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735324920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735343420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735327280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735347340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735348040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735363960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735348040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735364140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735347340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735376960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735377960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735392720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735376960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735395040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735377960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735397820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735408700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735414040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735397820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735426520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735408700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735427280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735440320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735443280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735427280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735456260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735457260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735440320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735462440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735472180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735456260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735476820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735479580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735462440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735492960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735476820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735493200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735506480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735510720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735493200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735522280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735506480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735524500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735527140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735541460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735524500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735543140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735527140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735555000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735555980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735572200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735555000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735572220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735555980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735576920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735577820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735593240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735576920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735603280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735577820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735606440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735608780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735622240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735606440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735625840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735608780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735627120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735639380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735643020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735627120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735655980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735656900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735639380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735670340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735671920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735655980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735676480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735687400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735670340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735692560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735676480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735692740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735705600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735718080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735692740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735721680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735705600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735723480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735734640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735740880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735723480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735742420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735734640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735754960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735755400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735771540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735755400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735771960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735754960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735784600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735785980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735801020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735784600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735803160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735785980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735805780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735816580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735821740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735805780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735834340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735816580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735834880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735839520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735850860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735834880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735855860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735856840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735839520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735870760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735872180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735855860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735885020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735888040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735870760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735901200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735885020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735901860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735905700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735918980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735901860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735922000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735905700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735932580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735934820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735949360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735932580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735951380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735934820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735955340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735964220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735971680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735964220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735980780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735955340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735984920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159735986320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736000940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735984920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736003720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159735986320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736013880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736017360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736029880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736013880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736034640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736017360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736034660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736048420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736051560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736034660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736064480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736065800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736048420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736079120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736080180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736064480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736085160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736096360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736079120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736100880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736085160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736101720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736113720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736127580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736101720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736130140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736113720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736133100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736135100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736150580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736133100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736151500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736135100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736164240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736164400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736180460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736164400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736181620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736164240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736193800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736195480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736210500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736193800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736212620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736195480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736215200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736226160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736231020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736215200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736243300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736226160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736244340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736248300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736259700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736244340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736264440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736265200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736248300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736278740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736280260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736264440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736293560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736296040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736278740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736309580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736309660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736293560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736314680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736327180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736309580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736330460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736314680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736332200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736343520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736357400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736332200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736359600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736343520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736363280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736364420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736380760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736363280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736380800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736364420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736393800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736394700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736409840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736393800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736411640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736394700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736422780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736425060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736430200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736422780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736441600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736425060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736443100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736455680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736459140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736443100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736472140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736472640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736455680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736478380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736488680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736472140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736493620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736495500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736478380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736509180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736509700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736493620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736522920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736526740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736509180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736539400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736522920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736540920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736544240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736558180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736540920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736560280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736544240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736572040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736573580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736589040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736572040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736589620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736573580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736593900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736594180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736610360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736593900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736619760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736594180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736623140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736624780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736639200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736623140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736642260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736624780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736652240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736655900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736668560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736652240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736673180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736655900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736673500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736686800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736689760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736673500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736702720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736704240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736686800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736718320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736719220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736702720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736723920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736735520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736718320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736740340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736723920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736741060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736753420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736758220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736741060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736769440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736753420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736772080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736774040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736788680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736772080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736790220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736774040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736802780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736803300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736819160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736803300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736819480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736802780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736832140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736833400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736848960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736832140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736850640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736833400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736853920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736865000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736870440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736853920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736881920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736865000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736883440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736887780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736900040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736883440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736904600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736904800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736887780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736918580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736921100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736904600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736934320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736936020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736918580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736949640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736950460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736934320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736963220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736966840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736949640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736970960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736963220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736980560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736983920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736997140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736980560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159736999500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159736983920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159737002800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159737012720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159737019940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159737002800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742013040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742015900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742027180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742062180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742013040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742079840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742027180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742094040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742094400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742094940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742113780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742124560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742142880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742094940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742175200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742178120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742124560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742192340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ipx_LXX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742211240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742213020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742224160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742226020\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742227500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742175200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742228660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742229180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742229740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742243460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742261460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742279180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742213020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742309040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742321360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742261460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742322340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742354380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742375180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742322340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742389620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742393080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742354380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742422160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742437300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742451900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742454120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742455880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742484820\",\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742503540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742518740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742422160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742519880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742524420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742451900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742534700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742538540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742550800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742583760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742586220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742636960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742664940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742669160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_L19.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742684900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742586220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742685100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742686000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742702720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742583760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742748560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742753760\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742754240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742763680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742765660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742787280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is2_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742836640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742748560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742848720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742864480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742878020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S4\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742878140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742754240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742882060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742883680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742896640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742946140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742947220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742980480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742983120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742896640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159742994600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743031940\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"group semAct 2\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743046260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743047620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159742946140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743058460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743063320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743063740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743091320\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"group semAct 1\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743095220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743123540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743130840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743141000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743146900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743046260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743178940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743211100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743213280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743224000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S3\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743226700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3X3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743242560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743123540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743271360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743304460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743305820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743307200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743211100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743336900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743354980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743359220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743370240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743406120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743406420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743305820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743423780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743436200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743452540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743359220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743471100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743471440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743505940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743524300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743550280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743555500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar-greedy-rewrite.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743571580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743471100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743584720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743505940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743606220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743616360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743637940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743650820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743652180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743666540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743606220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743667760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743616360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743668160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743681820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743697740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743700860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743703860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743736340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743697740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743751020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743700860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743768280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743769380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743785840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743786940\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct 3\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743797220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743816840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743768280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743835080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743785840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743845540\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct 2\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743845680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743877400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743878440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743884000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743896860\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct 1\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743898780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743845680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743912680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743913920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is2_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743916200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743929860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743932920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743933320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743878440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743949220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743949820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743976960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159743980380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743929860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744011820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744014920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744030420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159743976960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744060700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744062600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744014920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744064360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744079580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744096060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744107140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744126520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744064360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744129380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744146080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744096060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744160100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744175140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744177340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744188440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrst\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744222380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744160100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744223120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744224800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744225320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744226480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744227100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744175140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744254220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744255560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744258620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744287960\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744310760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744258620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744311120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744255560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744322040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744336780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744341480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744353720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744389260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744390700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744341480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744408060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744353720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744419840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744421660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744440580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744441480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744442080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744473320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744421660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744486960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744502000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744504320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744442080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744505360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744519280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744535920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744536300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744549380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744555320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744565380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744505360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744567280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744586660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744599760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744549380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744634720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744634980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744586660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744647240\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744667400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744679980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744681960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744685340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744697500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744634720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744715840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744667400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744730180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744747700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744748940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744763920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1-Io1_Ip2_Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744783120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744730180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744796580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744747700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744797060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744800560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744802060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744819140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744828860\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744831260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744867000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744881960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744831260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744882040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744819140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744896920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744913560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744914920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744925900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744959280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744963340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744964580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744914920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744980920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744925900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159744993860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745008720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745010280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745011660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745012620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745030360\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745044480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159744993860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745076060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745012620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745076820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745091280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745108260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745125000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745125920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745076820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745130340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745159780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745162700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745162840\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745174820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745108260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745176060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745210520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745210660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745159780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745223820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745242340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745243520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745244100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/s0\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745253380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745272700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745210520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745289840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745242340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745305880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745321920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745342600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745358720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745305880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745371300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745321920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745372540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745375600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745388300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745390680\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745400960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745403380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745439220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745452140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745403380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745452880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745400960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745466780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745485340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745487240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745490460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745500340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745505660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745535620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745485340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745551700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745490460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745568040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745583220\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745583800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745586140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#semActs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.semact\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745586740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745614800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745618140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745568040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745648480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745586740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745650060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745665940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745682920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745699680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745650060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745702380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745716620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745718520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745732720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745735320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745682920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745752800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745767320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745781000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745732720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745781580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745811100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745811420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745828540\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"startAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745829480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745830300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745767320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745831520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745863400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745811420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745866180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745894920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745913920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745916700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745866180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745933240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745894920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745943980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745958760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745965240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745981680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159745992000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746008360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746010700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745958760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746010880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746014420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746015180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159745965240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746045440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746046780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746057720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746063700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746074000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrst\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746106340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159746046780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746109400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159746045440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746139080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746144300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746159180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746165220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159746139080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159746170600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159746144300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750421460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750432900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750450800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750453440\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"group semAct\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750463540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1-greedy-rewrite.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750465120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750480260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750432900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750496320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750501280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750514540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750450800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750515040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750535740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750550140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750567020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750515040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750585200\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750596820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750598720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750611360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750613100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750550140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750634160\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750646520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750648940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750598720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750679760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750698380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750699880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750646520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750729540\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750730640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750731880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750679760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750743880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750761580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750763060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750791520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750795260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750743880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750809180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750811620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750763060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750830200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750831960\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"shape action\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750842180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750844740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750845040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Bo2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750891620\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750894720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750830200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750897060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750844740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750913820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750930100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750930300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750938980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750944820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750979440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750930100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159750992080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159750930300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751010360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751027340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751028180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#semActs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.semact\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751042660\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751059180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751061360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751010360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751070300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751073600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751088620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751027340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751092240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751107940\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751124180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751137360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751152560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751092240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751159500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751172240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751185240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751185860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751124180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751217760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751223940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751185240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751252000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751256580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751257720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751270320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751271880\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"shape action\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751272340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751217760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751284560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751304080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751305200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751256580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751335400\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751338080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751368180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751304080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751397460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751338080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751397720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751401280\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751403460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751405320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751420720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751435520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751463600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751465520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751403460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751470300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751480260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751420720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751498380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751499920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751513580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751552260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751498380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751562040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751513580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751565680\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751579020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751585120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751594180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751610700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751615240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751633280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751585120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751648580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751594180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751663880\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"\\\"%{\\\\\\\\%}\\\"\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751665520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751667060\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751680920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751682300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751697560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751716660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751665520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751732820\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751744960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751682300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751747520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751758000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751778160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751779440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751808080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751747520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751827560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751830340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751841500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751843380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751778160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751847780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751877580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751878560\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751891860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751841500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751896880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751923160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751928320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751940720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751877580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751946180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751971980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751972560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751923160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751972580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751974140\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159751994760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752036440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751972580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752043820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159751994760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752044080\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752070240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752076420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752087460\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752105580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752119980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752124460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752070240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752125720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752136740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrst\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752138640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752076420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752142480\",\n    \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752169640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752170500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752188420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752189000\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752220840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752170500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752221260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752169640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752253800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752266080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752285340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752285920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested3groupIRIRef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752304360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752253800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752317040\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752317280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752266080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752334280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752334420\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752349840\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/#c\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752351100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752384140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752334280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752401760\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/p1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/#b\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752401960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752404060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752351100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752414660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752429780\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752430360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752447760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752452240\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/#a\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752465300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752414660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752480720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcdefghijklmnopqrs\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752482180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/Sext\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752498880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752499120\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrst.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752502140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752447760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752518260\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752534820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752550280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752498880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752562800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested2groupIRIRef.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752562980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752581700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752597860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752534820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752631800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752581700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752632100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752645240\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752647580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#semActs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.semact\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752662320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752662760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752678520\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In4.In4_Ip4_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752698100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752632100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752711640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752713740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752662760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752730740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752745220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752745700\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752790360\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"_:abcd\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752791240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752730740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752792140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752745220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752792340\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752809600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752814100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752823040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752846300\",\n    \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/Sext\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n2\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752858200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752814100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752860180\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752862140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752823040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752888960\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752889480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752894980\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752895980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752925220\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/o1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752928960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752889480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752954920\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In3.In3_Ip3_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752955080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752895980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752958180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752976260\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/p1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752988780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159752992100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753008400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752958180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753021380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753027100\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#prints\": [\n      {\n        \"@value\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extension\": [\n      {\n        \"@id\": \"http://shex.io/extensions/Test/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753037960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753038340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159752988780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753056440\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753070980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753075640\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753085380\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753087720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753037960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753102500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1a\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753108360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753122700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753070980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753152880\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753153660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753156280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753108360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753156320\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv4.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753185280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753190740\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753203320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753153660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753218900\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753222600\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/n1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753222720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753185280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753235340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753254520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753268580\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753283840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753235340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753299500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753254520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753305720\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753316360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753317020\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753321680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753334100\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753364160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753316360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753366160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753321680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753387580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753387740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753416500\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753416800\",\n    \"http://www.w3.org/ns/shacl/test-suite#shape\": [\n      {\n        \"@id\": \"http://a.example/S1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#focus\": [\n      {\n        \"@id\": \"http://a.example/s1\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#data\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv.ttl\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#schema\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753434100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753448900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753387740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753449720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753387580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753466200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753469140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753497060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753466200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753501300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753469140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753514020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753518860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753543860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753514020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753550460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753518860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753566240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753576600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753584340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753597400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753576600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753613820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753616320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753584340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753642060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753644400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753613820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753660720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753665700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753642060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753692060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753660720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753693000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753709300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753726160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753693000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753732020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753709300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753744540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753748100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753793260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753744540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753795540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753748100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753811820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753566240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753827960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753828140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753858800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753828140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753860380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753827960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753876020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753879140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753907240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753876020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753911880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753879140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753937120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753956880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#failed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753971280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159753993520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753937120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754005380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753956880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754021200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753971280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754021540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754038800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754068540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754021540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754084500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754087780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754038800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754101300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754121800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754123460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754084500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754139980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754153180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754121800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754170100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754139980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754172680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754187200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754205700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754101300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754223060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754237240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754172680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754267420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754187200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754281460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754285080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754304260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754223060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754321520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754347460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754281460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754348040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754285080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754364240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754365600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754387000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754364240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754398120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754365600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754412240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754416000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754433220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754412240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754447940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754416000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754449900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754465440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754480060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754449900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754497300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754498960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754465440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754517620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754528800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754497300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754546780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159754550420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754517620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758787240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758787320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754546780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758803880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758810060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758787240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758825620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758803880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758836520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758842140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758869020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758836520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758872300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758842140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758887220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758889440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758919440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758887220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758919660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758889440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758937120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758938780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758967640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758937120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758971040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758938780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758983720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159758988680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759005060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758983720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759020320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159758988680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759022340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759039280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759081760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159754321520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759103680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759022340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759115820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759147660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759115820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759169380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759170120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759039280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759181020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759213040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759181020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759246860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759278380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759246860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759294560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759297920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759169380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759312540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759345640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759312540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759363680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759367080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759294560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759378740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759411760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759378740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759446060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759476360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759446060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759491120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759492520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759363680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759509560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759544200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759509560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759558700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759578620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759611780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759578620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759622460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759491120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759629800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759558700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759645960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759690760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759695580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759705640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759645960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759723980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759774820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759723980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759793400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759820760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759690760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759825240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759695580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759842200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759793400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759869060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759888560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759890980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759918400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759869060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759936160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159759988680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759936160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760006760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760019840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759888560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760020740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159759890980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760055940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760006760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760087120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760087720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760099800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760130780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760099800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760164620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760186020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760164620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760203040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760215000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760087120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760218300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760087720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760250700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760203040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760265580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760281280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760284980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760313060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760265580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760329960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760377420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760329960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760394940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760409300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760281280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760416260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760284980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760443300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760394940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760460600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760476020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760507660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760460600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760524900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760541300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760564020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760524900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760589360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760605680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760476020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760627560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760589360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760644260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760671500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760541300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760671720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760692140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760644260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760708280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760740100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760744300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760671720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760756280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760708280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760775520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760836700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760775520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760856180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760867460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760872300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760740100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760916540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760856180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760939460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760939780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760867460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760952360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159760986900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760952360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761006000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761020540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761071940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159760939460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761080960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761020540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761100200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761134100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761006000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761150000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761100200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761167300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761195700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761200120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761214920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761167300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761233200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761279900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761233200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761296620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761326240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761195700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761328640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761200120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761342740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761296620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761359620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761381860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761359620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761394260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761394600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761414960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761446100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761414960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761479860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761511760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761479860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761522720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761394600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761524840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761394260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761544680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761576460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761544680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761588780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761592120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761609340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761640940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761609340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761660700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761588780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761673980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761703440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761673980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761723440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761592120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761726320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761736680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761759240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761736680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761776580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761789300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761822460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761776580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761839780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761855500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761726320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761887700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761839780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761903980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761920420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761920500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761789300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761950640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761903980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761967320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159761989180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762014940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761967320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762031800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762049740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761920420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762070680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762031800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762086860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762116720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762120340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159761989180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762133680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762086860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762151400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762197780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762151400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762214200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762244980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762245800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762116720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762261380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762214200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762278400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762311340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762326920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762278400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762343300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762365160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762343300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762375300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762244980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762382520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762311340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762398920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762428400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762398920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762442840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762461200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762491640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762461200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762506240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762525160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762546240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762525160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762574380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762442840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762578740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762506240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762588420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762610880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762588420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762628120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762643700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762674640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762628120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762692600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762703540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762739420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762692600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762756420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762774220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762703540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762774640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762643700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762802380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762756420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762819080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762841160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762857540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762819080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762873760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762900960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762921120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762873760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762938340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159762945500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762841160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763002560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762938340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763019440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763047140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159762900960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763051880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763065380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763019440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763082320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763102720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763082320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763113980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763135420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763165340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763135420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763180120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763051880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763198620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763227800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763113980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763229520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763245780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763198620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763263820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763294620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763307260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159753434100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763309920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783911680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159763315760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764464640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763229520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764483360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764485020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763294620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764503740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764514660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764483360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764532620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764551020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764503740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764579920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764532620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764581340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764597500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763263820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764612360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764630840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764581340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764644360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764612360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764649560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764661660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764681760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764649560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764684640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764661660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764712560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764726180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764727060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764749540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764727060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764759260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764726180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764766540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764776380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764796420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764766540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764841220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764776380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764845960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764864880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764712560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764876480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764894140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764845960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764909360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764876480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764911000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764927640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764943360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764911000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764960720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764961660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764927640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159764995720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765006600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764960720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765023640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765038300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765053840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159764995720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765076940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765038300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765089020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765023640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765089260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765105960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765123360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765089260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765143080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765152860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765105960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765158160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765171560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765190800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765158160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765192580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765171560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765218300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765220660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765252800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765220660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765254520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765218300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765270600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765274000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765303560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765270600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765318160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765274000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765331980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765338120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765365640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765331980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765382920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765338120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765385620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765402940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765418540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765385620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765436760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765447340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765402940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765467700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765469080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765436760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765496260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765512660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765467700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765530720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765496260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765534180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765549380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765579880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765534180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765584200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765549380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765600140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765611440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765645040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765611440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765646720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765600140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765664780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765667260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765697940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765664780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765711780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765667260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765715800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765732480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765758020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765715800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765776700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765732480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765777340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765797460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765810300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765777340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765831340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765843780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765797460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765863740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765874280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765831340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765892840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765907200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765863740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765924360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765892840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765926940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765943420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765961820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765926940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765976720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765943420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159765990520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766003840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766027380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765990520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766058820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159765143080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766071220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766003840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766091880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766122160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766091880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766136780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766137480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766154680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766184520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766154680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766217720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766239000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766217720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766255940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766268840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766137480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766269240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766136780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766304560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766255940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766322100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766336260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766338360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766384820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766336260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766401820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766322100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766418120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766446200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766338360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766451240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766466100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766418120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766483660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766515900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766530760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766483660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766546680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766584060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766451240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766594760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766546680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766612180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766633220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766612180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766649880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766515900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766665580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766697040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766665580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766708840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766729560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766759240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766729560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766776180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766781540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766708840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766793560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766823220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766793560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766856060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766873520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766876300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766776180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766894960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766856060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766911560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766944640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766959980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766911560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159766976500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767004040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766873520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767025360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766976500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767041280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767070940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767087180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767041280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767104160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767125780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767104160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767134480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159766944640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767191560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767214320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767191560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767225240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767070940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767226640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767247320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767279200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767247320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767292600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767312260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767342880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767312260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767359480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767226640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767375580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767406140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767375580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767422860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767292600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767426720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767439200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767460980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767439200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767491260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767503020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767526080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767503020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767543260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767591340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767543260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767607520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767619480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767426720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767622580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767491260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767654080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767607520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767670260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767689180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767689980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767716440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767670260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767733980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767773140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767733980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767798600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767820340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767689980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767821740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767689180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767836680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767854180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767798600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767870580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767896460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767918540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767870580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767934180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767950100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767836680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767963720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767896460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767967940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159767996820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767934180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768014060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768032280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768061660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768014060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768078140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768098660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159767967940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768125920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768078140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768142260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768165420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768165860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768032280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768181760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768142260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768198660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768245100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768198660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768262280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768292180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768296560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768165420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768326660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768338760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768292180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768357060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768358300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768326660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768375820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768391960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768357060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768408340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768375820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768410760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768426960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768453980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768410760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768459780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768426960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768473980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768485920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768507840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768473980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768519080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768485920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768535620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768536740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768569540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768536740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768570900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768535620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768588320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768590920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768621280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768588320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768624900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768590920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768638800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768652460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768671640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768638800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768687340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768652460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768689760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768715280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768722100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768689760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768739400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768749860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768715280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768769640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768781040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768739400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768799820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768804000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768769640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768831100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768799820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768831320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768849780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768866580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768831320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768881640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768849780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768886660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768899760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768928940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768886660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768932480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768899760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768950640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768951220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768983080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768951220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159768984320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768950640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769001200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769012260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769033300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769001200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769047160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769012260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769060480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769066000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769093060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769060480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769110480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769066000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769110880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769129420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769142880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769110880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769160040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769163720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769129420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769190720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769192220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769160040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769212300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769226340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769190720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769244880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769212300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769247400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769263000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769289300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769247400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769294400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769263000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769308680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769321660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769343020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769308680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769344620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769321660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769361560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769362000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769393660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769362000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769404020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769361560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769421440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769424520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769454340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769421440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769469160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769424520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769473360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769489040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769506100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769473360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769522480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769489040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769523680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769551420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769556500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769523680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769575320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769586620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769551420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769606200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769607320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769575320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769634120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769640220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769606200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769656900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769634120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769667520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769673620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769700280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769667520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769706040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769673620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769719900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769732480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769754480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769719900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769764660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769732480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769784140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769784280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769815600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769784140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769819100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769784280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769834080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769837340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769865120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769834080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769879800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769837340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769883360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769900120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769916060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769883360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769934700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769944400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769900120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769963500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769967780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769934700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769994900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159769999300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769963500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770026720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770027060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159769994900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770045240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770062740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770026720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770077180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770045240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770079780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770095560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770114800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770079780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770127860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770095560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770143220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770145860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770178000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770143220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770178660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770145860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770197520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770206880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770229980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770197520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770241480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770206880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770247120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770261720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770288860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770247120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770296180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770261720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770307280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770323900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770339960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770307280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770357560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770358040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770323900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770376660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770389460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770357560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770407780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770421660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770376660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770441380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770407780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770442260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770459460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770485660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770442260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770491500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770459460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770503600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770517740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770537980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770503600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770541940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770517740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770557060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770568040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770590200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770557060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770590720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770568040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770617500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770618840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770649680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770617500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770652220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770618840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770665600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770671720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770697780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770665600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770705320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770671720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770716280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770733100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770748340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770716280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770765600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770766580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770733100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770785080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770797380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770765600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770813940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770819780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770785080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770845800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770813940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770846800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770863160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770879600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770846800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770894480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770863160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770900440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770913240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770933120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770900440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770944400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770913240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770962200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770962940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770994720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770962940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159770995660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159770962200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771012380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771015720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771043780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771012380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771048880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771015720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771062480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771076580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771093440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771062480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771111520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771076580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771112640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771130740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771144620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771112640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771162480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771173020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771130740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771191900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771194280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771162480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771212460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771226820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771191900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771243700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771212460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771244680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771261740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771279300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771244680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771293900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771261740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771306720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771310980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771335500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159771336520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775566360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771306720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775570000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771310980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775603540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771336520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775613300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159771335500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775629520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775633060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775653420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775629520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775666100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775633060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775669600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775684780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775701380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775669600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775727680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775727840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775684780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775748640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775752080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775727680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775778900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775782160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775748640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775800740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775810100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775778900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775827300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775844040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775800740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775859320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775827300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775861960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775876980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775894820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775861960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775908180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775876980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775913660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775925120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775948360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775913660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775957400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775925120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775974960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159775975540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776007880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775974960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776010440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159775975540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776024780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776029720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776059060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776024780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776072740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776029720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776075140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776091440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776106680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776075140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776124100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776125160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776091440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776143640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776156200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776124100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776175200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776187460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776143640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776207860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776175200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776207920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776225140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776242880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776207920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776257720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776225140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776269580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776275200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776303860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776269580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776307100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776275200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776322320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776324760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776356040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776322320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776356400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776324760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776373360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776384420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776407300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776373360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776419020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776384420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776434000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776439140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776456560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776434000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776481360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776439140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776483140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776499280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776505760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776483140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776536200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776499280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776537440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776564340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776598060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776537440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776601340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776564340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776619580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776651900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776619580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776669340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776700680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776669340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776718480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776750640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776718480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776767220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776800460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776767220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776825580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776849180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776825580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776875600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776907500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776875600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776925400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776957860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776925400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159776975220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777006180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159776975220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777013680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777046420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777013680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777089040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780396640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777094700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777121440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777094700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777126480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777143920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777126480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777158120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777175280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777158120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777189280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777207560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777189280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777220880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777238480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777220880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777252340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777270000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777252340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777275700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777301460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777275700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777307200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777324200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777307200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777338240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777356060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777338240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777370440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777388380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777370440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777402160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777420000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777402160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777434180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777451820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777434180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777465520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777482880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777465520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777488600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777514400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777488600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777519960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777537040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777519960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777550640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777567960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777550640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777582420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777600400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777582420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777614160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777632040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777614160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777645660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777663860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777645660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777677560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777694640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777677560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777700700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777726500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777700700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777732280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777749620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777732280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777763580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777781140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777763580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777794960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777812120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777794960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777826520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777843920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777826520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777857580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777875400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777857580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777881060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777906880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777881060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777912180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777929860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777912180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777943820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777961120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777943820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777975040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159777992480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159777975040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778006420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778024060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778006420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778038180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778055560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778038180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778061020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778087220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778061020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778093200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778110900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778093200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778124800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778142860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778124800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778156500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778173760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778156500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778187420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778204520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778187420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778218680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778236540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778218680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778242100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778267500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778242100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778273140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778290940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778273140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778304920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778322180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778304920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778336660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778353740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778336660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778367980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778385580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778367980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778399660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778416640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778399660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778422680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778448640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778422680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778454240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778480180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778454240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778485600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778502620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778485600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778516780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778534480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778516780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778548420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778565980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778548420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778579840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778597980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778579840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778611640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778629060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778611640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778634740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778660660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778634740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778666300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778683680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778666300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778697980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778715340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778697980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778729600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778747140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778729600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778761280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778779680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778761280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778793280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778810580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778793280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778824980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778842160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778824980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778847820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778873760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778847820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778879200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778896340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778879200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778910340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778927920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778910340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778942180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778959720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778942180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778973720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159778991820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159778973720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779005980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779023880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779005980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779037540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779054760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779037540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779060640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779086740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779060640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779092400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779110040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779092400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779124280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779142140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779124280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779156320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779174320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779156320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779188260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779205900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779188260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779220080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779237280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779220080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779251080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779268580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779251080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779273840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779299600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779273840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779305140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779323360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779305140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779337140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779354500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779337140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779368920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779386640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779368920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779400320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779418660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779400320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779432040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779450020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779432040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779464100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779481440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779464100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779487000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779512880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779487000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779518980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779536480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779518980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779550440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779568020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779550440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779582560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779599780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779582560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779613680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779630840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779613680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779644720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779661680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779644720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779676200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779693720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779676200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779699500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779716700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779699500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779722160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796539680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779763720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159695829780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779781360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779815340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779781360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779840880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779873500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779840880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779890220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779913460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779890220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779940360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779972440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779940360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159779991420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780024060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159779991420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780040960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780072020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780040960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780089920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780122660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780089920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780139740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780171680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780139740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780190000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780221940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780190000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780240160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780271620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780240160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780288340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780319920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780288340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780358920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159768262280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780373540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780390620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780373540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780396640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780407940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780425660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780407940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780439020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780456680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780439020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780462220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780487660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780462220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780494100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780520000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780494100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780525900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780542800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780525900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780556840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780574740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780556840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780589000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780606260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780589000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780620020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780637780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780620020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780651540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780669460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780651540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780675060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780700580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780675060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780706320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780724020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780706320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780737860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780755400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780737860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780769460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780786780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780769460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780800880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780818620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780800880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780832620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780850040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780832620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780855540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780880960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780855540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780886640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780904680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780886640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780918900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780936440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780918900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780950260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780967540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780950260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780981140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159780998740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159780981140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781013140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781029940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781013140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781035840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781061860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781035840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781066880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781084200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781066880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781098140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781116080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781098140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781129740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781147540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781129740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781161620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781178200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781161620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781192280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781210260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781192280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781216100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781241400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781216100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781247020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781264840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781247020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781278840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781296200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781278840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781310400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781327780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781310400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781341740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781359300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781341740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781373400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781390820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781373400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781404800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781422280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781404800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781427880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781445100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781427880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781458820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781476580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781458820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781490640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781508520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781490640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781522080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781539880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781522080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781554060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781571720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781554060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781585680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781603140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781585680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781609160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781634880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781609160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781640780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781657640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781640780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781672000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781689500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781672000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781703540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781721140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781703540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781735000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781752180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781735000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781766380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781784960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781766380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781798900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781815800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781798900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781820700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781847480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781820700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781852780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781870780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781852780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781884660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781902000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781884660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781916080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781933940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781916080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781948280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781966400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781948280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781980300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159781998140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159781980300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782011880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782029620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782011880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782035000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782060880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782035000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782066680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782084100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782066680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782098100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782115360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782098100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782128880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782146600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782128880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782160560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782178300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782160560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782192160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782209620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782192160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782215240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782241380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782215240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782246500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782263840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782246500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782277760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782295700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782277760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782309680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782327160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782309680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782341520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782359380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782341520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782373100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782390760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782373100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782404960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782422560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782404960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782427900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782453380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782427900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782458780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782475800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782458780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782490260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782507880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782490260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782521820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782539400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782521820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782552820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782571060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782552820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782584820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782602060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782584820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782607440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782624660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782607440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782638560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782655940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782638560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782669940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782687460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782669940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782701360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782719400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782701360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782733540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782751840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782733540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782766220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782782720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782766220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782788740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782813960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782788740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782819920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782837420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782819920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782851180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782868880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782851180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782882820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782900220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782882820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782914100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782932220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782914100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782946160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782963820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782946160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782977620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159782994740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159782977620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783000480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783018120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783000480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783032060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783049720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783032060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783063580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783080800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783063580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783094780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783112380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783094780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783126440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783143860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783126440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783157980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783174960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783157980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783180540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783198220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783180540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783211940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783229400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783211940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783243760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783261580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783243760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783275680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783293160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783275680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783307220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783324700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783307220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783338580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783356560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783338580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783362480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783387860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783362480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783393160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783410480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783393160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783424760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783442280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783424760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783456440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783474000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783456440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783487980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783505540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783487980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783519280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783537180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783519280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783542700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783568160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783542700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783573640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783591280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783573640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783604960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783622500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783604960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783636520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783654040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783636520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783667840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783685200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783667840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783699380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783717260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783699380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783722800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783748420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783722800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783753940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783771580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783753940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783785540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783803740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783785540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783817420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783835120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783817420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783849020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783866800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783849020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783880860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783897980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159783880860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159783911680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796539680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796554220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796571680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796554220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796585580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796602540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796585580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796608000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796633960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796608000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796639480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796657240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796639480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796671080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796688260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796671080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796702300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796719820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796702300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796734200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796751660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796734200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796765340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796782340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796765340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796787920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796805140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796787920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796819460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796837060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796819460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796851000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796869140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796851000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796883560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796901820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796883560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796915940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796933340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796915940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796947080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796964700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796947080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796978640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159796996020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159796978640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797001360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797027240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797001360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797032680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797050060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797032680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797063840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797081560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797063840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797095720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797112800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797095720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797126600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797144120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797126600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797158060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797175500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797158060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797181400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797207300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797181400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797213280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797230120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797213280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797244260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797261780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797244260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797275520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797293500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797275520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797307380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797324340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797307380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797329760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797355320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797329760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797361340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797387380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797361340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797392860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797410420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797392860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797424060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797441420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797424060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797455020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797472120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797455020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797486080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797503460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159797486080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159797509300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800737600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159763315760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800751460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800769180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800751460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800782700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800800820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800782700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800815240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800833300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800815240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800846680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800864520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800846680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800878500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800895700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800878500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800901180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800930700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812006520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800943860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800959920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800943860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800965040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800980920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800965040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159800994020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801010680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159800994020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801015160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801031200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801015160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801044280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801060480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801044280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801065160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801080920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801065160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801094180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801110140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801094180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801123120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801130900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801123120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801144040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801160820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801144040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801174280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801189920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801174280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801194840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801210500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801194840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801223180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801239600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801223180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801244420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801260960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801244420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801273980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801290320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801273980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801303540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801319680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801303540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801324880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801341400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801324880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801354900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801371040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801354900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801375480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801391680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801375480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801404320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801420700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801404320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801425420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801441540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801425420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801454520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801470840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801454520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801483760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801500040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801483760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801504940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#failed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801521380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801504940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801534100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801550160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801534100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801555400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801571360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801555400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801584120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801600140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801584120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801604900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801622020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801604900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801634920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801651040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801634920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801664020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801680380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801664020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801685680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801702420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801685680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801715360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801731740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801715360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801736640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801752860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801736640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801765700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801781900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801765700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801795160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801811020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801795160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801815620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801831920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801815620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801845180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801861340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801845180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801865980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801882640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801865980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801895260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801911520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801895260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801916320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#failed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801933060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801916320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801945940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801962560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801945940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801975560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801991380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801975560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159801995980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802012340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159801995980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802025280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802041420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802025280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802046580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802062560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802046580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802075660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802092060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802075660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802096960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802113220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802096960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802126140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802142300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802126140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802155260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802162540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802155260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802175400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802191400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802175400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802204600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802221120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802204600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802225660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802242020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802225660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802255360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802271680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802255360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802276720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802293260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802276720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802306280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802322360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802306280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802335420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802351880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802335420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802356240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802372660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802356240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802385640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802401860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802385640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802406680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802422780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802406680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802436060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802452300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802436060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802457280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802473680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802457280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802486600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802502760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802486600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802515580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802522740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802515580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802535800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802551720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802535800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802564940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802581160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802564940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802585940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802602220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802585940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802615220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802631240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802615220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802636200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802652340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802636200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802665360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802681640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802665360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802686220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802702700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802686220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802715480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802731360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802715480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802735860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802752120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802735860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802765340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802781680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802765340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802794780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802811240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802794780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802816140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802832560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802816140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802845920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802861980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802845920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802866820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802882660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802866820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802895540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802911700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802895540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802916620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802932560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802916620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802945260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802961480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802945260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802974380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802990680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802974380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159802995900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803011960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159802995900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803025040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803041160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803025040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803045920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803061820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803045920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803074800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803090980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803074800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803095960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803112260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803095960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803125260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803141340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803125260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803146200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803162040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803146200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803175320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803191560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803175320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803204720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803220780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803204720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803225760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803241380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803225760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803254480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803270820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803254480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803275200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803291420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803275200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803304720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803320460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803304720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803325080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803340920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803325080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803354200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803370140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803354200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803374500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803390780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803374500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803403580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803419420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803403580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803424060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803439760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803424060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803452600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803468420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803452600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803473000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803489020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803473000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803502200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803517880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803502200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803522540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803538120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803522540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803550920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803566560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803550920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803571240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803587180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803571240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803600220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803615740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803600220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803620420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803636200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803620420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803649340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#failed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803665400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803649340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803670160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803686240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803670160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803699120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803714860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803699120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803719420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803735200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803719420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803748360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803764120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803748360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803768720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803784700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803768720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803797660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803813700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803797660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803826740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803842800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803826740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803847580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803863800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803847580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803876580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803892020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803876580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803896460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803912420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803896460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803925620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803941000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803925620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803945580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803962220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803945580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803975200\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803991120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803975200\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159803996100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804012140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159803996100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804025140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804041040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804025140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804045940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804061600\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804045940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804074260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804090680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804074260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804095120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804107520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554877120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804108260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159554875160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804112800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804128460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804112800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804141520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804157180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804141520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804170380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804178100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804170380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804190980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804207080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804190980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804219660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804227360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804219660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804240300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804256180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804240300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804269140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804276540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804269140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804289520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804305520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804289520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804318180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804334240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804318180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804338720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804354260\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804338720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804367000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804374520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804367000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804387700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804403340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804387700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804416100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804423940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804416100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804436780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804452480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804436780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804465680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804481940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804465680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804486640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804502440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804486640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804515480\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804531360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804515480\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804535740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804552220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804535740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804565060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804581120\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804565060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804585760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804601860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804585760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804614520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804630220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804614520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804634900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804651100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804634900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804663940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804680040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804663940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804684720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804700340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804684720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804700660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804712860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804713880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804700660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804729080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804712860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804733800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804749620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804733800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804762880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804778480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804762880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804783100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804798720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804783100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804811760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804828240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804811760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804833100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804849200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804833100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804861920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804878180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804861920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804882640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159804886900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809126060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159691642960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809140300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809157740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809140300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809171800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809189160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809171800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809202800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809219780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809202800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809233940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809251760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809233940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809257320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809283140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809257320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809288840\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809306500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809288840\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809320360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809337300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809320360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809351520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809369100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809351520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809383020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809401000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809383020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809414660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809431480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809414660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809436820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809453840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809436820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809467780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809486100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809467780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809499740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809517180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809499740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809531300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809548800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809531300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809562680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809579740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809562680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809593860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809610660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809593860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809616420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809633900\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809616420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809648360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809665300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809648360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809679560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809697500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809679560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809711340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809729300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809711340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809743180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809760820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809743180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809774320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809791460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809774320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809796960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809813980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809796960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809828140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809846220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809828140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809860220\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809877680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809860220\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809891620\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809909820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809891620\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809923380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809940960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809923380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809955000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809972000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809955000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159809978060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810003220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159809978060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810008940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810026460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810008940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810040760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810057820\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810040760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810072180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810089640\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810072180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810103720\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810121420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810103720\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810135240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810152300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810135240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810157420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810183240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810157420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810188420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810205940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810188420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810220100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810237460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810220100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810250960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810268520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810250960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810282860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810301080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810282860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810314740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810332080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810314740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810337560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810355040\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810337560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810368600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810385460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810368600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810399780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810416760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810399780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810431140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810448220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810431140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810462060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810479420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810462060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810484660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810502060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810484660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810515920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810533200\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810515920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810546760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810564000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810546760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810577360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810594240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810577360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810599700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810617000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810599700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810631080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810648000\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810631080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810661920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810679140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810661920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810692740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810709760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810692740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810715160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810740680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810715160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810746780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810764420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810746780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810778360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810795980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810778360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810809820\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810826580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810809820\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810840700\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810858240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810840700\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810872660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810889680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810872660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810895560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810921420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810895560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810926680\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810944580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810926680\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810958140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810976220\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810958140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159810990020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811008280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159810990020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811022040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811039520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811022040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811053420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811071400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811053420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811085300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811103440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811085300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811117380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811134420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811117380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811140280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811157840\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811140280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811171800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811188980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811171800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811202900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811219940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811202900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811234240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811251620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811234240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811265400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811283160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811265400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811288900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811314520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811288900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811320020\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811346500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811320020\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811352260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811369720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811352260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811383640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811400920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811383640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811415000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811432380\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811415000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811446580\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811464180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811446580\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811478300\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811496060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811478300\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811501540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811527180\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811501540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811532920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811550060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811532920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811563920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811581340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811563920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811595320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811612440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811595320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811626500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811643880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811626500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811657960\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811675480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811657960\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811680880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811697580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811680880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811711440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811728160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811711440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811741160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811757880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811741160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811762400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811778880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811762400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811792080\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811807940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811792080\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811813060\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811829580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811813060\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811842780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811858880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811842780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811872120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811888500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811872120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811893040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811909400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811893040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811922660\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811942420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813319540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811955560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811971700\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811955560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811976500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159811993340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811976500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812006520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812024140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159804095120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812037240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812053300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812037240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812058000\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812073480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812058000\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812086520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812102500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812086520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812107120\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812123240\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812107120\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812136260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812152280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812136260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812156760\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812172720\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812156760\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812185500\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812201420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812185500\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812206160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812222500\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812206160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812235340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812250940\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812235340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812255600\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812271660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812255600\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812284540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812300480\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812284540\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812313240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812321160\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812313240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812334140\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812349760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812334140\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812363040\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812378740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812363040\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812383400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812399460\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812383400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812412340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812428620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812412340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812433320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812449140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812433320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812462240\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812477560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812462240\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812482440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812498520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812482440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812511360\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812527280\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812511360\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812531920\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812547660\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812531920\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812560320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812575880\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812560320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812580860\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812596860\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812580860\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812609900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812626080\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812609900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812630800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812646440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812630800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812659520\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812675580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812659520\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812680380\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812696360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812680380\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812709340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812724960\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812709340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812729400\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812745340\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812729400\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812758260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812773920\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812758260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812778740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812779740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812792680\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812779740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812794320\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812778740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812807440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812822740\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812807440\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812827560\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812843800\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812827560\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812856900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812872540\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812856900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812877260\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812893020\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812877260\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812905640\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812921420\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812905640\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812926100\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812941980\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812926100\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812954900\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812970440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812954900\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812975280\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159812991300\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159812975280\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813003980\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813020060\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813003980\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813024940\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813040780\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813024940\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813051880\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#untested\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813053780\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813057520\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813051880\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813069360\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813053780\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813074180\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813089760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813074180\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813102740\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813118440\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813102740\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813123160\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813139400\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813123160\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813152420\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813168140\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813152420\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813172800\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813188620\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813172800\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813201460\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813217560\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813201460\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813222320\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813238580\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813222320\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813251340\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813267100\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159813251340\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813275440\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813314760\",\n    \"http://www.w3.org/ns/earl#test\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertion\"\n    ],\n    \"http://www.w3.org/ns/earl#mode\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#automatic\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#result\": [\n      {\n        \"@id\": \"_:g70159811922660\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertedBy\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#subject\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"_:g70159813319540\",\n    \"http://www.w3.org/ns/earl#outcome\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/earl#passed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestResult\"\n    ]\n  },\n  {\n    \"@id\": \"http://greggkellogg.net/foaf#me\",\n    \"http://xmlns.com/foaf/0.1/name\": [\n      {\n        \"@value\": \"Gregg Kellogg\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertor\",\n      \"http://xmlns.com/foaf/0.1/Person\"\n    ],\n    \"http://xmlns.com/foaf/0.1/homepage\": [\n      {\n        \"@id\": \"http://greggkellogg.net/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://rubygems.org/gems/earl-report\",\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"EarlReport generates HTML+RDFa rollups of multiple EARL reports\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#license\": [\n      {\n        \"@id\": \"http://unlicense.org\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://github.com/gkellogg/earl-report\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"earl-report\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#shortdesc\": [\n      {\n        \"@value\": \"Earl Report summary generator\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#release\": [\n      {\n        \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.4.3\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"Ruby\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://rubygems.org/gems/shex\",\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#TestSubject\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://ruby-rdf.github.io/shex\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"ShEx\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"Ruby\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n    \"http://xmlns.com/foaf/0.1/name\": [\n      {\n        \"@value\": \"Eric Prud'hommeaux\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertor\",\n      \"http://xmlns.com/foaf/0.1/Person\"\n    ],\n    \"http://xmlns.com/foaf/0.1/homepage\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.4.3\",\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Version\"\n    ],\n    \"http://usefulinc.com/ns/doap#created\": [\n      {\n        \"@value\": \"2016-12-26\",\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"earl-report-0.4.3\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#revision\": [\n      {\n        \"@value\": \"0.4.3\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx negative structure tests\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735048540\"\n      },\n      {\n        \"@id\": \"_:g70159736719220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1MissingRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1MissingRef.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766122160\"\n      },\n      {\n        \"@id\": \"_:g70159735492960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMissingRefdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1focusMissingRefdot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760605680\"\n      },\n      {\n        \"@id\": \"_:g70159732263500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusRefANDSelfdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1focusRefANDSelfdot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733014700\"\n      },\n      {\n        \"@id\": \"_:g70159800895700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"includeNonSimpleShape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/includeNonSimpleShape.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568079820\"\n      },\n      {\n        \"@id\": \"_:g70159555204500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"includeShapeNotFound\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/includeShapeNotFound.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx negative syntax tests\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736051560\"\n      },\n      {\n        \"@id\": \"_:g70159561213540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1decimalMininclusiveroman-numeral.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782146600\"\n      },\n      {\n        \"@id\": \"_:g70159769607320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnot_AIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1dotAnnot_AIRIREF.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559399120\"\n      },\n      {\n        \"@id\": \"_:g70159694798780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotUnlabeledCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1dotUnlabeledCode1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770894480\"\n      },\n      {\n        \"@id\": \"_:g70159736411640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1doubleMininclusiveroman-numeral.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770845800\"\n      },\n      {\n        \"@id\": \"_:g70159781689500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1floatMininclusiveroman-numeral.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736309660\"\n      },\n      {\n        \"@id\": \"_:g70159555727680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveroman-numeral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1integerMininclusiveroman-numeral.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732508720\"\n      },\n      {\n        \"@id\": \"_:g70159730463600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inverseinversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1inverseinversedot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761855500\"\n      },\n      {\n        \"@id\": \"_:g70159760756280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriLength2.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567493280\"\n      },\n      {\n        \"@id\": \"_:g70159803220780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMaxexclusive.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566640860\"\n      },\n      {\n        \"@id\": \"_:g70159559595520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxinclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMaxinclusive.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736100880\"\n      },\n      {\n        \"@id\": \"_:g70159782719400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMinexclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMinexclusive.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556397200\"\n      },\n      {\n        \"@id\": \"_:g70159761522720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMininclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMininclusive.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812321160\"\n      },\n      {\n        \"@id\": \"_:g70159690609300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalFractiondigitsxsd-integer.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736526740\"\n      },\n      {\n        \"@id\": \"_:g70159770229980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalLength2.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690002000\"\n      },\n      {\n        \"@id\": \"_:g70159568000400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigitsxsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalTotaldigitsxsd-integer.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693992520\"\n      },\n      {\n        \"@id\": \"_:g70159813314760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1negatedinversenegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1negatedinversenegateddot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560529360\"\n      },\n      {\n        \"@id\": \"_:g70159770933120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1negatednegateddot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1negatednegateddot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783410480\"\n      },\n      {\n        \"@id\": \"_:g70159801752860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1unknowndatatypeMaxInclusive\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1unknowndatatypeMaxInclusive.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559739360\"\n      },\n      {\n        \"@id\": \"_:g70159781870780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1bnode.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778204520\"\n      },\n      {\n        \"@id\": \"_:g70159557854020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriMinusiri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1iriMinusiri1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804178100\"\n      },\n      {\n        \"@id\": \"_:g70159743047620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vcrefSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1vcrefSTRING_LITERAL1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759170120\"\n      },\n      {\n        \"@id\": \"_:g70159810183240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1valA\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1valA.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767025360\"\n      },\n      {\n        \"@id\": \"_:g70159554369680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"DECIMAL-123.abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/DECIMAL-123.abc.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768804000\"\n      },\n      {\n        \"@id\": \"_:g70159803090980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"DOUBLE-123e\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/DOUBLE-123e.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730559700\"\n      },\n      {\n        \"@id\": \"_:g70159769944400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"INTEGER-+-1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/INTEGER-+-1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751368180\"\n      },\n      {\n        \"@id\": \"_:g70159775570000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"INTEGER-123abc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/INTEGER-123abc.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736509700\"\n      },\n      {\n        \"@id\": \"_:g70159782390760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"IRIREF-with-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-ECHAR.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812172720\"\n      },\n      {\n        \"@id\": \"_:g70159697979240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"IRIREF-with-PN_LOCAL_ESC\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-PN_LOCAL_ESC.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556314040\"\n      },\n      {\n        \"@id\": \"_:g70159567820860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"IRIREF-with-SPACE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-SPACE.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730086100\"\n      },\n      {\n        \"@id\": \"_:g70159751480260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"IRIREF-with-bad-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-bad-UCHAR.1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159707220400\"\n      },\n      {\n        \"@id\": \"_:g70159566904640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"IRIREF-with-bad-UCHAR.2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-bad-UCHAR.2.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691300280\"\n      },\n      {\n        \"@id\": \"_:g70159803615740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PNAME_NS-dot-at-end-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-end-declared.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760313060\"\n      },\n      {\n        \"@id\": \"_:g70159810355040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PNAME_NS-dot-at-end-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-end-undeclared.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688256220\"\n      },\n      {\n        \"@id\": \"_:g70159556528020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PNAME_NS-dot-at-start-declared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-start-declared.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736472640\"\n      },\n      {\n        \"@id\": \"_:g70159769815600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PNAME_NS-dot-at-start-undeclared\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-start-undeclared.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769522480\"\n      },\n      {\n        \"@id\": \"_:g70159751716660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-PERCENT-end\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-end.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742279180\"\n      },\n      {\n        \"@id\": \"_:g70159732414200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-PERCENT-mid\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-mid.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768983080\"\n      },\n      {\n        \"@id\": \"_:g70159732170540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-PERCENT-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-start.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765579880\"\n      },\n      {\n        \"@id\": \"_:g70159706280280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-dash-start\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-dash-start.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555006220\"\n      },\n      {\n        \"@id\": \"_:g70159706456740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-unescaped-TILDE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-unescaped-TILDE.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733775900\"\n      },\n      {\n        \"@id\": \"_:g70159759820760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PN_LOCAL-with-UCHAR.1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-with-UCHAR.1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779763720\"\n      },\n      {\n        \"@id\": \"_:g70159813040780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL1-ending-QUOTATION_MARK\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL1-ending-QUOTATION_MARK.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567392240\"\n      },\n      {\n        \"@id\": \"_:g70159688578800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-bad-ECHAR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-ECHAR.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734362440\"\n      },\n      {\n        \"@id\": \"_:g70159558347480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-bad-LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-LANGTAG.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770358040\"\n      },\n      {\n        \"@id\": \"_:g70159553806340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-bad-UCHAR1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-UCHAR1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779054760\"\n      },\n      {\n        \"@id\": \"_:g70159801781900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-bad-UCHAR2-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-UCHAR2-value.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753156280\"\n      },\n      {\n        \"@id\": \"_:g70159783261580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-ending-APOSTROPHE.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778660660\"\n      },\n      {\n        \"@id\": \"_:g70159555662880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-illegal-UCHAR1-value\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-illegal-UCHAR1-value.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744146080\"\n      },\n      {\n        \"@id\": \"_:g70159555528380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL2-with-LANGTAG-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-with-LANGTAG-and-datatype.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566295320\"\n      },\n      {\n        \"@id\": \"_:g70159559511420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG1-ending-APOSTROPHE.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554926440\"\n      },\n      {\n        \"@id\": \"_:g70159781084200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG1-ending-APOSTROPHE4.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688887160\"\n      },\n      {\n        \"@id\": \"_:g70159567013020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-ending-APOSTROPHE3.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780319920\"\n      },\n      {\n        \"@id\": \"_:g70159743667760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-ending-QUOTATION_MARK4.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768296560\"\n      },\n      {\n        \"@id\": \"_:g70159776303860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"STRING_LITERAL_LONG2-unterminated\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-unterminated.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752597860\"\n      },\n      {\n        \"@id\": \"_:g70159559376920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/a.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753732020\"\n      },\n      {\n        \"@id\": \"_:g70159566967260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"base-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/base-no-uri.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556428700\"\n      },\n      {\n        \"@id\": \"_:g70159698931060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"base-uri-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/base-uri-dot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558542500\"\n      },\n      {\n        \"@id\": \"_:g70159777121440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"bnodedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/bnodedot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556548620\"\n      },\n      {\n        \"@id\": \"_:g70159761381860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"capitol-A\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/capitol-A.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698699980\"\n      },\n      {\n        \"@id\": \"_:g70159804061600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"group-no-COMMA-separators\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/group-no-COMMA-separators.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761723440\"\n      },\n      {\n        \"@id\": \"_:g70159555154460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"groupShapeConstr-trailing-OR\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/groupShapeConstr-trailing-OR.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781603140\"\n      },\n      {\n        \"@id\": \"_:g70159735622240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"literal-0x123\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/literal-0x123.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735196000\"\n      },\n      {\n        \"@id\": \"_:g70159699376120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotclose.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735740880\"\n      },\n      {\n        \"@id\": \"_:g70159698834860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotcloseAnnot3.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736689760\"\n      },\n      {\n        \"@id\": \"_:g70159567554800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotcloseCode1.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801470840\"\n      },\n      {\n        \"@id\": \"_:g70159765711780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotclosecardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotclosecardOpt.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754005380\"\n      },\n      {\n        \"@id\": \"_:g70159555811960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOr1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/openopen1dotOr1dotclose.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760019840\"\n      },\n      {\n        \"@id\": \"_:g70159554955460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotcloseCode1closeCode2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/openopen1dotcloseCode1closeCode2.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780700580\"\n      },\n      {\n        \"@id\": \"_:g70159809877680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"predicate-ANON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-ANON.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802731360\"\n      },\n      {\n        \"@id\": \"_:g70159770590200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"predicate-BLANK_NODE_LABEL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-BLANK_NODE_LABEL.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811527180\"\n      },\n      {\n        \"@id\": \"_:g70159735341920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"predicate-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-literal.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770649680\"\n      },\n      {\n        \"@id\": \"_:g70159769586620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"predicate-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-true.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554496240\"\n      },\n      {\n        \"@id\": \"_:g70159777537040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"prefix-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-missing.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735951380\"\n      },\n      {\n        \"@id\": \"_:g70159775727840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"prefix-no-COLON\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-COLON.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751562040\"\n      },\n      {\n        \"@id\": \"_:g70159776187460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"prefix-no-PNAME_NS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-PNAME_NS.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783897980\"\n      },\n      {\n        \"@id\": \"_:g70159558873520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"prefix-no-uri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-uri.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560070140\"\n      },\n      {\n        \"@id\": \"_:g70159735426520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"prefix-none\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-none.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745699680\"\n      },\n      {\n        \"@id\": \"_:g70159689068220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapename-a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-a.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782060880\"\n      },\n      {\n        \"@id\": \"_:g70159566115840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapename-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-literal.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735311160\"\n      },\n      {\n        \"@id\": \"_:g70159810617000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapename-true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-true.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735017640\"\n      },\n      {\n        \"@id\": \"_:g70159565937240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"tripleConsraint-no-valueClass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-no-valueClass.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561037260\"\n      },\n      {\n        \"@id\": \"_:g70159567493200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"tripleConsraint-with-datatype-and-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-datatype-and-dot.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778290940\"\n      },\n      {\n        \"@id\": \"_:g70159754433220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"tripleConsraint-with-datatype-and-valueSet\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-datatype-and-valueSet.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771111520\"\n      },\n      {\n        \"@id\": \"_:g70159698390400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"tripleConsraint-with-dot-and-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-dot-and-datatype.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770541940\"\n      },\n      {\n        \"@id\": \"_:g70159736966840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"tripleConsraint-with-two-cardinalities\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-two-cardinalities.shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx representation tests\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555320180\"\n      },\n      {\n        \"@id\": \"_:g70159699109560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690789640\"\n      },\n      {\n        \"@id\": \"_:g70159809251760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusBNODE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558150040\"\n      },\n      {\n        \"@id\": \"_:g70159694649400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559791480\"\n      },\n      {\n        \"@id\": \"_:g70159698899940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Adot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732331860\"\n      },\n      {\n        \"@id\": \"_:g70159695266400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Length\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776059060\"\n      },\n      {\n        \"@id\": \"_:g70159769999300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766759240\"\n      },\n      {\n        \"@id\": \"_:g70159760020740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733268360\"\n      },\n      {\n        \"@id\": \"_:g70159751843380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801130900\"\n      },\n      {\n        \"@id\": \"_:g70159566117280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765758020\"\n      },\n      {\n        \"@id\": \"_:g70159693943960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811829580\"\n      },\n      {\n        \"@id\": \"_:g70159568181340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753860380\"\n      },\n      {\n        \"@id\": \"_:g70159560988660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeRefORRefMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690277500\"\n      },\n      {\n        \"@id\": \"_:g70159775908180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688515420\"\n      },\n      {\n        \"@id\": \"_:g70159707107040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556627920\"\n      },\n      {\n        \"@id\": \"_:g70159560302040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745648480\"\n      },\n      {\n        \"@id\": \"_:g70159559709240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2blank\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761640940\"\n      },\n      {\n        \"@id\": \"_:g70159802882660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardOpt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688973420\"\n      },\n      {\n        \"@id\": \"_:g70159731690680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777906880\"\n      },\n      {\n        \"@id\": \"_:g70159809760820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardStar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736330460\"\n      },\n      {\n        \"@id\": \"_:g70159568096440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557647780\"\n      },\n      {\n        \"@id\": \"_:g70159729432560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753283840\"\n      },\n      {\n        \"@id\": \"_:g70159811778880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752955080\"\n      },\n      {\n        \"@id\": \"_:g70159555583500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypelangString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810479420\"\n      },\n      {\n        \"@id\": \"_:g70159778385580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762578740\"\n      },\n      {\n        \"@id\": \"_:g70159566033460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555791760\"\n      },\n      {\n        \"@id\": \"_:g70159778597980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731938860\"\n      },\n      {\n        \"@id\": \"_:g70159780024060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusivexsd-byte\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751152560\"\n      },\n      {\n        \"@id\": \"_:g70159560606100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555842460\"\n      },\n      {\n        \"@id\": \"_:g70159812102500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566553460\"\n      },\n      {\n        \"@id\": \"_:g70159561099460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780487660\"\n      },\n      {\n        \"@id\": \"_:g70159568029280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761326240\"\n      },\n      {\n        \"@id\": \"_:g70159801420700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782751840\"\n      },\n      {\n        \"@id\": \"_:g70159557577880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765924360\"\n      },\n      {\n        \"@id\": \"_:g70159734460420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781178200\"\n      },\n      {\n        \"@id\": \"_:g70159802092060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768570900\"\n      },\n      {\n        \"@id\": \"_:g70159560558300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751891860\"\n      },\n      {\n        \"@id\": \"_:g70159780936440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159696041720\"\n      },\n      {\n        \"@id\": \"_:g70159812073480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559793660\"\n      },\n      {\n        \"@id\": \"_:g70159557874280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159707450860\"\n      },\n      {\n        \"@id\": \"_:g70159735227060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769700280\"\n      },\n      {\n        \"@id\": \"_:g70159776307100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775603540\"\n      },\n      {\n        \"@id\": \"_:g70159736735520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557727200\"\n      },\n      {\n        \"@id\": \"_:g70159736380760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusivexsd-decimal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765776700\"\n      },\n      {\n        \"@id\": \"_:g70159775957400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775810100\"\n      },\n      {\n        \"@id\": \"_:g70159730967700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot-base\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812941980\"\n      },\n      {\n        \"@id\": \"_:g70159698490300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759611780\"\n      },\n      {\n        \"@id\": \"_:g70159736180460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotAIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698307800\"\n      },\n      {\n        \"@id\": \"_:g70159754447940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556167100\"\n      },\n      {\n        \"@id\": \"_:g70159771243700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotSTRING_LITERAL1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694449520\"\n      },\n      {\n        \"@id\": \"_:g70159568159480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotClosed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567407780\"\n      },\n      {\n        \"@id\": \"_:g70159558564180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796688260\"\n      },\n      {\n        \"@id\": \"_:g70159568395200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566934160\"\n      },\n      {\n        \"@id\": \"_:g70159753550460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555266500\"\n      },\n      {\n        \"@id\": \"_:g70159554074040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCodeWithEscapes1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771293900\"\n      },\n      {\n        \"@id\": \"_:g70159767460980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555382540\"\n      },\n      {\n        \"@id\": \"_:g70159813267100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776007880\"\n      },\n      {\n        \"@id\": \"_:g70159567061220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743406420\"\n      },\n      {\n        \"@id\": \"_:g70159776356400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753366160\"\n      },\n      {\n        \"@id\": \"_:g70159761342740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNex-HYPHEN_MINUS\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776456560\"\n      },\n      {\n        \"@id\": \"_:g70159733950100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNexComment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778322180\"\n      },\n      {\n        \"@id\": \"_:g70159775859320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNS2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775752080\"\n      },\n      {\n        \"@id\": \"_:g70159735250000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNS2Comment\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561496560\"\n      },\n      {\n        \"@id\": \"_:g70159797324340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNSdefault\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765192580\"\n      },\n      {\n        \"@id\": \"_:g70159731989580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804256180\"\n      },\n      {\n        \"@id\": \"_:g70159736673180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNoCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764894140\"\n      },\n      {\n        \"@id\": \"_:g70159567586080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810826580\"\n      },\n      {\n        \"@id\": \"_:g70159763307260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732758340\"\n      },\n      {\n        \"@id\": \"_:g70159779630840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotPlusAnnotIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736000940\"\n      },\n      {\n        \"@id\": \"_:g70159555037020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566756120\"\n      },\n      {\n        \"@id\": \"_:g70159762774220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776207860\"\n      },\n      {\n        \"@id\": \"_:g70159693262200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560757900\"\n      },\n      {\n        \"@id\": \"_:g70159760218300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695467520\"\n      },\n      {\n        \"@id\": \"_:g70159804531360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561475720\"\n      },\n      {\n        \"@id\": \"_:g70159769640220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefSpaceLNex1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775701380\"\n      },\n      {\n        \"@id\": \"_:g70159775844040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefSpaceNS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760986900\"\n      },\n      {\n        \"@id\": \"_:g70159776156200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768687340\"\n      },\n      {\n        \"@id\": \"_:g70159812378740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770241480\"\n      },\n      {\n        \"@id\": \"_:g70159707630840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotSemiOne2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779568020\"\n      },\n      {\n        \"@id\": \"_:g70159803141340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeAND1dot3X\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567651080\"\n      },\n      {\n        \"@id\": \"_:g70159688918200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732921700\"\n      },\n      {\n        \"@id\": \"_:g70159689884100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566445040\"\n      },\n      {\n        \"@id\": \"_:g70159699207980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765645040\"\n      },\n      {\n        \"@id\": \"_:g70159760186020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159707269240\"\n      },\n      {\n        \"@id\": \"_:g70159781721140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754398120\"\n      },\n      {\n        \"@id\": \"_:g70159553363980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754387000\"\n      },\n      {\n        \"@id\": \"_:g70159561006480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555697280\"\n      },\n      {\n        \"@id\": \"_:g70159558319000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810448220\"\n      },\n      {\n        \"@id\": \"_:g70159561267320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751061360\"\n      },\n      {\n        \"@id\": \"_:g70159560544380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742684900\"\n      },\n      {\n        \"@id\": \"_:g70159778842160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801441540\"\n      },\n      {\n        \"@id\": \"_:g70159762491640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796869140\"\n      },\n      {\n        \"@id\": \"_:g70159566963040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556136520\"\n      },\n      {\n        \"@id\": \"_:g70159708000440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780271620\"\n      },\n      {\n        \"@id\": \"_:g70159801319680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810416760\"\n      },\n      {\n        \"@id\": \"_:g70159730710860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804552220\"\n      },\n      {\n        \"@id\": \"_:g70159781422280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753448900\"\n      },\n      {\n        \"@id\": \"_:g70159762133680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689853460\"\n      },\n      {\n        \"@id\": \"_:g70159735293380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736231020\"\n      },\n      {\n        \"@id\": \"_:g70159767526080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730345300\"\n      },\n      {\n        \"@id\": \"_:g70159751972560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753644400\"\n      },\n      {\n        \"@id\": \"_:g70159560366400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797207300\"\n      },\n      {\n        \"@id\": \"_:g70159766384820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555713120\"\n      },\n      {\n        \"@id\": \"_:g70159688106700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753222720\"\n      },\n      {\n        \"@id\": \"_:g70159782263840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567608660\"\n      },\n      {\n        \"@id\": \"_:g70159812872540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusivexsd-double\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783293160\"\n      },\n      {\n        \"@id\": \"_:g70159801702420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781116080\"\n      },\n      {\n        \"@id\": \"_:g70159559761420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553925980\"\n      },\n      {\n        \"@id\": \"_:g70159760130780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783748420\"\n      },\n      {\n        \"@id\": \"_:g70159557549320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560458600\"\n      },\n      {\n        \"@id\": \"_:g70159761524840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735603280\"\n      },\n      {\n        \"@id\": \"_:g70159742983120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566210040\"\n      },\n      {\n        \"@id\": \"_:g70159802961480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556713360\"\n      },\n      {\n        \"@id\": \"_:g70159567242200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759842200\"\n      },\n      {\n        \"@id\": \"_:g70159566495120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689130560\"\n      },\n      {\n        \"@id\": \"_:g70159698583660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744783120\"\n      },\n      {\n        \"@id\": \"_:g70159558791200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557676800\"\n      },\n      {\n        \"@id\": \"_:g70159567177100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753038340\"\n      },\n      {\n        \"@id\": \"_:g70159560679320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159763002560\"\n      },\n      {\n        \"@id\": \"_:g70159554053360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559656360\"\n      },\n      {\n        \"@id\": \"_:g70159761703440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776407300\"\n      },\n      {\n        \"@id\": \"_:g70159560116840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736380800\"\n      },\n      {\n        \"@id\": \"_:g70159754237240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567471580\"\n      },\n      {\n        \"@id\": \"_:g70159568244060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733411640\"\n      },\n      {\n        \"@id\": \"_:g70159554103020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560265620\"\n      },\n      {\n        \"@id\": \"_:g70159777006180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusivexsd-float\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767406140\"\n      },\n      {\n        \"@id\": \"_:g70159568260140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODELength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753907240\"\n      },\n      {\n        \"@id\": \"_:g70159781445100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODE_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159708072220\"\n      },\n      {\n        \"@id\": \"_:g70159764644360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRILength_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769454340\"\n      },\n      {\n        \"@id\": \"_:g70159687877280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRI_dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777238480\"\n      },\n      {\n        \"@id\": \"_:g70159736409840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753665700\"\n      },\n      {\n        \"@id\": \"_:g70159769142880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766649880\"\n      },\n      {\n        \"@id\": \"_:g70159555204380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745916700\"\n      },\n      {\n        \"@id\": \"_:g70159801622020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPattern-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734933720\"\n      },\n      {\n        \"@id\": \"_:g70159769865120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPatternB-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782209620\"\n      },\n      {\n        \"@id\": \"_:g70159561396900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteral-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745551700\"\n      },\n      {\n        \"@id\": \"_:g70159804423940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteralLength-dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556807160\"\n      },\n      {\n        \"@id\": \"_:g70159557479620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteralLength-nonLiteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770062740\"\n      },\n      {\n        \"@id\": \"_:g70159735971680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750795260\"\n      },\n      {\n        \"@id\": \"_:g70159732180960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804403340\"\n      },\n      {\n        \"@id\": \"_:g70159561612780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690639760\"\n      },\n      {\n        \"@id\": \"_:g70159762245800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780520000\"\n      },\n      {\n        \"@id\": \"_:g70159735134340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809219780\"\n      },\n      {\n        \"@id\": \"_:g70159796805140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694909380\"\n      },\n      {\n        \"@id\": \"_:g70159770389460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802041420\"\n      },\n      {\n        \"@id\": \"_:g70159566233040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743736340\"\n      },\n      {\n        \"@id\": \"_:g70159698289060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555692040\"\n      },\n      {\n        \"@id\": \"_:g70159560397840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560578940\"\n      },\n      {\n        \"@id\": \"_:g70159777089040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778927920\"\n      },\n      {\n        \"@id\": \"_:g70159555562560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810594240\"\n      },\n      {\n        \"@id\": \"_:g70159737019940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557627080\"\n      },\n      {\n        \"@id\": \"_:g70159770879600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567134420\"\n      },\n      {\n        \"@id\": \"_:g70159556514000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLELeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690821640\"\n      },\n      {\n        \"@id\": \"_:g70159731855600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEint\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776907500\"\n      },\n      {\n        \"@id\": \"_:g70159567929800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEintLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695007740\"\n      },\n      {\n        \"@id\": \"_:g70159561426180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706526820\"\n      },\n      {\n        \"@id\": \"_:g70159743307200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGERLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688287380\"\n      },\n      {\n        \"@id\": \"_:g70159813217560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusivexsd-integer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775653420\"\n      },\n      {\n        \"@id\": \"_:g70159783835120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698668620\"\n      },\n      {\n        \"@id\": \"_:g70159777663860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedotAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558678340\"\n      },\n      {\n        \"@id\": \"_:g70159690916080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedotCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809431480\"\n      },\n      {\n        \"@id\": \"_:g70159780542800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693712340\"\n      },\n      {\n        \"@id\": \"_:g70159744062600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693844500\"\n      },\n      {\n        \"@id\": \"_:g70159802422780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734650120\"\n      },\n      {\n        \"@id\": \"_:g70159736029880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753497060\"\n      },\n      {\n        \"@id\": \"_:g70159783229400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744227100\"\n      },\n      {\n        \"@id\": \"_:g70159733838540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPatternbc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736296040\"\n      },\n      {\n        \"@id\": \"_:g70159553855680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553285680\"\n      },\n      {\n        \"@id\": \"_:g70159561474580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776257720\"\n      },\n      {\n        \"@id\": \"_:g70159691033800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804481940\"\n      },\n      {\n        \"@id\": \"_:g70159779174320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalCarrotPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744980920\"\n      },\n      {\n        \"@id\": \"_:g70159568425500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689460440\"\n      },\n      {\n        \"@id\": \"_:g70159554221620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802062560\"\n      },\n      {\n        \"@id\": \"_:g70159734903140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780818620\"\n      },\n      {\n        \"@id\": \"_:g70159560787360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736970960\"\n      },\n      {\n        \"@id\": \"_:g70159697354780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159708109280\"\n      },\n      {\n        \"@id\": \"_:g70159708188240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxinclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731511200\"\n      },\n      {\n        \"@id\": \"_:g70159776800460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554152060\"\n      },\n      {\n        \"@id\": \"_:g70159768866580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinexclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768061660\"\n      },\n      {\n        \"@id\": \"_:g70159567722060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMininclusiveINTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769343020\"\n      },\n      {\n        \"@id\": \"_:g70159811757880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770697780\"\n      },\n      {\n        \"@id\": \"_:g70159759918400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736080180\"\n      },\n      {\n        \"@id\": \"_:g70159690246480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern19\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698747820\"\n      },\n      {\n        \"@id\": \"_:g70159770178000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743146900\"\n      },\n      {\n        \"@id\": \"_:g70159780171680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566474260\"\n      },\n      {\n        \"@id\": \"_:g70159736997140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternabEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761576460\"\n      },\n      {\n        \"@id\": \"_:g70159729428440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPlus\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759081760\"\n      },\n      {\n        \"@id\": \"_:g70159810858240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStartPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699474580\"\n      },\n      {\n        \"@id\": \"_:g70159690757800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStartPatternEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796571680\"\n      },\n      {\n        \"@id\": \"_:g70159810564000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812991300\"\n      },\n      {\n        \"@id\": \"_:g70159732740220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556282440\"\n      },\n      {\n        \"@id\": \"_:g70159810648000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776505760\"\n      },\n      {\n        \"@id\": \"_:g70159561182740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159708208640\"\n      },\n      {\n        \"@id\": \"_:g70159734151280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811314520\"\n      },\n      {\n        \"@id\": \"_:g70159555759040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761446100\"\n      },\n      {\n        \"@id\": \"_:g70159811697580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568100960\"\n      },\n      {\n        \"@id\": \"_:g70159555643880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767125780\"\n      },\n      {\n        \"@id\": \"_:g70159771043780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810679140\"\n      },\n      {\n        \"@id\": \"_:g70159777514400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode_with_leading_digit1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559873860\"\n      },\n      {\n        \"@id\": \"_:g70159736003720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode_with_leading_underscore1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560660440\"\n      },\n      {\n        \"@id\": \"_:g70159707945700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode_with_spanning_PN_CHARS1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811888500\"\n      },\n      {\n        \"@id\": \"_:g70159761214920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode_with_spanning_PN_CHARS_BASE1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797230120\"\n      },\n      {\n        \"@id\": \"_:g70159802911700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DECIMAL\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776106680\"\n      },\n      {\n        \"@id\": \"_:g70159778480180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLE\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809665300\"\n      },\n      {\n        \"@id\": \"_:g70159762802380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLElowercase\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560051980\"\n      },\n      {\n        \"@id\": \"_:g70159567521880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1INTEGER\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699637520\"\n      },\n      {\n        \"@id\": \"_:g70159811858880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776700680\"\n      },\n      {\n        \"@id\": \"_:g70159813168140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769404020\"\n      },\n      {\n        \"@id\": \"_:g70159566574560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561375960\"\n      },\n      {\n        \"@id\": \"_:g70159782932220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1One\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745452880\"\n      },\n      {\n        \"@id\": \"_:g70159559904320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770296180\"\n      },\n      {\n        \"@id\": \"_:g70159567413000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760055940\"\n      },\n      {\n        \"@id\": \"_:g70159554841640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554200960\"\n      },\n      {\n        \"@id\": \"_:g70159567671540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765646720\"\n      },\n      {\n        \"@id\": \"_:g70159735264680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695058280\"\n      },\n      {\n        \"@id\": \"_:g70159801811020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStem\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558594580\"\n      },\n      {\n        \"@id\": \"_:g70159560084680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734719140\"\n      },\n      {\n        \"@id\": \"_:g70159809697500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779354500\"\n      },\n      {\n        \"@id\": \"_:g70159803041160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1refvsMinusiri3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804128460\"\n      },\n      {\n        \"@id\": \"_:g70159688641700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780755400\"\n      },\n      {\n        \"@id\": \"_:g70159809453840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777270000\"\n      },\n      {\n        \"@id\": \"_:g70159812250940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759367080\"\n      },\n      {\n        \"@id\": \"_:g70159811643880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776849180\"\n      },\n      {\n        \"@id\": \"_:g70159803468420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732447000\"\n      },\n      {\n        \"@id\": \"_:g70159802162540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561575660\"\n      },\n      {\n        \"@id\": \"_:g70159779722160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567749300\"\n      },\n      {\n        \"@id\": \"_:g70159777632040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefAND3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804334240\"\n      },\n      {\n        \"@id\": \"_:g70159745272700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefIRIREF1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766269240\"\n      },\n      {\n        \"@id\": \"_:g70159765697940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760744300\"\n      },\n      {\n        \"@id\": \"_:g70159688319100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefbnode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706763780\"\n      },\n      {\n        \"@id\": \"_:g70159763047140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vShapeANDRef3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159687776560\"\n      },\n      {\n        \"@id\": \"_:g70159736065800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val2IRIREFExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797410420\"\n      },\n      {\n        \"@id\": \"_:g70159804227360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val2IRIREFPlusExtra1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752791240\"\n      },\n      {\n        \"@id\": \"_:g70159731334580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2EachInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760507660\"\n      },\n      {\n        \"@id\": \"_:g70159803011960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2EachInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776010440\"\n      },\n      {\n        \"@id\": \"_:g70159553708140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2OneInclude1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159763102720\"\n      },\n      {\n        \"@id\": \"_:g70159812921420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2OneInclude1-after\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754498960\"\n      },\n      {\n        \"@id\": \"_:g70159736999500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771144620\"\n      },\n      {\n        \"@id\": \"_:g70159560334500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2dotOne1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767716440\"\n      },\n      {\n        \"@id\": \"_:g70159555841180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2dotSemiOne1dotSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698486000\"\n      },\n      {\n        \"@id\": \"_:g70159567979740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2dotSemis\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566833380\"\n      },\n      {\n        \"@id\": \"_:g70159555151180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3circularRef1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753726160\"\n      },\n      {\n        \"@id\": \"_:g70159810533200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809972000\"\n      },\n      {\n        \"@id\": \"_:g70159751940720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdot3Extra\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750894720\"\n      },\n      {\n        \"@id\": \"_:g70159802113220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159705407920\"\n      },\n      {\n        \"@id\": \"_:g70159811728160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3NLex\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780880960\"\n      },\n      {\n        \"@id\": \"_:g70159567950560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"FocusIRI2groupBnodeNested2groupIRIRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556660020\"\n      },\n      {\n        \"@id\": \"_:g70159555304520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776072740\"\n      },\n      {\n        \"@id\": \"_:g70159556657540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778534480\"\n      },\n      {\n        \"@id\": \"_:g70159555742140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3AND1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762049740\"\n      },\n      {\n        \"@id\": \"_:g70159777388380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"_all\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783356560\"\n      },\n      {\n        \"@id\": \"_:g70159556741460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"bnode1dot\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802191400\"\n      },\n      {\n        \"@id\": \"_:g70159783080800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803419420\"\n      },\n      {\n        \"@id\": \"_:g70159767087180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvs\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733967500\"\n      },\n      {\n        \"@id\": \"_:g70159778629060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvsANDIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557903480\"\n      },\n      {\n        \"@id\": \"_:g70159568034540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvsANDdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159708319360\"\n      },\n      {\n        \"@id\": \"_:g70159783717260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvsORdatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781476580\"\n      },\n      {\n        \"@id\": \"_:g70159810921420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"kitchenSink\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733228060\"\n      },\n      {\n        \"@id\": \"_:g70159736359600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560296040\"\n      },\n      {\n        \"@id\": \"_:g70159762546240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOne2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752502140\"\n      },\n      {\n        \"@id\": \"_:g70159804452480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOneopen2dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801391680\"\n      },\n      {\n        \"@id\": \"_:g70159730841680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotSemiOne1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159707783120\"\n      },\n      {\n        \"@id\": \"_:g70159775894820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotSemiOne2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731170120\"\n      },\n      {\n        \"@id\": \"_:g70159782029620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotSemiOneopen2dotSemiscloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803912420\"\n      },\n      {\n        \"@id\": \"_:g70159689429020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotopen1dotOne1dotcloseclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770994720\"\n      },\n      {\n        \"@id\": \"_:g70159777726500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560575100\"\n      },\n      {\n        \"@id\": \"_:g70159560629260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open2dotOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558760460\"\n      },\n      {\n        \"@id\": \"_:g70159690332440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open2dotSemisOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761328640\"\n      },\n      {\n        \"@id\": \"_:g70159731902260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open2dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735343420\"\n      },\n      {\n        \"@id\": \"_:g70159693893700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open2dotsemisclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802142300\"\n      },\n      {\n        \"@id\": \"_:g70159764961660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810089640\"\n      },\n      {\n        \"@id\": \"_:g70159764759260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733119760\"\n      },\n      {\n        \"@id\": \"_:g70159753597400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565885040\"\n      },\n      {\n        \"@id\": \"_:g70159555434380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotcloseAnnot3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735949360\"\n      },\n      {\n        \"@id\": \"_:g70159732020140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotcloseCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556812220\"\n      },\n      {\n        \"@id\": \"_:g70159783474000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810205940\"\n      },\n      {\n        \"@id\": \"_:g70159761150000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotclosecard23Annot3Code2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734410640\"\n      },\n      {\n        \"@id\": \"_:g70159777875400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open4Onedotclosecard23\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782602060\"\n      },\n      {\n        \"@id\": \"_:g70159555641660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743816840\"\n      },\n      {\n        \"@id\": \"_:g70159736704240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778055560\"\n      },\n      {\n        \"@id\": \"_:g70159752465300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen2dotSemiscloseOne1dotSemiclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#sameSemanticsAs\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559564500\"\n      },\n      {\n        \"@id\": \"_:g70159688706480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen2dotcloseOne1dotclose\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560180760\"\n      },\n      {\n        \"@id\": \"_:g70159736130140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExtern\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751808080\"\n      },\n      {\n        \"@id\": \"_:g70159566556120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExternRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735472180\"\n      },\n      {\n        \"@id\": \"_:g70159566851360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557804640\"\n      },\n      {\n        \"@id\": \"_:g70159566440800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561217740\"\n      },\n      {\n        \"@id\": \"_:g70159781752180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1startRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731411160\"\n      },\n      {\n        \"@id\": \"_:g70159804090680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1startReffail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771279300\"\n      },\n      {\n        \"@id\": \"_:g70159568180480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801500040\"\n      },\n      {\n        \"@id\": \"_:g70159779450020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode3fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770114800\"\n      },\n      {\n        \"@id\": \"_:g70159742836640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startEqualSpaceInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559481500\"\n      },\n      {\n        \"@id\": \"_:g70159556566540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732921080\"\n      },\n      {\n        \"@id\": \"_:g70159558738480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startNoCode1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734984700\"\n      },\n      {\n        \"@id\": \"_:g70159707810880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefIRIREF\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745452140\"\n      },\n      {\n        \"@id\": \"_:g70159690671700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\",\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796633960\"\n      },\n      {\n        \"@id\": \"_:g70159813020060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startSpaceEqualInline\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"https://shexspec.github.io/shexTest/ns#shex\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.shex\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#turtle\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.turtle\"\n      }\n    ],\n    \"https://shexspec.github.io/shexTest/ns#json\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.json\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx validation tests\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n          }\n        ]\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> {  } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696591620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_dummy.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688546760\"\n      },\n      {\n        \"@id\": \"_:g70159810740680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> {  } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159687823440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706942700\"\n      },\n      {\n        \"@id\": \"_:g70159758919440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> {  } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0_otherbnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734620180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566494320\"\n      },\n      {\n        \"@id\": \"_:g70159705887640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusBNODE_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733002020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass-focus.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753501300\"\n      },\n      {\n        \"@id\": \"_:g70159553273320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusBNODE_empty_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733262200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812822740\"\n      },\n      {\n        \"@id\": \"_:g70159742079840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE {  } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusBNODE_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732443940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass-focus.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559987660\"\n      },\n      {\n        \"@id\": \"_:g70159556366780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusBNODE_other_fail-iriFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732710560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783622500\"\n      },\n      {\n        \"@id\": \"_:g70159810268520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> IRI {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusIRI_empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742503540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass-focus.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561618860\"\n      },\n      {\n        \"@id\": \"_:g70159556270580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusIRI_empty_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742763680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736639200\"\n      },\n      {\n        \"@id\": \"_:g70159766184520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI {  } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusIRI_other\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733546280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass-focus.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765089020\"\n      },\n      {\n        \"@id\": \"_:g70159744222380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI {  } on { }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"0focusIRI_other_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742211240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736668560\"\n      },\n      {\n        \"@id\": \"_:g70159778448640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { a . } on { <s> a <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Adot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696374600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1Adot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689154100\"\n      },\n      {\n        \"@id\": \"_:g70159759492520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Length_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751470300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698998100\"\n      },\n      {\n        \"@id\": \"_:g70159744715840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Length_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751896880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559233920\"\n      },\n      {\n        \"@id\": \"_:g70159760916540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1Length_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751697560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1Length_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769706040\"\n      },\n      {\n        \"@id\": \"_:g70159688737700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcdef }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743471440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159729954640\"\n      },\n      {\n        \"@id\": \"_:g70159809306500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743916200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775566360\"\n      },\n      {\n        \"@id\": \"_:g70159556399400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE LENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743063740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556429000\"\n      },\n      {\n        \"@id\": \"_:g70159778024060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743271360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801882640\"\n      },\n      {\n        \"@id\": \"_:g70159752036440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743703860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeLength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735214200\"\n      },\n      {\n        \"@id\": \"_:g70159555089920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcdef }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705328860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810003220\"\n      },\n      {\n        \"@id\": \"_:g70159567702520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704702680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMaxlength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555551160\"\n      },\n      {\n        \"@id\": \"_:g70159760409300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707290100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMaxlength_pass-bnode-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766633220\"\n      },\n      {\n        \"@id\": \"_:g70159734145900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731641160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566065900\"\n      },\n      {\n        \"@id\": \"_:g70159688342420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731428560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMinlength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812300480\"\n      },\n      {\n        \"@id\": \"_:g70159690033120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcdef }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731196360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMinlength_pass-bnode-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699424100\"\n      },\n      {\n        \"@id\": \"_:g70159803439760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:abc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733377180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodePattern_pass-bnode-into.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753122700\"\n      },\n      {\n        \"@id\": \"_:g70159553433020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:a }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733590580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767619480\"\n      },\n      {\n        \"@id\": \"_:g70159802781680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { BASE <http://a.example/> <s1> <p1> <bc> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732919640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752550280\"\n      },\n      {\n        \"@id\": \"_:g70159779913460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733134220\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690183040\"\n      },\n      {\n        \"@id\": \"_:g70159810976220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:bc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodePattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742229180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodePattern_pass-bnode-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560017940\"\n      },\n      {\n        \"@id\": \"_:g70159699534840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> BNODE @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeRef1_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707105100\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803162040\"\n      },\n      {\n        \"@id\": \"_:g70159780786780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> _:n1 . _:n1 <p2> \\\"X\\\" } as <S1> in <S1> { <p1> BNODE @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnodeRef1_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706145320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeRef1_pass-bnode.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776651900\"\n      },\n      {\n        \"@id\": \"_:g70159732677420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnode_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733741680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803061820\"\n      },\n      {\n        \"@id\": \"_:g70159760250700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnode_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699585940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764909360\"\n      },\n      {\n        \"@id\": \"_:g70159802702700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE } on { <s1> <p1> _:ab }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1bnode_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699894540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnode_pass-bnode.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561296340\"\n      },\n      {\n        \"@id\": \"_:g70159559987540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159692739780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691002300\"\n      },\n      {\n        \"@id\": \"_:g70159751633280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734473500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769764660\"\n      },\n      {\n        \"@id\": \"_:g70159745830300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d','e','f' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_fail6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699326580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159729989620\"\n      },\n      {\n        \"@id\": \"_:g70159559954640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734195800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688609700\"\n      },\n      {\n        \"@id\": \"_:g70159555512200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733872060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761134100\"\n      },\n      {\n        \"@id\": \"_:g70159566610080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_pass4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699977980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass4.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779481440\"\n      },\n      {\n        \"@id\": \"_:g70159742062180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d','e' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card25_pass5\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699652460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass5.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735901200\"\n      },\n      {\n        \"@id\": \"_:g70159560212920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,*} } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699030480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803241380\"\n      },\n      {\n        \"@id\": \"_:g70159763309920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698731940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751185860\"\n      },\n      {\n        \"@id\": \"_:g70159567672320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698440300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690428200\"\n      },\n      {\n        \"@id\": \"_:g70159760939780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b','c' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star_pass3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698126280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768932480\"\n      },\n      {\n        \"@id\": \"_:g70159796751660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b','c','d','e','f' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2Star_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697804360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass6.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759103680\"\n      },\n      {\n        \"@id\": \"_:g70159690119660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2} } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706227480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735479580\"\n      },\n      {\n        \"@id\": \"_:g70159559346860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2} } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2_fail1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705671280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769163720\"\n      },\n      {\n        \"@id\": \"_:g70159567542440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2} } on { <s> <p1> 'a','b','c' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2_fail3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696669900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557528540\"\n      },\n      {\n        \"@id\": \"_:g70159745735320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .{2} } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1card2_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705033440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2_pass2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566216080\"\n      },\n      {\n        \"@id\": \"_:g70159688461480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .? } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardOpt_fail2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730019880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765512660\"\n      },\n      {\n        \"@id\": \"_:g70159567979680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .? } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardOpt_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730771420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardOpt_pass0.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768624900\"\n      },\n      {\n        \"@id\": \"_:g70159811432380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .? } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardOpt_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730396500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardOpt_pass1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558708260\"\n      },\n      {\n        \"@id\": \"_:g70159566586980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .? } on { <s> <p1> 'a','b','c','d','e','f' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardOpt_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729678660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802293260\"\n      },\n      {\n        \"@id\": \"_:g70159766058820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .+ } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardPlus_fail0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708348900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559640940\"\n      },\n      {\n        \"@id\": \"_:g70159765874280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .+ } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardPlus_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708027420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688043860\"\n      },\n      {\n        \"@id\": \"_:g70159812349760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .+ } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardPlus_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707432940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560513100\"\n      },\n      {\n        \"@id\": \"_:g70159736819160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .+ } on { <s> <p1> 'a','b','c','d','e','f' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardPlus_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706413140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass6.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558482600\"\n      },\n      {\n        \"@id\": \"_:g70159694152000\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .* } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardStar_pass0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705720680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass0.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567592700\"\n      },\n      {\n        \"@id\": \"_:g70159782813960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .* } on { <s> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardStar_pass1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705000300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159813139400\"\n      },\n      {\n        \"@id\": \"_:g70159566179140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .* } on { <s> <p1> 'a','b' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardStar_pass2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693541760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753993520\"\n      },\n      {\n        \"@id\": \"_:g70159750897060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .* } on { <s> <p1> 'a','b','c','d','e','f' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1cardStar_pass6\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734643940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass6.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765006600\"\n      },\n      {\n        \"@id\": \"_:g70159746010700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 123456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705001600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767342880\"\n      },\n      {\n        \"@id\": \"_:g70159801831920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p2> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708135940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802401860\"\n      },\n      {\n        \"@id\": \"_:g70159754087780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 1234 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706743100\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735572220\"\n      },\n      {\n        \"@id\": \"_:g70159565916780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 1.234 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength_fail-wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707683440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743751020\"\n      },\n      {\n        \"@id\": \"_:g70159553650380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 12345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705824740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatypeLength_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553728880\"\n      },\n      {\n        \"@id\": \"_:g70159769879800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> @<S> } on <s> in { <s> <p1> 'ab'^^<dt1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeRef1_fail-datatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705410980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730984200\"\n      },\n      {\n        \"@id\": \"_:g70159796996020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> <dt1> } on <s> in { <n1> <p1> <n1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypeRef1_fail-reflexiveRef\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159687625840\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690491320\"\n      },\n      {\n        \"@id\": \"_:g70159743980380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> } on <s> in { <s1> <p1> 'ab'@en }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype_langString\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729527180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559626060\"\n      },\n      {\n        \"@id\": \"_:g70159765254520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> } on <s> in { <s> <p2> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730166900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736921100\"\n      },\n      {\n        \"@id\": \"_:g70159555297480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> } on <s> in { <s1> <p1> <dt1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype_nonLiteral\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729842920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769244880\"\n      },\n      {\n        \"@id\": \"_:g70159729564880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> } on <s> in { <s> <p1> 'ab'^^<dt1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706132980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatype_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781147540\"\n      },\n      {\n        \"@id\": \"_:g70159557706000\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> <dt1> } on <s> in { <s> <p1> 1.234 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatype_wrongDatatype\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708209060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566854640\"\n      },\n      {\n        \"@id\": \"_:g70159561528020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> rdf:langString } on <s> in { <s> <p1> 'ab'@en }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1datatypelangString_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707175780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatypelangString_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560019680\"\n      },\n      {\n        \"@id\": \"_:g70159731251180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732775120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810795980\"\n      },\n      {\n        \"@id\": \"_:g70159736441600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732560160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565971040\"\n      },\n      {\n        \"@id\": \"_:g70159735801020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731458860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K39\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743933320\"\n      },\n      {\n        \"@id\": \"_:g70159802271680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731674020\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K37\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555333960\"\n      },\n      {\n        \"@id\": \"_:g70159767279200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733017480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveDECIMAL_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758971040\"\n      },\n      {\n        \"@id\": \"_:g70159561017840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732103460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691182660\"\n      },\n      {\n        \"@id\": \"_:g70159561267740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731888780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780574740\"\n      },\n      {\n        \"@id\": \"_:g70159557924000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732345540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveDOUBLE_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555991720\"\n      },\n      {\n        \"@id\": \"_:g70159766894960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733232340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568461680\"\n      },\n      {\n        \"@id\": \"_:g70159812399460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733473780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveINTEGER_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745044480\"\n      },\n      {\n        \"@id\": \"_:g70159555674420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> '5'^^<http://www.w3.org/2001/XMLSchema#byte> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731234940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K43\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762197780\"\n      },\n      {\n        \"@id\": \"_:g70159554003920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731036260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K44\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732348300\"\n      },\n      {\n        \"@id\": \"_:g70159803291420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753305720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734590740\"\n      },\n      {\n        \"@id\": \"_:g70159797112800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752645240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K39\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693640380\"\n      },\n      {\n        \"@id\": \"_:g70159742702720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752860180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K37\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566883060\"\n      },\n      {\n        \"@id\": \"_:g70159687772880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753085380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDECIMAL_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566782880\"\n      },\n      {\n        \"@id\": \"_:g70159735625840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752888960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDECIMAL_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778353740\"\n      },\n      {\n        \"@id\": \"_:g70159812024140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753075640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555890760\"\n      },\n      {\n        \"@id\": \"_:g70159782571060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753317020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDOUBLE_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689279600\"\n      },\n      {\n        \"@id\": \"_:g70159745863400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696231580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDOUBLE_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736034640\"\n      },\n      {\n        \"@id\": \"_:g70159735872180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752711640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734955440\"\n      },\n      {\n        \"@id\": \"_:g70159560805580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752518260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveINTEGER_pass-decimal-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699946960\"\n      },\n      {\n        \"@id\": \"_:g70159801680380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742534700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567442160\"\n      },\n      {\n        \"@id\": \"_:g70159751744960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697949580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567871420\"\n      },\n      {\n        \"@id\": \"_:g70159762921120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730202380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K39\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778779680\"\n      },\n      {\n        \"@id\": \"_:g70159734051460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743304460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K37\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159700015140\"\n      },\n      {\n        \"@id\": \"_:g70159566063240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742685100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveDECIMAL_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771093440\"\n      },\n      {\n        \"@id\": \"_:g70159688674340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742994600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694400080\"\n      },\n      {\n        \"@id\": \"_:g70159555920060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742848720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782422560\"\n      },\n      {\n        \"@id\": \"_:g70159812575880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743141000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveDOUBLE_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561546240\"\n      },\n      {\n        \"@id\": \"_:g70159782868880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742094400\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554349080\"\n      },\n      {\n        \"@id\": \"_:g70159762261380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMinexclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742243460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveINTEGER_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567640020\"\n      },\n      {\n        \"@id\": \"_:g70159801239600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699734300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J30\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802681640\"\n      },\n      {\n        \"@id\": \"_:g70159705972300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699312180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K30\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560722020\"\n      },\n      {\n        \"@id\": \"_:g70159560234540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 04.50 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698884380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M30\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767225240\"\n      },\n      {\n        \"@id\": \"_:g70159783018120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698456100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N30\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556199300\"\n      },\n      {\n        \"@id\": \"_:g70159767773140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704620320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769033300\"\n      },\n      {\n        \"@id\": \"_:g70159699748920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734315720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K39\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698127020\"\n      },\n      {\n        \"@id\": \"_:g70159779693720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159692772300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K37\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778110900\"\n      },\n      {\n        \"@id\": \"_:g70159559957520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159691807460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765252800\"\n      },\n      {\n        \"@id\": \"_:g70159731509560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 04.50 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734213260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566983600\"\n      },\n      {\n        \"@id\": \"_:g70159764597500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMAL_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733758480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N29\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754205700\"\n      },\n      {\n        \"@id\": \"_:g70159568209860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698014000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J32\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782084100\"\n      },\n      {\n        \"@id\": \"_:g70159754348040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730918620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N32\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735033920\"\n      },\n      {\n        \"@id\": \"_:g70159555059340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706473420\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J34\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694499080\"\n      },\n      {\n        \"@id\": \"_:g70159558399740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707547620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K34\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159697596620\"\n      },\n      {\n        \"@id\": \"_:g70159781847480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 04.50 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706858920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M34\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735364140\"\n      },\n      {\n        \"@id\": \"_:g70159560708760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705934200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N34\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567263100\"\n      },\n      {\n        \"@id\": \"_:g70159555990200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLE_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730396900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561382540\"\n      },\n      {\n        \"@id\": \"_:g70159554813120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729921560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLE_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554742480\"\n      },\n      {\n        \"@id\": \"_:g70159566733540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 04.50 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708414340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M33\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744882040\"\n      },\n      {\n        \"@id\": \"_:g70159561247140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00e0 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705114900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J36\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779205900\"\n      },\n      {\n        \"@id\": \"_:g70159732100880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00e0 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696749620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N36\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695416060\"\n      },\n      {\n        \"@id\": \"_:g70159736210500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705595060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J28\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810764420\"\n      },\n      {\n        \"@id\": \"_:g70159744030420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704874200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveINTEGERLead_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N28\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769289300\"\n      },\n      {\n        \"@id\": \"_:g70159801189920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 5 } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGER_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707127480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694301100\"\n      },\n      {\n        \"@id\": \"_:g70159801080920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 5 } / { <s1> <p1> 5.6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusiveINTEGER_pass-decimal-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706377480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveINTEGER_pass-decimal-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N27\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810502060\"\n      },\n      {\n        \"@id\": \"_:g70159743835080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 4.4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusivexsd-decimal_fail-decimal-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733884440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J44\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744473320\"\n      },\n      {\n        \"@id\": \"_:g70159777301460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:decimal MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699868820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusivexsd-decimal_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K44\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554976060\"\n      },\n      {\n        \"@id\": \"_:g70159762070680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot-base_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734098500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742878140\"\n      },\n      {\n        \"@id\": \"_:g70159753543860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot-base_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699996760\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804749620\"\n      },\n      {\n        \"@id\": \"_:g70159760692140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot-base_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699441440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159813069360\"\n      },\n      {\n        \"@id\": \"_:g70159731216620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730327820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759622460\"\n      },\n      {\n        \"@id\": \"_:g70159812449140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693671580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnot3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736265200\"\n      },\n      {\n        \"@id\": \"_:g70159554517100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; a <IRIREF> } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotAIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698963180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotAIRIREF_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776419020\"\n      },\n      {\n        \"@id\": \"_:g70159811157840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <annot> <IRIREF> } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotIRIREF_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733723640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765961820\"\n      },\n      {\n        \"@id\": \"_:g70159813238580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <annot> <IRIREF> } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734348760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotIRIREF_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558925820\"\n      },\n      {\n        \"@id\": \"_:g70159797050060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <annot> 'STRING_LITERAL1' } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotAnnotSTRING_LITERAL1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698360240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotSTRING_LITERAL1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689523380\"\n      },\n      {\n        \"@id\": \"_:g70159809157740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotClosed_fail_higher\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752809600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811496060\"\n      },\n      {\n        \"@id\": \"_:g70159733639840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotClosed_fail_lower\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753056440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560130580\"\n      },\n      {\n        \"@id\": \"_:g70159781061860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> CLOSED { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotClosed_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753334100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567799440\"\n      },\n      {\n        \"@id\": \"_:g70159765123360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159706841640\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707372720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732594920\"\n      },\n      {\n        \"@id\": \"_:g70159781902000\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>{ print(s) %} %<Test>{ print(p) %} %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode3_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159753027100\"\n          },\n          {\n            \"@id\": \"_:g70159752976260\"\n          },\n          {\n            \"@id\": \"_:g70159752925220\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753190740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCode3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrderedSemanticActions\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760443300\"\n      },\n      {\n        \"@id\": \"_:g70159691575080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>{ print(s) %}%<Test>{ fail(s) %}%<Test>{ print(o) %} } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752087460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567033920\"\n      },\n      {\n        \"@id\": \"_:g70159783568160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotCodeWithEscapes1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159751663880\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751827560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCodeWithEscapes1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804651100\"\n      },\n      {\n        \"@id\": \"_:g70159559737660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> . } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744519280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#VapidExtra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568065320\"\n      },\n      {\n        \"@id\": \"_:g70159812970440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744800560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#VapidExtra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699929420\"\n      },\n      {\n        \"@id\": \"_:g70159778683680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n2> } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734492640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735692560\"\n      },\n      {\n        \"@id\": \"_:g70159777929860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n1> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733835260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752220840\"\n      },\n      {\n        \"@id\": \"_:g70159689758480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" . <n3> <p1> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699292520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In2.In2_Ip2_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809579740\"\n      },\n      {\n        \"@id\": \"_:g70159744504320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699933280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568362540\"\n      },\n      {\n        \"@id\": \"_:g70159801571360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> { <p2> . } } on { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" . <n3> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699617720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560269100\"\n      },\n      {\n        \"@id\": \"_:g70159801290320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693280300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In2.In2_Ip2_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812724960\"\n      },\n      {\n        \"@id\": \"_:g70159767654080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n1> <p1> <n1> . <n1> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotInline1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734185160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In1.In1_Ip2_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782295700\"\n      },\n      {\n        \"@id\": \"_:g70159554250660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX : <http://a.example/> :S1 { :p1 . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730989660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735062980\"\n      },\n      {\n        \"@id\": \"_:g70159559922060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1- . } on { <s> <p1-> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730314420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1HYPHEN_MINUSdot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803991120\"\n      },\n      {\n        \"@id\": \"_:g70159567833920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1/*comment*/ . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNexComment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697966920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781815800\"\n      },\n      {\n        \"@id\": \"_:g70159735185180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1 . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotLNex_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698846840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778267500\"\n      },\n      {\n        \"@id\": \"_:g70159733350180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX S1: <http://a.example/S1> PREFIX p1: <http://a.example/p1> S1: { p1:/*comment*/ . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNS2Comment_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698258580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735643020\"\n      },\n      {\n        \"@id\": \"_:g70159568212740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX S1: <http://a.example/S1> PREFIX p1: <http://a.example/p1> S1: { p1: . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNS2_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698541800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742393080\"\n      },\n      {\n        \"@id\": \"_:g70159762428400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX : <http://a.example/p1> <S1> { : . } on { <s> :p1 <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNSdefault_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730656580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779815340\"\n      },\n      {\n        \"@id\": \"_:g70159568130320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>% } + %<Test>{ print(o) %} on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNoCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159705001540\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705808260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotNoCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751648580\"\n      },\n      {\n        \"@id\": \"_:g70159735013500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test#a>% %<Test#b>% %<Test#c>% } + %<Test/#a>{ print(s) %} %<Test/#b>{ print(p) %} %<Test/#c>{ print(o) %} on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotNoCode3_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159752452240\"\n          },\n          {\n            \"@id\": \"_:g70159752401760\"\n          },\n          {\n            \"@id\": \"_:g70159752349840\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752647580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotNoCode3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744126520\"\n      },\n      {\n        \"@id\": \"_:g70159555104480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dot-oneOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745716620\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754170100\"\n      },\n      {\n        \"@id\": \"_:g70159812792680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dot-someOf_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745466780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#MissedMatchables\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706164080\"\n      },\n      {\n        \"@id\": \"_:g70159804107520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 EXTRA <p1> <p2> <p3> {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dotExtra-someOf_pass_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745718520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#MissedMatchables\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553974280\"\n      },\n      {\n        \"@id\": \"_:g70159734234060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dot_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750465120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804713880\"\n      },\n      {\n        \"@id\": \"_:g70159561317620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotOne2dot_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745981680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554763500\"\n      },\n      {\n        \"@id\": \"_:g70159813057520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .+; <annot> <IRIREF> } on { <s1> <p1> 'a', <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotPlusAnnotIRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699583500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotPlusAnnotIRIREF_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735522280\"\n      },\n      {\n        \"@id\": \"_:g70159567461480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2> } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_missingReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699783560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735414040\"\n      },\n      {\n        \"@id\": \"_:g70159768749860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n1> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_missingSelfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699131180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690300960\"\n      },\n      {\n        \"@id\": \"_:g70159556299440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" . <n3> <p1> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_overMatchesReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698209560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779873500\"\n      },\n      {\n        \"@id\": \"_:g70159803962220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_overReferrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698816120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690365100\"\n      },\n      {\n        \"@id\": \"_:g70159743898780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" . <n3> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_overReferrer,overReferent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698506360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159729660060\"\n      },\n      {\n        \"@id\": \"_:g70159780724020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n2> in { <n2> <p2> \\\"X\\\" . <n1> <p1> <n2> } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_referent,referrer\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734035280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812843800\"\n      },\n      {\n        \"@id\": \"_:g70159559761560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_referrer,referent\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733703520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560148680\"\n      },\n      {\n        \"@id\": \"_:g70159803489020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n1> . <n1> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRef1_selfReference\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699475200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRef1_selfReference.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768722100\"\n      },\n      {\n        \"@id\": \"_:g70159770485660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <n1> <p1> <n2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3_failAll\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733284620\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690460360\"\n      },\n      {\n        \"@id\": \"_:g70159560478960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n4> . <n4> <p4> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3_failShape1Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732578060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783049720\"\n      },\n      {\n        \"@id\": \"_:g70159754123460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n3> . <n3> <p3> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3_failShape1Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732818780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777207560\"\n      },\n      {\n        \"@id\": \"_:g70159557825100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3_failShape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733051720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558270000\"\n      },\n      {\n        \"@id\": \"_:g70159705234980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefAND3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732346140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefAND3_passShape1Shape2Shape3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732251780\"\n      },\n      {\n        \"@id\": \"_:g70159735980780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <n1> <p1> <n2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159687523960\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556762280\"\n      },\n      {\n        \"@id\": \"_:g70159567771180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3_passShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753222600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731792500\"\n      },\n      {\n        \"@id\": \"_:g70159733087780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3_passShape1Shape2Shape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752401960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811807940\"\n      },\n      {\n        \"@id\": \"_:g70159778896340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n3> . <n3> <p3> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3_passShape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752954920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159704871100\"\n      },\n      {\n        \"@id\": \"_:g70159735363960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n4> . <n4> <p4> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotRefOR3_passShape3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752678520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765530720\"\n      },\n      {\n        \"@id\": \"_:g70159567323960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX : <http://a.example/> <S1> { :p1 ., } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotSemi_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699147500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750699880\"\n      },\n      {\n        \"@id\": \"_:g70159556120220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } AND { <p2> . } AND { <p3> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeAND1dot3X_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733526080\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744310760\"\n      },\n      {\n        \"@id\": \"_:g70159761759240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } AND { <p2> . } AND { <p3> . } on { <s1> <p1> 'X'; <p2> 'X'; <p3> 'X' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeAND1dot3X_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742192340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeAND1dot3X_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731132240\"\n      },\n      {\n        \"@id\": \"_:g70159775782160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } %<Test>{ print(\\\"shape action\\\") %} on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159751271880\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751435520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693312480\"\n      },\n      {\n        \"@id\": \"_:g70159759988680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } %<Test>% + %<Test>{ print(o) %} on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dotShapeNoCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159750831960\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751028180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeNoCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780456680\"\n      },\n      {\n        \"@id\": \"_:g70159803538120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734358820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812626080\"\n      },\n      {\n        \"@id\": \"_:g70159689640780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742538540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_empty.err\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ErrorReport\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558956140\"\n      },\n      {\n        \"@id\": \"_:g70159765190800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733837160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735113380\"\n      },\n      {\n        \"@id\": \"_:g70159690970880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699735100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699193960\"\n      },\n      {\n        \"@id\": \"_:g70159760416260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729971520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568456100\"\n      },\n      {\n        \"@id\": \"_:g70159556220280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1dot_pass-others_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729630240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555463200\"\n      },\n      {\n        \"@id\": \"_:g70159745358720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.50 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705508220\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K72\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752792140\"\n      },\n      {\n        \"@id\": \"_:g70159796719820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707304380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797081560\"\n      },\n      {\n        \"@id\": \"_:g70159745371300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706390780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558843460\"\n      },\n      {\n        \"@id\": \"_:g70159781210260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704761360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveDECIMAL_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690578640\"\n      },\n      {\n        \"@id\": \"_:g70159770077180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.00 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696110500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K74\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558248880\"\n      },\n      {\n        \"@id\": \"_:g70159698080000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697242500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K73\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775948360\"\n      },\n      {\n        \"@id\": \"_:g70159801260960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.50e0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752562980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K76\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690065040\"\n      },\n      {\n        \"@id\": \"_:g70159754480060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753021380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767134480\"\n      },\n      {\n        \"@id\": \"_:g70159691457600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752792340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695108720\"\n      },\n      {\n        \"@id\": \"_:g70159804276540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753268580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveDOUBLE_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555075500\"\n      },\n      {\n        \"@id\": \"_:g70159744697500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.00e0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752105580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K78\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695316100\"\n      },\n      {\n        \"@id\": \"_:g70159553954660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752334420\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K77\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810332080\"\n      },\n      {\n        \"@id\": \"_:g70159736819480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729432840\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K70\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736430200\"\n      },\n      {\n        \"@id\": \"_:g70159688012180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730591520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159697946300\"\n      },\n      {\n        \"@id\": \"_:g70159780637780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730006180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766446200\"\n      },\n      {\n        \"@id\": \"_:g70159752384140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxexclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697867820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveINTEGER_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760627560\"\n      },\n      {\n        \"@id\": \"_:g70159764514660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDECIMAL_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745011660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765976720\"\n      },\n      {\n        \"@id\": \"_:g70159708303860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744107140\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K79\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561558880\"\n      },\n      {\n        \"@id\": \"_:g70159754068540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745253380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDECIMAL_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691214520\"\n      },\n      {\n        \"@id\": \"_:g70159555054780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDECIMAL_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745487240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDECIMAL_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782655940\"\n      },\n      {\n        \"@id\": \"_:g70159558429940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDOUBLE_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744322040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796933340\"\n      },\n      {\n        \"@id\": \"_:g70159554270720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744555320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDOUBLE_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751272340\"\n      },\n      {\n        \"@id\": \"_:g70159691803320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveDOUBLE_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744797060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDOUBLE_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810121420\"\n      },\n      {\n        \"@id\": \"_:g70159567199400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveINTEGER_fail-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745702380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802990680\"\n      },\n      {\n        \"@id\": \"_:g70159559575880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMaxinclusiveINTEGER_pass-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745943980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveINTEGER_pass-double-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760377420\"\n      },\n      {\n        \"@id\": \"_:g70159803112260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDECIMAL_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745665940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560152400\"\n      },\n      {\n        \"@id\": \"_:g70159780390620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDECIMAL_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745500340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777420000\"\n      },\n      {\n        \"@id\": \"_:g70159556499380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750729540\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K79\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557598300\"\n      },\n      {\n        \"@id\": \"_:g70159559672960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDECIMAL_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745831520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveDECIMAL_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802242020\"\n      },\n      {\n        \"@id\": \"_:g70159777451820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDOUBLE_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706745600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553826820\"\n      },\n      {\n        \"@id\": \"_:g70159780072020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDOUBLE_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746014420\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759705640\"\n      },\n      {\n        \"@id\": \"_:g70159744565380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveDOUBLE_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706456160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveDOUBLE_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779418660\"\n      },\n      {\n        \"@id\": \"_:g70159705362940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveINTEGER_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745176060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559459640\"\n      },\n      {\n        \"@id\": \"_:g70159736936020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMinexclusiveINTEGER_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745342600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveINTEGER_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N69\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735803160\"\n      },\n      {\n        \"@id\": \"_:g70159736488680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707040160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J72\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159800833300\"\n      },\n      {\n        \"@id\": \"_:g70159565866300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708176180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K72\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802012340\"\n      },\n      {\n        \"@id\": \"_:g70159781657640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 04.50e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730218300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M72\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567733120\"\n      },\n      {\n        \"@id\": \"_:g70159556707840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697981820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N72\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811369720\"\n      },\n      {\n        \"@id\": \"_:g70159707420200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMAL_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159692738280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMAL_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689184900\"\n      },\n      {\n        \"@id\": \"_:g70159554664900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5 } / { <s1> <p1> 04.50e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705018320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M71\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561413380\"\n      },\n      {\n        \"@id\": \"_:g70159759825240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698900540\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J74\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736539400\"\n      },\n      {\n        \"@id\": \"_:g70159561068220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699946320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALintLeadTrail_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N74\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762382520\"\n      },\n      {\n        \"@id\": \"_:g70159736212620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731117000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J76\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568395520\"\n      },\n      {\n        \"@id\": \"_:g70159742524420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731299820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K76\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782327160\"\n      },\n      {\n        \"@id\": \"_:g70159804157180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 04.50e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734069920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M76\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699108600\"\n      },\n      {\n        \"@id\": \"_:g70159567212940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731609560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N76\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764630840\"\n      },\n      {\n        \"@id\": \"_:g70159812201420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLE_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734444140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLE_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556249320\"\n      },\n      {\n        \"@id\": \"_:g70159735457260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5e0 } / { <s1> <p1> 04.50e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731024560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M75\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689545940\"\n      },\n      {\n        \"@id\": \"_:g70159736459140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00e0 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733753500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J78\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730659440\"\n      },\n      {\n        \"@id\": \"_:g70159759278380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00e0 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731900800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N78\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699013260\"\n      },\n      {\n        \"@id\": \"_:g70159560690920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05 } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveINTEGERLead_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706996200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J70\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766071220\"\n      },\n      {\n        \"@id\": \"_:g70159769754480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE 05 } / { <s1> <p1> 5.6e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusiveINTEGERLead_pass-double-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705294280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveINTEGERLead_pass-double-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N70\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553482100\"\n      },\n      {\n        \"@id\": \"_:g70159735572200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE \\\"4.5e0\\\"^^<http://www.w3.org/2001/XMLSchema#double> } / { <s1> <p1> 4.4e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusivexsd-double_fail-double-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732069820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J86\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770748340\"\n      },\n      {\n        \"@id\": \"_:g70159782453380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:double MININCLUSIVE \\\"4.5e0\\\"^^<http://www.w3.org/2001/XMLSchema#double> } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1doubleMininclusivexsd-double_pass-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732219480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusivexsd-double_pass-double-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K86\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810301080\"\n      },\n      {\n        \"@id\": \"_:g70159780669460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699371260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779086740\"\n      },\n      {\n        \"@id\": \"_:g70159804849200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699914260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveDECIMAL_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764749540\"\n      },\n      {\n        \"@id\": \"_:g70159555959400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698371440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770421660\"\n      },\n      {\n        \"@id\": \"_:g70159567770140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698895240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveDOUBLE_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159729696220\"\n      },\n      {\n        \"@id\": \"_:g70159705232140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733985720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735718080\"\n      },\n      {\n        \"@id\": \"_:g70159802652340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxexclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734542000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveINTEGER_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744311120\"\n      },\n      {\n        \"@id\": \"_:g70159735314320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDECIMAL_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751499920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567701400\"\n      },\n      {\n        \"@id\": \"_:g70159561152100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751732820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDECIMAL_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811103440\"\n      },\n      {\n        \"@id\": \"_:g70159691087820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDECIMAL_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751974140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDECIMAL_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558101000\"\n      },\n      {\n        \"@id\": \"_:g70159567346320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDOUBLE_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750809180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769556500\"\n      },\n      {\n        \"@id\": \"_:g70159690088120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751042660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDOUBLE_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797175500\"\n      },\n      {\n        \"@id\": \"_:g70159811581340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveDOUBLE_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751284560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDOUBLE_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779110040\"\n      },\n      {\n        \"@id\": \"_:g70159553580660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveINTEGER_fail-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752189000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761887700\"\n      },\n      {\n        \"@id\": \"_:g70159730770100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusiveINTEGER_pass-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752430360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveINTEGER_pass-float-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159696214920\"\n      },\n      {\n        \"@id\": \"_:g70159689334100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 5.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750585200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K58\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811219940\"\n      },\n      {\n        \"@id\": \"_:g70159781029940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MAXINCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 5.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMaxinclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746159180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K60\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554566240\"\n      },\n      {\n        \"@id\": \"_:g70159735280700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDECIMAL_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744079580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159705704500\"\n      },\n      {\n        \"@id\": \"_:g70159801550160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDECIMAL_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743932920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557756060\"\n      },\n      {\n        \"@id\": \"_:g70159776356040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDECIMAL_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744224800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveDECIMAL_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802502760\"\n      },\n      {\n        \"@id\": \"_:g70159736327180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDOUBLE_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744535920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783442280\"\n      },\n      {\n        \"@id\": \"_:g70159559151400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDOUBLE_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744389260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556189720\"\n      },\n      {\n        \"@id\": \"_:g70159768831100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveDOUBLE_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744679980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveDOUBLE_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752404060\"\n      },\n      {\n        \"@id\": \"_:g70159691637520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveINTEGER_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730051740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689938100\"\n      },\n      {\n        \"@id\": \"_:g70159555363440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusiveINTEGER_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743769380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveINTEGER_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N48\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811400920\"\n      },\n      {\n        \"@id\": \"_:g70159705851000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusivexsd-float_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744867000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K58\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688761260\"\n      },\n      {\n        \"@id\": \"_:g70159745210660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MINEXCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMinexclusivexsd-float_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745008720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K60\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706683320\"\n      },\n      {\n        \"@id\": \"_:g70159565853360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730891580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J51\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770995660\"\n      },\n      {\n        \"@id\": \"_:g70159554447400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730396880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K51\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736259700\"\n      },\n      {\n        \"@id\": \"_:g70159556544260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729854800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M51\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567084200\"\n      },\n      {\n        \"@id\": \"_:g70159557972920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708318200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N51\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556599120\"\n      },\n      {\n        \"@id\": \"_:g70159707037920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMAL_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698522620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMAL_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768338760\"\n      },\n      {\n        \"@id\": \"_:g70159812271660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698059900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMAL_pass-float-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M50\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803191560\"\n      },\n      {\n        \"@id\": \"_:g70159770766580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705344100\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J53\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802631240\"\n      },\n      {\n        \"@id\": \"_:g70159695218220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707355520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALintLeadTrail_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N53\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734722280\"\n      },\n      {\n        \"@id\": \"_:g70159733736460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696701680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J55\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753858800\"\n      },\n      {\n        \"@id\": \"_:g70159736096360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159687741440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K55\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802221120\"\n      },\n      {\n        \"@id\": \"_:g70159768165860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734332760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M55\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690523800\"\n      },\n      {\n        \"@id\": \"_:g70159742227500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699799460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N55\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556370200\"\n      },\n      {\n        \"@id\": \"_:g70159779536480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLE_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706528740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLE_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736950460\"\n      },\n      {\n        \"@id\": \"_:g70159568127680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5e0 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705642940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLE_pass-float-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M54\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555874060\"\n      },\n      {\n        \"@id\": \"_:g70159734935060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698851500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J57\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560774740\"\n      },\n      {\n        \"@id\": \"_:g70159765810300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697968520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLEintLeadTrail_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N57\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750811620\"\n      },\n      {\n        \"@id\": \"_:g70159759020320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGERLead_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699390560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J49\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804354260\"\n      },\n      {\n        \"@id\": \"_:g70159767996820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGERLead_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705690500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768507840\"\n      },\n      {\n        \"@id\": \"_:g70159753692060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 05 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGERLead_pass-float-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698977920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGERLead_pass-float-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N49\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775613300\"\n      },\n      {\n        \"@id\": \"_:g70159768621280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '4.9'^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730351620\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553552240\"\n      },\n      {\n        \"@id\": \"_:g70159776601340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '05'^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729988680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809909820\"\n      },\n      {\n        \"@id\": \"_:g70159779023880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5.0'^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGER_pass-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729582040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equalTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691362700\"\n      },\n      {\n        \"@id\": \"_:g70159754304260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5.1'^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708190700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554024620\"\n      },\n      {\n        \"@id\": \"_:g70159751552260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusivexsd-float_fail-float-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730200220\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J65\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767359480\"\n      },\n      {\n        \"@id\": \"_:g70159553384820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:float MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1floatMininclusivexsd-float_pass-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708155020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusivexsd-float_pass-float-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K65\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759297920\"\n      },\n      {\n        \"@id\": \"_:g70159689577420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732006740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766466100\"\n      },\n      {\n        \"@id\": \"_:g70159691426040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrst <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODELength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731104120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732085060\"\n      },\n      {\n        \"@id\": \"_:g70159734906100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODELength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731711120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555581840\"\n      },\n      {\n        \"@id\": \"_:g70159804374520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODELength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731415020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561298080\"\n      },\n      {\n        \"@id\": \"_:g70159769393660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE { <p1> . } on <s> in { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODE_dot_fail-iriFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731574660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567261180\"\n      },\n      {\n        \"@id\": \"_:g70159736900040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> BNODE { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusBNODE_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731299920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561117660\"\n      },\n      {\n        \"@id\": \"_:g70159762574380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733184040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745933240\"\n      },\n      {\n        \"@id\": \"_:g70159561360060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRILength_dot_fail-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732297480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689726640\"\n      },\n      {\n        \"@id\": \"_:g70159558821760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRILength_dot_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732902300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752631800\"\n      },\n      {\n        \"@id\": \"_:g70159766530760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRILength_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732611480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694102560\"\n      },\n      {\n        \"@id\": \"_:g70159730874600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI { <p1> . } on <s> in { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRI_dot_fail-bnodeFocusLabel\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732131860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567115440\"\n      },\n      {\n        \"@id\": \"_:g70159556070420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> IRI { <p1> . } on <s> in { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusIRI_dot_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731872720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736243300\"\n      },\n      {\n        \"@id\": \"_:g70159801010680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrst <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752136740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803863800\"\n      },\n      {\n        \"@id\": \"_:g70159776957860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752790360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567292340\"\n      },\n      {\n        \"@id\": \"_:g70159734834240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753102500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555762680\"\n      },\n      {\n        \"@id\": \"_:g70159707629500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697143460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758919660\"\n      },\n      {\n        \"@id\": \"_:g70159742375180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752480720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780967540\"\n      },\n      {\n        \"@id\": \"_:g70159567313400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> LENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753416500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735888040\"\n      },\n      {\n        \"@id\": \"_:g70159768408340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744188440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811071400\"\n      },\n      {\n        \"@id\": \"_:g70159731605800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745125000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568310580\"\n      },\n      {\n        \"@id\": \"_:g70159766239000\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744502000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778416640\"\n      },\n      {\n        \"@id\": \"_:g70159765152860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744828860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1abcd_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783112380\"\n      },\n      {\n        \"@id\": \"_:g70159752858200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745439220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735083900\"\n      },\n      {\n        \"@id\": \"_:g70159735164940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMaxLength-dot_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745752800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1s_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745125920\"\n      },\n      {\n        \"@id\": \"_:g70159797503460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750913820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804700340\"\n      },\n      {\n        \"@id\": \"_:g70159735395040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751847780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736495500\"\n      },\n      {\n        \"@id\": \"_:g70159809401000\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750611360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734261860\"\n      },\n      {\n        \"@id\": \"_:g70159554595020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746074000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1abcdefghijklmnopqrst_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566324440\"\n      },\n      {\n        \"@id\": \"_:g70159771226820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751565680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753811820\"\n      },\n      {\n        \"@id\": \"_:g70159691481020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusMinLength-dot_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751252000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1s1a_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689099600\"\n      },\n      {\n        \"@id\": \"_:g70159567192240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s1a> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPattern-dot_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743063320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762610880\"\n      },\n      {\n        \"@id\": \"_:g70159560608380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s2> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPattern-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743913920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556090680\"\n      },\n      {\n        \"@id\": \"_:g70159561329200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPattern-dot_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743637940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159751397460\"\n      },\n      {\n        \"@id\": \"_:g70159688348900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN 'http://a.example/s1' { <p1> } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPattern-dot_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743370240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770178660\"\n      },\n      {\n        \"@id\": \"_:g70159689036120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcd <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPatternB-dot_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742519880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688429320\"\n      },\n      {\n        \"@id\": \"_:g70159803340920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { <s2> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPatternB-dot_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742787280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565887080\"\n      },\n      {\n        \"@id\": \"_:g70159688074500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcdefghijklmnopqrst <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPatternB-dot_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733526580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusPatternB-dot_pass-bnode-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804798720\"\n      },\n      {\n        \"@id\": \"_:g70159689970600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcdefghijklmnopqrs <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusPatternB-dot_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742229740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765382920\"\n      },\n      {\n        \"@id\": \"_:g70159801651040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> NONLITERAL { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteral-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706722380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735102920\"\n      },\n      {\n        \"@id\": \"_:g70159696025300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> NONLITERAL LENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteralLength-dot_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734554940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736558180\"\n      },\n      {\n        \"@id\": \"_:g70159555970960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> NONLITERAL LENGTH 19 { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteralLength-nonLiteralLength_fail-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697830500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770797380\"\n      },\n      {\n        \"@id\": \"_:g70159561589900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> NONLITERAL LENGTH 19 { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusnonLiteralLength-nonLiteralLength_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698129820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusnonLiteralLength-nonLiteralLength_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566820240\"\n      },\n      {\n        \"@id\": \"_:g70159559016860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] AND IRI on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsANDIRI_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730165580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734885360\"\n      },\n      {\n        \"@id\": \"_:g70159782241380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] AND IRI on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsANDIRI_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730925200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsANDIRI_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760836700\"\n      },\n      {\n        \"@id\": \"_:g70159735243720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] AND <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsANDdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698214640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812773920\"\n      },\n      {\n        \"@id\": \"_:g70159745076060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsORdatatype_fail-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705736200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732644620\"\n      },\n      {\n        \"@id\": \"_:g70159735593240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsORdatatype_fail-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707896580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568150460\"\n      },\n      {\n        \"@id\": \"_:g70159554693500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsORdatatype_pass-dt\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706995060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsORdatatype_pass-dt.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567145940\"\n      },\n      {\n        \"@id\": \"_:g70159802473680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1focusvsORdatatype_pass-val\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729466320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsORdatatype_pass-val.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742321360\"\n      },\n      {\n        \"@id\": \"_:g70159779512880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742980480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558220440\"\n      },\n      {\n        \"@id\": \"_:g70159753616320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742765660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698190840\"\n      },\n      {\n        \"@id\": \"_:g70159768358300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743213280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveDECIMALint_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754153180\"\n      },\n      {\n        \"@id\": \"_:g70159558001380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742309040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159746165220\"\n      },\n      {\n        \"@id\": \"_:g70159729823640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742094040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566295100\"\n      },\n      {\n        \"@id\": \"_:g70159566245180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742550800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveDOUBLEint_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760564020\"\n      },\n      {\n        \"@id\": \"_:g70159553757720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743650820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159697850380\"\n      },\n      {\n        \"@id\": \"_:g70159568274960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743436200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803784700\"\n      },\n      {\n        \"@id\": \"_:g70159796901820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxexclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743884000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveINTEGER_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559843360\"\n      },\n      {\n        \"@id\": \"_:g70159555936400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDECIMALint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751758000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759629800\"\n      },\n      {\n        \"@id\": \"_:g70159766027380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751579020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDECIMALint_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769344620\"\n      },\n      {\n        \"@id\": \"_:g70159768181760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDECIMALint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705544060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDECIMALint_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769967780\"\n      },\n      {\n        \"@id\": \"_:g70159568428280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752317040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735687400\"\n      },\n      {\n        \"@id\": \"_:g70159558022300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752119980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDOUBLEint_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159746015180\"\n      },\n      {\n        \"@id\": \"_:g70159706663260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751946180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDOUBLEint_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736642260\"\n      },\n      {\n        \"@id\": \"_:g70159802372660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveINTEGER_fail-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751257720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809813980\"\n      },\n      {\n        \"@id\": \"_:g70159765843780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751073600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveINTEGER_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732823860\"\n      },\n      {\n        \"@id\": \"_:g70159803686240\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMaxinclusiveINTEGER_pass-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750891620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveINTEGER_pass-integer-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759411760\"\n      },\n      {\n        \"@id\": \"_:g70159812527280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDECIMALint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732952740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553778140\"\n      },\n      {\n        \"@id\": \"_:g70159800864520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699128800\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556746100\"\n      },\n      {\n        \"@id\": \"_:g70159554905460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698846440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveDECIMALint_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804729080\"\n      },\n      {\n        \"@id\": \"_:g70159777046420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733398860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761920500\"\n      },\n      {\n        \"@id\": \"_:g70159566395020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDOUBLEint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733247200\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691607080\"\n      },\n      {\n        \"@id\": \"_:g70159698786680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveDOUBLEint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698409140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveDOUBLEint_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566356620\"\n      },\n      {\n        \"@id\": \"_:g70159770027060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveINTEGER_fail-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732509680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693637340\"\n      },\n      {\n        \"@id\": \"_:g70159803517880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732359360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761822460\"\n      },\n      {\n        \"@id\": \"_:g70159556169980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMinexclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732659960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveINTEGER_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688855320\"\n      },\n      {\n        \"@id\": \"_:g70159811039520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698829560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J9\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556336780\"\n      },\n      {\n        \"@id\": \"_:g70159566145460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698469460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K9\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777992480\"\n      },\n      {\n        \"@id\": \"_:g70159803636200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 05 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698065060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L9\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735922000\"\n      },\n      {\n        \"@id\": \"_:g70159768453980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730987000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N9\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809486100\"\n      },\n      {\n        \"@id\": \"_:g70159694857740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 4.5 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMAL_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699209420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMAL_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K8\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802832560\"\n      },\n      {\n        \"@id\": \"_:g70159782507880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708156240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J11\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555233500\"\n      },\n      {\n        \"@id\": \"_:g70159763227800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707925840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K11\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752317280\"\n      },\n      {\n        \"@id\": \"_:g70159802932560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 05 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707323960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L11\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688161340\"\n      },\n      {\n        \"@id\": \"_:g70159558656180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706609800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N11\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159763180120\"\n      },\n      {\n        \"@id\": \"_:g70159770537980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALint_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730513980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558512560\"\n      },\n      {\n        \"@id\": \"_:g70159781390820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730086220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALint_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778502620\"\n      },\n      {\n        \"@id\": \"_:g70159557467120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDECIMALint_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729612980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALint_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N10\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566998280\"\n      },\n      {\n        \"@id\": \"_:g70159809940960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705068180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J13\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159705756200\"\n      },\n      {\n        \"@id\": \"_:g70159771173020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696852400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K13\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554418740\"\n      },\n      {\n        \"@id\": \"_:g70159780425660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 05 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696178460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L13\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736357400\"\n      },\n      {\n        \"@id\": \"_:g70159691543860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734394560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N13\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689397000\"\n      },\n      {\n        \"@id\": \"_:g70159803813700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 4.5e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLE_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705838280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLE_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K12\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690884440\"\n      },\n      {\n        \"@id\": \"_:g70159559121160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699959960\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J15\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809189160\"\n      },\n      {\n        \"@id\": \"_:g70159735834340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699567080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K15\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776125160\"\n      },\n      {\n        \"@id\": \"_:g70159559429560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 05 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699141520\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L15\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568011400\"\n      },\n      {\n        \"@id\": \"_:g70159770339960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698736540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N15\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699834300\"\n      },\n      {\n        \"@id\": \"_:g70159753203320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveDOUBLEint_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733967840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEint_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K14\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779716700\"\n      },\n      {\n        \"@id\": \"_:g70159810709760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGERLead_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734382280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J7\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699665440\"\n      },\n      {\n        \"@id\": \"_:g70159777567960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGERLead_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734014700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K7\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555384500\"\n      },\n      {\n        \"@id\": \"_:g70159567802560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 05 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159700028040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L7\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567850080\"\n      },\n      {\n        \"@id\": \"_:g70159766304560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGERLead_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699618380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N7\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812893020\"\n      },\n      {\n        \"@id\": \"_:g70159777356060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '5'^^<http://www.w3.org/2001/XMLSchema#byte> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729496520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K21\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554299920\"\n      },\n      {\n        \"@id\": \"_:g70159771048880\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '2015-12-25T01:23:45Z'^^<http://www.w3.org/2001/XMLSchema#dateTime> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-dateTime-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730397860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K19\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555467240\"\n      },\n      {\n        \"@id\": \"_:g70159752043820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4.5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698322400\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K16\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556728100\"\n      },\n      {\n        \"@id\": \"_:g70159780358920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730852020\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K18\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560938200\"\n      },\n      {\n        \"@id\": \"_:g70159782837420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697933600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K17\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693608320\"\n      },\n      {\n        \"@id\": \"_:g70159765584200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704954600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769110480\"\n      },\n      {\n        \"@id\": \"_:g70159751223940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705348860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752862140\"\n      },\n      {\n        \"@id\": \"_:g70159561196260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 'ab'^^<http://www.w3.org/2001/XMLSchema#string> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_fail-string-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729942340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K20\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736560280\"\n      },\n      {\n        \"@id\": \"_:g70159783591280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707009300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759345640\"\n      },\n      {\n        \"@id\": \"_:g70159553679200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '05'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_pass-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707545660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734681560\"\n      },\n      {\n        \"@id\": \"_:g70159813118440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704831840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560428700\"\n      },\n      {\n        \"@id\": \"_:g70159556449340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696555920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730219140\"\n      },\n      {\n        \"@id\": \"_:g70159736788680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 6 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusiveINTEGER_pass-integer-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696041740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-integer-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N6\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811251620\"\n      },\n      {\n        \"@id\": \"_:g70159781933940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE \\\"5\\\"^^<http://www.w3.org/2001/XMLSchema#integer> } / { <s1> <p1> 4 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusivexsd-integer_fail-integer-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708058540\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J23\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770127860\"\n      },\n      {\n        \"@id\": \"_:g70159778715340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> xsd:integer MININCLUSIVE \\\"5\\\"^^<http://www.w3.org/2001/XMLSchema#integer> } / { <s1> <p1> 5 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1integerMininclusivexsd-integer_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707775400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusivexsd-integer_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/ns/prov#wasDerivedFrom\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K23\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762014940\"\n      },\n      {\n        \"@id\": \"_:g70159567342340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedotAnnot3_missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706666340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778959720\"\n      },\n      {\n        \"@id\": \"_:g70159745289840\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedotAnnot3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729663200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedotAnnot3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812547660\"\n      },\n      {\n        \"@id\": \"_:g70159690396360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedotCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159692270020\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704600060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedotCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802452300\"\n      },\n      {\n        \"@id\": \"_:g70159736127580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707416520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769469160\"\n      },\n      {\n        \"@id\": \"_:g70159804012140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706611460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783866800\"\n      },\n      {\n        \"@id\": \"_:g70159555254860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <sr> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705933700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783537180\"\n      },\n      {\n        \"@id\": \"_:g70159743584720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot_pass-over_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705363340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693358240\"\n      },\n      {\n        \"@id\": \"_:g70159752698100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1inversedot_pass-over_lexicallyLater\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704520320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690555400\"\n      },\n      {\n        \"@id\": \"_:g70159567900520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745162840\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159697596640\"\n      },\n      {\n        \"@id\": \"_:g70159555941420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745583800\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566410160\"\n      },\n      {\n        \"@id\": \"_:g70159803714860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746010880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781508520\"\n      },\n      {\n        \"@id\": \"_:g70159804581120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745375600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560212880\"\n      },\n      {\n        \"@id\": \"_:g70159779323360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745811100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriLength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810944580\"\n      },\n      {\n        \"@id\": \"_:g70159695158220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705375060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770944400\"\n      },\n      {\n        \"@id\": \"_:g70159781634880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708386140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMaxlength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778991820\"\n      },\n      {\n        \"@id\": \"_:g70159734754880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729984340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMaxlength_pass-iri-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731771580\"\n      },\n      {\n        \"@id\": \"_:g70159735541460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732301660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566148040\"\n      },\n      {\n        \"@id\": \"_:g70159566753680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732101340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMinlength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735771540\"\n      },\n      {\n        \"@id\": \"_:g70159561444400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731873900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMinlength_pass-iri-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764943360\"\n      },\n      {\n        \"@id\": \"_:g70159800800820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI PATTERN \\\"^bc$\\\" } on { <s1> <p1> _:bc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742455880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812428620\"\n      },\n      {\n        \"@id\": \"_:g70159693377400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742882060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766876300\"\n      },\n      {\n        \"@id\": \"_:g70159568050040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743095220\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761071940\"\n      },\n      {\n        \"@id\": \"_:g70159566424240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> \\\"o1\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742669160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797027240\"\n      },\n      {\n        \"@id\": \"_:g70159568341620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743336900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriPattern_pass-iri-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559889680\"\n      },\n      {\n        \"@id\": \"_:g70159560737400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> _:n1 . _:n1 <p2> \\\"X\\\" } as <S1> in <S1> { <p1> IRI @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRef1_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705625740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769226340\"\n      },\n      {\n        \"@id\": \"_:g70159809729300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> IRI @<S2> } <S2> { <p2> . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRef1_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708284060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriRef1_pass-iri.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566374460\"\n      },\n      {\n        \"@id\": \"_:g70159705036160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744129380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766268840\"\n      },\n      {\n        \"@id\": \"_:g70159746109400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744536300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767854180\"\n      },\n      {\n        \"@id\": \"_:g70159736151500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744963340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750567020\"\n      },\n      {\n        \"@id\": \"_:g70159559857400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744336780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558903640\"\n      },\n      {\n        \"@id\": \"_:g70159687980540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o1> . <o1> <p2>  <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iriRefLength1_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744763920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriRefLength1_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695516440\"\n      },\n      {\n        \"@id\": \"_:g70159768569540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI } on { <s1> <p1> _:ab }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iri_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734293020\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556451600\"\n      },\n      {\n        \"@id\": \"_:g70159731594640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iri_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734017260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783505540\"\n      },\n      {\n        \"@id\": \"_:g70159813089760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> IRI } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1iri_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734572960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iri_pass-iri.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743242560\"\n      },\n      {\n        \"@id\": \"_:g70159553974980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"\\\\^bc\\\\$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743797220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalCarrotPatternDollar_pass-CarrotbcDollar.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561167620\"\n      },\n      {\n        \"@id\": \"_:g70159556691120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"\\\\^bc\\\\$\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalCarrotPatternDollar_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744011820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781784960\"\n      },\n      {\n        \"@id\": \"_:g70159556478400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> _:12345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699058700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735918980\"\n      },\n      {\n        \"@id\": \"_:g70159736740340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.234567 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733707140\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781296200\"\n      },\n      {\n        \"@id\": \"_:g70159729772940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.23456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698616780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754550420\"\n      },\n      {\n        \"@id\": \"_:g70159766584060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707288500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556020500\"\n      },\n      {\n        \"@id\": \"_:g70159696966920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 1.234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730328920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554172160\"\n      },\n      {\n        \"@id\": \"_:g70159782178300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707039160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776481360\"\n      },\n      {\n        \"@id\": \"_:g70159560858420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.23456\\\"^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705243880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566674620\"\n      },\n      {\n        \"@id\": \"_:g70159689004400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> <1.2345> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698439820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764464640\"\n      },\n      {\n        \"@id\": \"_:g70159759774820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.2345ab\\\"^^xsd:decimal }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730284240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812152280\"\n      },\n      {\n        \"@id\": \"_:g70159731112820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.23ab\\\"^^xsd:decimal }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708335700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559069360\"\n      },\n      {\n        \"@id\": \"_:g70159782687460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693652280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736589620\"\n      },\n      {\n        \"@id\": \"_:g70159560836880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.23456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734491200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811550060\"\n      },\n      {\n        \"@id\": \"_:g70159734872240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.2345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699408800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760215000\"\n      },\n      {\n        \"@id\": \"_:g70159797144120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.23450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729479700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744599760\"\n      },\n      {\n        \"@id\": \"_:g70159809633900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 1.23450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697901280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733180140\"\n      },\n      {\n        \"@id\": \"_:g70159783387860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.2345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693493140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730446220\"\n      },\n      {\n        \"@id\": \"_:g70159783174960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 12345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705476680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1fractionTotaldigits_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802861980\"\n      },\n      {\n        \"@id\": \"_:g70159555436020\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"12345\\\"^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalFractiondigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159692573940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1fractionTotaldigits_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762774640\"\n      },\n      {\n        \"@id\": \"_:g70159801371040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> _:abcde }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength_fail-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750421460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754021200\"\n      },\n      {\n        \"@id\": \"_:g70159556149340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL LENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength_fail-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750634160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812596860\"\n      },\n      {\n        \"@id\": \"_:g70159689608780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750842180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761511760\"\n      },\n      {\n        \"@id\": \"_:g70159553453480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751270320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735856840\"\n      },\n      {\n        \"@id\": \"_:g70159768671640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalLength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751070300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalLength_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745174820\"\n      },\n      {\n        \"@id\": \"_:g70159750648940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxexclusiveINTEGER_fail-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698752860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555862240\"\n      },\n      {\n        \"@id\": \"_:g70159566094460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxexclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698442820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559479540\"\n      },\n      {\n        \"@id\": \"_:g70159801911520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxexclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699081740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxexclusiveINTEGER_pass-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758872300\"\n      },\n      {\n        \"@id\": \"_:g70159694351140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxinclusiveINTEGER_fail-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730724820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553531740\"\n      },\n      {\n        \"@id\": \"_:g70159735656900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxinclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697786860\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxinclusiveINTEGER_pass-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561446940\"\n      },\n      {\n        \"@id\": \"_:g70159688941400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxinclusiveINTEGER_pass-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698131540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxinclusiveINTEGER_pass-low.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767214320\"\n      },\n      {\n        \"@id\": \"_:g70159566603620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxlength_fail-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730524460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566803880\"\n      },\n      {\n        \"@id\": \"_:g70159689672520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697783840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxlength_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560182660\"\n      },\n      {\n        \"@id\": \"_:g70159733494960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMaxlength_pass-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698305440\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxlength_pass-lit-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769047160\"\n      },\n      {\n        \"@id\": \"_:g70159556041080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinexclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159691834600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556628640\"\n      },\n      {\n        \"@id\": \"_:g70159567113500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinexclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734346100\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811993340\"\n      },\n      {\n        \"@id\": \"_:g70159566471720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinexclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734032480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinexclusiveINTEGER_pass-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804878180\"\n      },\n      {\n        \"@id\": \"_:g70159566936820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMininclusiveINTEGER_fail-low\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733676960\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159687949420\"\n      },\n      {\n        \"@id\": \"_:g70159809517180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMininclusiveINTEGER_pass-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699784000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMininclusiveINTEGER_pass-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764796420\"\n      },\n      {\n        \"@id\": \"_:g70159762739420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMininclusiveINTEGER_pass-high\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699426380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMininclusiveINTEGER_pass-high.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752221260\"\n      },\n      {\n        \"@id\": \"_:g70159557776240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinlength_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732956920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159800980920\"\n      },\n      {\n        \"@id\": \"_:g70159688792700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinlength_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732757120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinlength_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764485020\"\n      },\n      {\n        \"@id\": \"_:g70159811942420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalMinlength_pass-lit-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732529700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinlength_pass-lit-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688823880\"\n      },\n      {\n        \"@id\": \"_:g70159803764120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern19_fail-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751159500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759147660\"\n      },\n      {\n        \"@id\": \"_:g70159559263880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\\$\\\" } on { <s1> <p1> \\\"bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternDollar_pass-litDollar-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744681960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPatternDollar_pass-litDollar-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770441380\"\n      },\n      {\n        \"@id\": \"_:g70159695713500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternEnd_fail-litEnd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744896920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559608360\"\n      },\n      {\n        \"@id\": \"_:g70159734327240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternEnd_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745829480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779386640\"\n      },\n      {\n        \"@id\": \"_:g70159801160820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746063700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPatternEnd_pass-bc.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782963820\"\n      },\n      {\n        \"@id\": \"_:g70159812053300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_fail-ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751830340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555026000\"\n      },\n      {\n        \"@id\": \"_:g70159765447340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> _:ab }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750944820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765365640\"\n      },\n      {\n        \"@id\": \"_:g70159694747800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"cd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_fail-cd\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751615240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735742420\"\n      },\n      {\n        \"@id\": \"_:g70159797355320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"a\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752044080\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553306240\"\n      },\n      {\n        \"@id\": \"_:g70159783803740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"^bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_pass-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745130340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-CarrotbcDollar.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566882360\"\n      },\n      {\n        \"@id\": \"_:g70159800959920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_pass-StartlitEnd-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744440580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555533420\"\n      },\n      {\n        \"@id\": \"_:g70159561497340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_pass-bcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745614800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-bcDollar.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782624660\"\n      },\n      {\n        \"@id\": \"_:g70159565916180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"abc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_pass-lit-into\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751401280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-lit-into.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555351560\"\n      },\n      {\n        \"@id\": \"_:g70159730115600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPattern_pass-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752285340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-lit-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809610660\"\n      },\n      {\n        \"@id\": \"_:g70159762857540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:bc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPatternabEnd_fail-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743550280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566702280\"\n      },\n      {\n        \"@id\": \"_:g70159567362880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> LITERAL+ } on { <s> <p1> 'a', <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalPlus_Is1_Ip1_La,Io1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734343040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NonDotCardinality\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559542580\"\n      },\n      {\n        \"@id\": \"_:g70159781327780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStarPatternEnd_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745372540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalStarPatternEnd_pass-bc.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766823220\"\n      },\n      {\n        \"@id\": \"_:g70159761660700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStartPatternEnd_CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744226480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796964700\"\n      },\n      {\n        \"@id\": \"_:g70159809369100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc\\\" } on { <s1> <p1> \\\"^bc$\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStartPattern_fail-CarrotbcDollar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750496320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796782340\"\n      },\n      {\n        \"@id\": \"_:g70159555005140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc\\\" } on { <s1> <p1> \\\"bc\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalStartPattern_pass-bc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750730640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalStartPattern-bc.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566045540\"\n      },\n      {\n        \"@id\": \"_:g70159734755920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> _:12345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696345720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759213040\"\n      },\n      {\n        \"@id\": \"_:g70159560967240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 128^^xsd:byte }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-byte-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707710440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766401820\"\n      },\n      {\n        \"@id\": \"_:g70159801962560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.23456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-decimal-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734545060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553876560\"\n      },\n      {\n        \"@id\": \"_:g70159733589480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.23456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-decimal-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733900120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566095260\"\n      },\n      {\n        \"@id\": \"_:g70159782782720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-decimal-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699048620\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560859420\"\n      },\n      {\n        \"@id\": \"_:g70159729875340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-decimal-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699683800\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769506100\"\n      },\n      {\n        \"@id\": \"_:g70159762326920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 4.5e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-double-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706794980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753299500\"\n      },\n      {\n        \"@id\": \"_:g70159797293500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:float }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-float-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707258120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768781040\"\n      },\n      {\n        \"@id\": \"_:g70159735079480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 0123456 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-integer-longLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697787240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796602540\"\n      },\n      {\n        \"@id\": \"_:g70159752304360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 01234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-integer-longLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729660600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556074080\"\n      },\n      {\n        \"@id\": \"_:g70159801341400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 1234560 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-integer-longTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730396140\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744881960\"\n      },\n      {\n        \"@id\": \"_:g70159736881920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> <1.2345> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697013480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803587180\"\n      },\n      {\n        \"@id\": \"_:g70159778236540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345ab\\\"^^xsd:decimal }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705592420\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694044160\"\n      },\n      {\n        \"@id\": \"_:g70159735721680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.23ab\\\"^^xsd:decimal }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706146060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736181620\"\n      },\n      {\n        \"@id\": \"_:g70159704828820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705015900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554123440\"\n      },\n      {\n        \"@id\": \"_:g70159705539160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 64^^xsd:byte }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-byte-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706662700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-byte-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812222500\"\n      },\n      {\n        \"@id\": \"_:g70159776750640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 5^^xsd:byte }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-byte-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708319780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-byte-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706152780\"\n      },\n      {\n        \"@id\": \"_:g70159554862240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.2345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-decimal-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734278840\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809548800\"\n      },\n      {\n        \"@id\": \"_:g70159699311140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.2345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-decimal-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734232160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734784180\"\n      },\n      {\n        \"@id\": \"_:g70159734787120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.23450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-decimal-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699374940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783324700\"\n      },\n      {\n        \"@id\": \"_:g70159801031200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.23450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-decimal-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159700015620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159775666100\"\n      },\n      {\n        \"@id\": \"_:g70159804778480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.234 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-decimal-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699878380\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783198220\"\n      },\n      {\n        \"@id\": \"_:g70159802602220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 12345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-integer-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698767680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777843920\"\n      },\n      {\n        \"@id\": \"_:g70159769656900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 012345 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-integer-equalLead\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698115720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalLead.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801210500\"\n      },\n      {\n        \"@id\": \"_:g70159698376580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 0123450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-integer-equalLeadTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730049760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalLeadTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565947700\"\n      },\n      {\n        \"@id\": \"_:g70159813188620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 123450 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-integer-equalTrail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730776920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalTrail.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567571640\"\n      },\n      {\n        \"@id\": \"_:g70159697865460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1234\\\"^^xsd:integer }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literalTotaldigits_pass-xsd_integer-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698442200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783143860\"\n      },\n      {\n        \"@id\": \"_:g70159733428340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL } on { <s1> <p1> _:ab }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literal_fail-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699028580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159696687880\"\n      },\n      {\n        \"@id\": \"_:g70159706830720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literal_fail-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699309440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559825140\"\n      },\n      {\n        \"@id\": \"_:g70159735850860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> LITERAL } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1literal_pass-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698736680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literal_pass-literal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764841220\"\n      },\n      {\n        \"@id\": \"_:g70159767950100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrst }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733165060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159695762500\"\n      },\n      {\n        \"@id\": \"_:g70159765303560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742015900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554890460\"\n      },\n      {\n        \"@id\": \"_:g70159554792760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742437300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782539400\"\n      },\n      {\n        \"@id\": \"_:g70159733691360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742864480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159771194280\"\n      },\n      {\n        \"@id\": \"_:g70159759544200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_fail-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742228660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801861340\"\n      },\n      {\n        \"@id\": \"_:g70159780904680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733397960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralLength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560658360\"\n      },\n      {\n        \"@id\": \"_:g70159778747140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralLength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742664940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralLength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689821580\"\n      },\n      {\n        \"@id\": \"_:g70159553905380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 5 } on { <s1> <p1> _:abcdefghijklmnopqrst }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_fail-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752499120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734805000\"\n      },\n      {\n        \"@id\": \"_:g70159560459820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_fail-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753218900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159796837060\"\n      },\n      {\n        \"@id\": \"_:g70159561067980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752745700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732838500\"\n      },\n      {\n        \"@id\": \"_:g70159744408060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_pass-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752992100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-bnode-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560236980\"\n      },\n      {\n        \"@id\": \"_:g70159705053200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159692642100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735392720\"\n      },\n      {\n        \"@id\": \"_:g70159769819100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMaxlength_pass-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696966940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-iri-short.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803941000\"\n      },\n      {\n        \"@id\": \"_:g70159765907200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcd }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699803560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689311200\"\n      },\n      {\n        \"@id\": \"_:g70159699752900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706712880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762365160\"\n      },\n      {\n        \"@id\": \"_:g70159753087720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_pass-bnode-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699322120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-bnode-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750992080\"\n      },\n      {\n        \"@id\": \"_:g70159803390780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrst }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698804500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-bnode-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731034660\"\n      },\n      {\n        \"@id\": \"_:g70159560952740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_pass-iri-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734445280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-iri-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803735200\"\n      },\n      {\n        \"@id\": \"_:g70159568329720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralMinlength_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733923640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-iri-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159759476360\"\n      },\n      {\n        \"@id\": \"_:g70159566653540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:a }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_fail-bnode-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731544940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769192220\"\n      },\n      {\n        \"@id\": \"_:g70159779237280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_fail-iri-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732462520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557500060\"\n      },\n      {\n        \"@id\": \"_:g70159694201940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_fail-lit-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732004660\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567162820\"\n      },\n      {\n        \"@id\": \"_:g70159736619760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:abc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_pass-bnode-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731331900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-bnode-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555133660\"\n      },\n      {\n        \"@id\": \"_:g70159566325800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:bc }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_pass-bnode-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731787100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-bnode-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688129400\"\n      },\n      {\n        \"@id\": \"_:g70159560318240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <abc> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_pass-iri-long\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732248080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-iri-long.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561605140\"\n      },\n      {\n        \"@id\": \"_:g70159566913940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <bc> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteralPattern_pass-iri-match\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732705340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-iri-match.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159760671500\"\n      },\n      {\n        \"@id\": \"_:g70159559181680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> \\\"ab\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteral_fail-literal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730482260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801731740\"\n      },\n      {\n        \"@id\": \"_:g70159781998140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> _:ab }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteral_pass-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730841260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteral_pass-bnode.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693795420\"\n      },\n      {\n        \"@id\": \"_:g70159554714040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1nonliteral_pass-iri\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698427660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteral_pass-iri.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556678920\"\n      },\n      {\n        \"@id\": \"_:g70159761080960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p2> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode1_fail-g1-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730824460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767591340\"\n      },\n      {\n        \"@id\": \"_:g70159765418540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p1> <n2> . <n2> <p1> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode1_fail-g2-arc\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730466500\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159696656100\"\n      },\n      {\n        \"@id\": \"_:g70159705494440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1refbnode1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697870180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1refbnode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802351880\"\n      },\n      {\n        \"@id\": \"_:g70159688397400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0.0] } on { <s> <p1> .0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DECIMAL_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708332460\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764681760\"\n      },\n      {\n        \"@id\": \"_:g70159801521380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0.0] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DECIMAL_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729694960\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802752120\"\n      },\n      {\n        \"@id\": \"_:g70159770705320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0.0] } on { <s> <p1> 0.0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DECIMAL_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730115940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DECIMAL_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566524420\"\n      },\n      {\n        \"@id\": \"_:g70159753793260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0E0] } on { <s> <p1> 0e0.0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLE_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707202100\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565966240\"\n      },\n      {\n        \"@id\": \"_:g70159695812060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> [0E0] } on { <s> <p1> 0E0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLE_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707975640\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DOUBLE_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754347460\"\n      },\n      {\n        \"@id\": \"_:g70159803566560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0e0] } on { <s> <p1> 0e0.0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLElowercase_0_0e0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696590080\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568231220\"\n      },\n      {\n        \"@id\": \"_:g70159777781140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0e0] } on { <s> <p1> 0E0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLElowercase_fail-0E0\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705477760\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812745340\"\n      },\n      {\n        \"@id\": \"_:g70159777143920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0e0] } on { <s> <p1> 0e0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1DOUBLElowercase_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704669740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DOUBLElowercase_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706003700\"\n      },\n      {\n        \"@id\": \"_:g70159762674640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0] } on { <s> <p1> 00 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1INTEGER_00\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730482900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558986440\"\n      },\n      {\n        \"@id\": \"_:g70159777324200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1INTEGER_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730858800\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750731880\"\n      },\n      {\n        \"@id\": \"_:g70159781539880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [0] } on { <s> <p1> 0 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1INTEGER_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697918080\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1INTEGER_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556251580\"\n      },\n      {\n        \"@id\": \"_:g70159567084260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'a'^^my:bloodType }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFDatatype_LaDTbloodType\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698503240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555120540\"\n      },\n      {\n        \"@id\": \"_:g70159735163620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFDatatype_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699196720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555812400\"\n      },\n      {\n        \"@id\": \"_:g70159742518740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab'^^my:bloodType999 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFDatatype_LabDTbloodType999\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698847300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159783685200\"\n      },\n      {\n        \"@id\": \"_:g70159559512160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab'^^my:bloodType }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFDatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699574220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFDatatype_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782115360\"\n      },\n      {\n        \"@id\": \"_:g70159560379100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p0> . | <p1> [<o1>], <p2> .? } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1One_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#seeAlso\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n      },\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745388300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1One_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560837260\"\n      },\n      {\n        \"@id\": \"_:g70159556051240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p0> . | <p1> [<o1>], <p2> .? } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1One_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745091280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1One_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558051100\"\n      },\n      {\n        \"@id\": \"_:g70159753911880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> [<o1>] } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#seeAlso\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n      },\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751971980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568372420\"\n      },\n      {\n        \"@id\": \"_:g70159690852120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> [<o1>] } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751680920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159553629780\"\n      },\n      {\n        \"@id\": \"_:g70159779299600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p2> { <p1> [<o1>] } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1p2_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746008360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779972440\"\n      },\n      {\n        \"@id\": \"_:g70159768098660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p2> { <p1> [<o1>] } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREFExtra1p2_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#seeAlso\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n      },\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750501280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1p2_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753008400\"\n      },\n      {\n        \"@id\": \"_:g70159555173440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREF_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698927820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREF_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159746106340\"\n      },\n      {\n        \"@id\": \"_:g70159567948680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1>, <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREF_v1v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698241900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689703740\"\n      },\n      {\n        \"@id\": \"_:g70159810026460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1IRIREF_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698556120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777749620\"\n      },\n      {\n        \"@id\": \"_:g70159752713740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'a'@en-fr }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG_LaLTen-fr\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699916980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811283160\"\n      },\n      {\n        \"@id\": \"_:g70159768928940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG_Lab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734494940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689365260\"\n      },\n      {\n        \"@id\": \"_:g70159751305200\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG_LabLTen\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734169000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560507880\"\n      },\n      {\n        \"@id\": \"_:g70159734560780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en-fr-jura }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG_LabLTen-fr-jura\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733836720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764864880\"\n      },\n      {\n        \"@id\": \"_:g70159566724620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en-fr }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1LANGTAG_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696161700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1LANGTAG_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733577960\"\n      },\n      {\n        \"@id\": \"_:g70159691151700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731101920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1dotMinusiri3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560348880\"\n      },\n      {\n        \"@id\": \"_:g70159566525160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734624040\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554975460\"\n      },\n      {\n        \"@id\": \"_:g70159692704820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734098700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801110140\"\n      },\n      {\n        \"@id\": \"_:g70159555235380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s> <p1> <v3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159700010640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566266160\"\n      },\n      {\n        \"@id\": \"_:g70159734841240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730694700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1dotMinusiriStem3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801991380\"\n      },\n      {\n        \"@id\": \"_:g70159691276900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730038220\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159742142880\"\n      },\n      {\n        \"@id\": \"_:g70159742178120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707333540\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804680040\"\n      },\n      {\n        \"@id\": \"_:g70159560890780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729445340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688224460\"\n      },\n      {\n        \"@id\": \"_:g70159802581160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1dotMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706131880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758825620\"\n      },\n      {\n        \"@id\": \"_:g70159763165340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [false] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1false_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729512300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782475800\"\n      },\n      {\n        \"@id\": \"_:g70159567621680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [false] } on { <s> <p1> true }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1false_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730344280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1false_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767820340\"\n      },\n      {\n        \"@id\": \"_:g70159783771580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [false] } on { <s> <p1> false }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1false_true\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729905380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811612440\"\n      },\n      {\n        \"@id\": \"_:g70159779142140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753416800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797261780\"\n      },\n      {\n        \"@id\": \"_:g70159810385460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_passIv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752188420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv1a.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804630220\"\n      },\n      {\n        \"@id\": \"_:g70159780850040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v4> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753156320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv4.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809283140\"\n      },\n      {\n        \"@id\": \"_:g70159783654040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s1> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752894980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735543140\"\n      },\n      {\n        \"@id\": \"_:g70159761950640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s1> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752662320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559705360\"\n      },\n      {\n        \"@id\": \"_:g70159770288860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752429780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736850640\"\n      },\n      {\n        \"@id\": \"_:g70159697310260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_passIv\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751928320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiriStem3_passIv.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566195380\"\n      },\n      {\n        \"@id\": \"_:g70159695614220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v4> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_passIv4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751667060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiriStem3_passIv4.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567918080\"\n      },\n      {\n        \"@id\": \"_:g70159691512600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751405320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781264840\"\n      },\n      {\n        \"@id\": \"_:g70159554398380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_v1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750698380\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762120340\"\n      },\n      {\n        \"@id\": \"_:g70159750480260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751172240\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159565987360\"\n      },\n      {\n        \"@id\": \"_:g70159689216860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStemMinusiriStem3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750938980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159777694640\"\n      },\n      {\n        \"@id\": \"_:g70159768519080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>~] } on { <s1> <p1> <> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStem_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696552820\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560917240\"\n      },\n      {\n        \"@id\": \"_:g70159730217540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>~] } on { <s> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStem_passv1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706391920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStem_passv1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560100080\"\n      },\n      {\n        \"@id\": \"_:g70159734708740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [<v1>~] } on { <s> <p1> <v1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1iriStem_passv1a\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705408360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStem_passv1a.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767004040\"\n      },\n      {\n        \"@id\": \"_:g70159695663920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1refvsMinusiri3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699490960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1refvsMinusiri3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159779599780\"\n      },\n      {\n        \"@id\": \"_:g70159811346500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <v1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1refvsMinusiri3_v1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698946920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812696360\"\n      },\n      {\n        \"@id\": \"_:g70159690702920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <v2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1refvsMinusiri3_v2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698455020\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770491500\"\n      },\n      {\n        \"@id\": \"_:g70159554921240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s> <p1> <v3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1refvsMinusiri3_v3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697933520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567438560\"\n      },\n      {\n        \"@id\": \"_:g70159705608800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [true] } on { <s> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1true_ab\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730739920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745535620\"\n      },\n      {\n        \"@id\": \"_:g70159778810580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [true] } on { <s> <p1> false }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1true_false\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697798060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767422860\"\n      },\n      {\n        \"@id\": \"_:g70159770819780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> [true] } on { <s> <p1> true }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1true_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698163800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1true_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159753364160\"\n      },\n      {\n        \"@id\": \"_:g70159752138640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1AND1Ref3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731823280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782900220\"\n      },\n      {\n        \"@id\": \"_:g70159734734940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ababab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1AND1Ref3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731590280\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735510720\"\n      },\n      {\n        \"@id\": \"_:g70159801600140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'baba' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1AND1Ref3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731349640\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734494440\"\n      },\n      {\n        \"@id\": \"_:g70159762375300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1AND1Ref3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732084560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1AND1Ref3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810889680\"\n      },\n      {\n        \"@id\": \"_:g70159561121500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742636960\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159733020040\"\n      },\n      {\n        \"@id\": \"_:g70159556349680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abc' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743130840\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812794320\"\n      },\n      {\n        \"@id\": \"_:g70159568297760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abcdef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742883680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758869020\"\n      },\n      {\n        \"@id\": \"_:g70159566624620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abcd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743949820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699279340\"\n      },\n      {\n        \"@id\": \"_:g70159560481940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743681820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159693727280\"\n      },\n      {\n        \"@id\": \"_:g70159566345540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ababab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743406120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561097320\"\n      },\n      {\n        \"@id\": \"_:g70159779268580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733165120\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690726480\"\n      },\n      {\n        \"@id\": \"_:g70159553601060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abcd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732661600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554545920\"\n      },\n      {\n        \"@id\": \"_:g70159767821740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'cd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732917060\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566671480\"\n      },\n      {\n        \"@id\": \"_:g70159736790220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abcdef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_pass-vc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742389620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159767963720\"\n      },\n      {\n        \"@id\": \"_:g70159556791440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ababab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742113780\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc1vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555612700\"\n      },\n      {\n        \"@id\": \"_:g70159778087220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733441020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc2vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735133580\"\n      },\n      {\n        \"@id\": \"_:g70159556020440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752125720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159761279900\"\n      },\n      {\n        \"@id\": \"_:g70159733870400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751878560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797441420\"\n      },\n      {\n        \"@id\": \"_:g70159554644080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'abcdef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751059180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc1vc2vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801060480\"\n      },\n      {\n        \"@id\": \"_:g70159778873760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'cd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751610700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688492800\"\n      },\n      {\n        \"@id\": \"_:g70159567063220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExpr1OR1OR1Ref3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751335400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159691119440\"\n      },\n      {\n        \"@id\": \"_:g70159560429260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698916440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159763245780\"\n      },\n      {\n        \"@id\": \"_:g70159559203420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'ababab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698423260\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159754267420\"\n      },\n      {\n        \"@id\": \"_:g70159689790560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'baba' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697901920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768391960\"\n      },\n      {\n        \"@id\": \"_:g70159809791460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699470940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprAND3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159750979440\"\n      },\n      {\n        \"@id\": \"_:g70159556776500\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745243520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159765053840\"\n      },\n      {\n        \"@id\": \"_:g70159804207080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745010280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558122020\"\n      },\n      {\n        \"@id\": \"_:g70159780221940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'abcdef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744225320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvr1vr2vr3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566264340\"\n      },\n      {\n        \"@id\": \"_:g70159561038740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'cd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744748940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736150580\"\n      },\n      {\n        \"@id\": \"_:g70159553413360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'ef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744486960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159781966400\"\n      },\n      {\n        \"@id\": \"_:g70159558170540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefAND3_failvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693625700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556320720\"\n      },\n      {\n        \"@id\": \"_:g70159781359300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ababab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefAND3_failvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734103940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804502440\"\n      },\n      {\n        \"@id\": \"_:g70159781571720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'baba' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefAND3_failvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699992760\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159797472120\"\n      },\n      {\n        \"@id\": \"_:g70159764684640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefAND3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731108340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefAND3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752124460\"\n      },\n      {\n        \"@id\": \"_:g70159768459780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = LITERAL MINLENGTH 5 <S1> { <p1> $<vc1> } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefIRIREF1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743178940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554615460\"\n      },\n      {\n        \"@id\": \"_:g70159750613100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = LITERAL MINLENGTH 5 <S1> { <p1> $<vc1> } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefIRIREF1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742947220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefIRIREF1_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159768881640\"\n      },\n      {\n        \"@id\": \"_:g70159694699900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'a' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750791520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159690214720\"\n      },\n      {\n        \"@id\": \"_:g70159558199540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3_passvc1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750535740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734964660\"\n      },\n      {\n        \"@id\": \"_:g70159735671920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'abcdef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3_passvc1vc2vc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745505660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc1vc2vc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810152300\"\n      },\n      {\n        \"@id\": \"_:g70159796657240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'cd' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3_passvc2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159746057720\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561244960\"\n      },\n      {\n        \"@id\": \"_:g70159560400140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ef' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefOR3_passvc3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745781580\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567292420\"\n      },\n      {\n        \"@id\": \"_:g70159753449720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$_:vc1 = LITERAL MINLENGTH 5 <S1> { <p1> $_:vc1 } on { <s1> <p1> \\\"abcd\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefbnode1_fail-lit-short\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742686000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159746170600\"\n      },\n      {\n        \"@id\": \"_:g70159811008280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"$_:vc1 = LITERAL MINLENGTH 5 <S1> { <p1> $_:vc1 } on { <s1> <p1> \\\"abcde\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vExprRefbnode1_pass-lit-equal\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742454120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefbnode1_pass-lit-equal.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159568281240\"\n      },\n      {\n        \"@id\": \"_:g70159763065380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> minlength 4 } AND { <p1> maxlength 5 } AND { <p1> pattern '(ab)+' } on { <s1> <p1> 'abab' }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val1vShapeANDRef3_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159693344900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vShapeANDRef3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndShapeShapeession\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159764551020\"\n      },\n      {\n        \"@id\": \"_:g70159554320660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>] } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val2IRIREFExtra1_fail-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751397720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778565980\"\n      },\n      {\n        \"@id\": \"_:g70159811675480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>] } on { <s> <p1> <o1>, _:o2 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val2IRIREFExtra1_pass-iri-bnode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750845040\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val2IRIREFExtra1_bnode_Is1_Ip1_Io1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736280260\"\n      },\n      {\n        \"@id\": \"_:g70159695366600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>]+ } on { <s> <p1> <o1>, <o2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"1val2IRIREFPlusExtra1_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751137360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val2IRIREFPlusExtra1_Is1_Ip1_Io1,Io2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556219800\"\n      },\n      {\n        \"@id\": \"_:g70159730594860\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> ., &<S2> } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" ; <p2> \\\"Y\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2EachInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731575460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2EachInclude1-after_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758967640\"\n      },\n      {\n        \"@id\": \"_:g70159691065160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { &<S2>, <p1> . } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" ; <p2> \\\"Y\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2EachInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731858960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2EachInclude1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566378900\"\n      },\n      {\n        \"@id\": \"_:g70159557953260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> . | &<S2> } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2OneInclude1-after_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706721120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2OneInclude1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802811240\"\n      },\n      {\n        \"@id\": \"_:g70159553925220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { &<S2> | <p1> . } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2OneInclude1_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731284940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2OneInclude1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159744796580\"\n      },\n      {\n        \"@id\": \"_:g70159559295560\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> ., <p2> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"2dot_fail-empty-err\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742224160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2dot_missing1.err\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ErrorReport\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555905180\"\n      },\n      {\n        \"@id\": \"_:g70159555284100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> ., <p2> @<S2>? } <S2> { <p3> @<S3> } <S3> { <p4> @<S1> } <S4> { <p5> . } on { <n1> <p1> \\\"X\\\" ; <p2> <n2> . <n2> <p3> <n3> . <n3> <p4> <n1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3circularRef1_pass-closed\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729689200\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-closed.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803370140\"\n      },\n      {\n        \"@id\": \"_:g70159768245100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> ., <p2> @<S2>? } <S2> { <p3> @<S3> } <S3> { <p4> @<S1> } <S4> { <p5> . } on { <n1> <p1> \\\"X\\\" ; <p2> <n2> . <n2> <p3> <n3> . <n3> <p4> <n5> . <n5> <p1> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3circularRef1_pass-open\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730100960\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-open.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766594760\"\n      },\n      {\n        \"@id\": \"_:g70159559821640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> EXTRA <p2> EXTRA <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdot3Extra_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743949220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559038800\"\n      },\n      {\n        \"@id\": \"_:g70159691245460\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> EXTRA <p2> EXTRA <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdot3Extra_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743058460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735771960\"\n      },\n      {\n        \"@id\": \"_:g70159731427640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX ex: <http://a.example/> <S> EXTRA ex:p1 ex:p2 ex:p3 { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3NLex_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743652180\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159705348100\"\n      },\n      {\n        \"@id\": \"_:g70159812675580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"PREFIX ex: <http://a.example/> <S> EXTRA ex:p1 ex:p2 ex:p3 { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3NLex_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742753760\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810237460\"\n      },\n      {\n        \"@id\": \"_:g70159731310620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> <p2> <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3_pass-iri1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744254220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566016400\"\n      },\n      {\n        \"@id\": \"_:g70159777482880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> EXTRA <p1> <p2> <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"3groupdotExtra3_pass-iri2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743354980\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159776536200\"\n      },\n      {\n        \"@id\": \"_:g70159736848960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> IRI PATTERN '^https?://' { <p1> <dt1> ; <p2> BNODE { <p3> LITERAL ; <p4> IRI PATTERN '^https://' @<S1>? } AND CLOSED { <p3> . ; <p4> . } } on { <n1> <p1> 'ab'^^<dt1> ; <p2> [  <p3> 'ab' ; <p4> ex:n1 ; <p5> 5 ] }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752285920\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803320460\"\n      },\n      {\n        \"@id\": \"_:g70159766697040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> IRI PATTERN '^https?://' { <p1> <dt1> ; <p2> BNODE { <p3> LITERAL ; <p4> IRI PATTERN '^https://' @<S1>? } AND CLOSED { <p3> . ; <p4> . } } on { <n1> <p1> 'ab'^^<dt1> ; <p2> [  <p3> 'ab' ; <p4> ex:n1 ] }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752562800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested2groupIRIRef_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812477560\"\n      },\n      {\n        \"@id\": \"_:g70159765318160\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3AND1_fail-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159704871940\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159752928960\"\n      },\n      {\n        \"@id\": \"_:g70159779661680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3AND1_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159753152880\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556482860\"\n      },\n      {\n        \"@id\": \"_:g70159764579920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3AND1_fail-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706049900\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778173760\"\n      },\n      {\n        \"@id\": \"_:g70159754528800\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3AND1_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159696093900\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3AND1_pass-Shape2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736589040\"\n      },\n      {\n        \"@id\": \"_:g70159558071960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707273980\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159688192720\"\n      },\n      {\n        \"@id\": \"_:g70159735821740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729892100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-empty.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159731052400\"\n      },\n      {\n        \"@id\": \"_:g70159553502700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708061120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-Shape2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159745781000\"\n      },\n      {\n        \"@id\": \"_:g70159690151300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dotX3_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730740400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-empty.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567230440\"\n      },\n      {\n        \"@id\": \"_:g70159802322360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dot_fail-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698098360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694549240\"\n      },\n      {\n        \"@id\": \"_:g70159769093060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dot_pass-NoShape1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699518940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-empty.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736769440\"\n      },\n      {\n        \"@id\": \"_:g70159706297620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dot_pass-Shape2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698817140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-Shape2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566166560\"\n      },\n      {\n        \"@id\": \"_:g70159695564100\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"NOT1dotOR2dot_pass-empty\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733823160\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-empty.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804305520\"\n      },\n      {\n        \"@id\": \"_:g70159555789640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S4> {:a $<P>{2}, :a $<T>{2}} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"P2T2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742878020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/P2T2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803842800\"\n      },\n      {\n        \"@id\": \"_:g70159691331320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744223120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PTstar.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780606260\"\n      },\n      {\n        \"@id\": \"_:g70159691394360\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PTstar-greedy-fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743877400\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159801933060\"\n      },\n      {\n        \"@id\": \"_:g70159777175280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PTstar-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743555500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar-greedy-rewrite.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567377380\"\n      },\n      {\n        \"@id\": \"_:g70159559316080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> {:a $<P>*, :a $<T>} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PstarT\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744913560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarT.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803270820\"\n      },\n      {\n        \"@id\": \"_:g70159768984320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> {:a $<P>*, :a $<T>} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PstarT-greedy\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744567280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarT.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159706680260\"\n      },\n      {\n        \"@id\": \"_:g70159760872300\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S3> {:a $<P>*, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"PstarTstar\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743224000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarTstar.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159770590720\"\n      },\n      {\n        \"@id\": \"_:g70159768125920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"bnode1dot_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708286440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769916060\"\n      },\n      {\n        \"@id\": \"_:g70159694251660\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"_:S1 { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"bnode1dot_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706674400\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/bnode1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812123240\"\n      },\n      {\n        \"@id\": \"_:g70159559543640\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { :a @<T1>*, (:a @<T2>+ | :b int), :b} <T1>{:b @<T3>} <T2>{:b @<T4>} <T3>{:c .} <T4>{:d .}\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"false-lead-excluding-value-shape\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751463600\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558369140\"\n      },\n      {\n        \"@id\": \"_:g70159555612780\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusdatatype_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733659720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#focusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566703460\"\n      },\n      {\n        \"@id\": \"_:g70159777600400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> <dt1> on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusdatatype_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734327320\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/focusdatatype_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159694598660\"\n      },\n      {\n        \"@id\": \"_:g70159804041040\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvs_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698832140\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560887960\"\n      },\n      {\n        \"@id\": \"_:g70159555497540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> [<v1> <v2> <v3>] on {  }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"focusvs_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699469800\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/focusvs_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159730330120\"\n      },\n      {\n        \"@id\": \"_:g70159734986940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { :a .*, (:a .+ | :a .), :a . } / { <x> :a 1, 3 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"nPlus1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751107940\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560921720\"\n      },\n      {\n        \"@id\": \"_:g70159803665400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { :a [1], (:a [2]+ | :a [3]), :a [4]* } / { <x> :a 1, 3 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"nPlus1-greedy-rewrite\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750463540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1-greedy-rewrite.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743571580\"\n      },\n      {\n        \"@id\": \"_:g70159704916380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { :a .*, (:a .+ | :a .), :a . } / { <x> :a 1, 3 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"nPlus1-greedy_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750761580\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159732547180\"\n      },\n      {\n        \"@id\": \"_:g70159811971700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744685340\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554072580\"\n      },\n      {\n        \"@id\": \"_:g70159811188980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p1 \\\"p1-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOneopen2dotcloseclose_pass_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745223820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p1.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560039940\"\n      },\n      {\n        \"@id\": \"_:g70159558695960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open1dotOneopen2dotcloseclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744959280\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159698223740\"\n      },\n      {\n        \"@id\": \"_:g70159558052580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699767600\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743666540\"\n      },\n      {\n        \"@id\": \"_:g70159559678760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X4\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697934360\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809126060\"\n      },\n      {\n        \"@id\": \"_:g70159697566600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X2\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159699180740\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1X2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159766781540\"\n      },\n      {\n        \"@id\": \"_:g70159800769180\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159698586420\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1X3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689247660\"\n      },\n      {\n        \"@id\": \"_:g70159559285920\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730626480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736610360\"\n      },\n      {\n        \"@id\": \"_:g70159770652220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707483680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159566001860\"\n      },\n      {\n        \"@id\": \"_:g70159733496320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729887260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559934660\"\n      },\n      {\n        \"@id\": \"_:g70159690939420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard23_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708152620\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555413600\"\n      },\n      {\n        \"@id\": \"_:g70159750514540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_fail-p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732414560\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555413180\"\n      },\n      {\n        \"@id\": \"_:g70159698032680\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_fail-p1X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731885400\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159778142860\"\n      },\n      {\n        \"@id\": \"_:g70159745618140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X4\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_fail-p1X4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731627740\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159803892020\"\n      },\n      {\n        \"@id\": \"_:g70159797387380\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_fail-p1p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733922520\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556105560\"\n      },\n      {\n        \"@id\": \"_:g70159554467940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X2\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_pass-p1X2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732164660\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1X2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159736904800\"\n      },\n      {\n        \"@id\": \"_:g70159553334880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_pass-p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731378500\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1p2.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159555483560\"\n      },\n      {\n        \"@id\": \"_:g70159765076940\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_pass-p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159731132100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159689906900\"\n      },\n      {\n        \"@id\": \"_:g70159744390700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3Onedotclosecard2_pass-p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159734576020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567029680\"\n      },\n      {\n        \"@id\": \"_:g70159744634980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> ., <p2> ., <p3> . ) %<Test/>{ print(\\\"group semAct\\\") %} } / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotcloseCode1-p1p2p3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159750453440\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159750596820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotcloseCode1-p1p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159559099480\"\n      },\n      {\n        \"@id\": \"_:g70159776242880\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .; <p2> .; <p3> . ){2,3} // <annot1> \\\"1\\\" // <annot2> \\\"2\\\" // <annot3> \\\"3\\\" %<Test/>{ p(\\\"...1\\\") %} %<Test/>{ p(\\\"...2\\\") %} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" }X3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159743091320\"\n          },\n          {\n            \"@id\": \"_:g70159743031940\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743226700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotclosecard23Annot3Code2-p1p2p3X3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedGroup\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560744240\"\n      },\n      {\n        \"@id\": \"_:g70159753795540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .; <p2> .; <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" }X3\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open3groupdotclosecard23_pass-p1p2p3X3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705283540\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotclosecard23-p1p2p3X3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedGroup\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734051200\"\n      },\n      {\n        \"@id\": \"_:g70159555183280\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { ( <p1> .| <p2> .| <p3> .| <p4> . ){2,3} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" ; <p4> \\\"p4-n\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"open4Onedotclosecard23_fail-p1p2p3p4\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706316540\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809846220\"\n      },\n      {\n        \"@id\": \"_:g70159567887540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose_fail_p1\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743912680\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558623440\"\n      },\n      {\n        \"@id\": \"_:g70159802551720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743423780\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159557613660\"\n      },\n      {\n        \"@id\": \"_:g70159558460900\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose_fail_p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743668160\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811909400\"\n      },\n      {\n        \"@id\": \"_:g70159558231480\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744441480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/openopen1dotOne1dotclose1dotclose_pass_p1p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558625180\"\n      },\n      {\n        \"@id\": \"_:g70159554233720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744177340\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/openopen1dotOne1dotclose1dotclose_pass_p2p3.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159729543140\"\n      },\n      {\n        \"@id\": \"_:g70159559365320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> _:n2 . _:n2 <p1> <n1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_CyclicIRI_BNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159705724120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_CyclicIRI_BNode.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811134420\"\n      },\n      {\n        \"@id\": \"_:g70159566787140\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> <n2a> . <n2a> <p1> <n1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_CyclicIRI_IRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159706881100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_CyclicIRI_IRI.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556598000\"\n      },\n      {\n        \"@id\": \"_:g70159804108260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n2a> . <n2a> <p1> <n1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159697274320\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159554944260\"\n      },\n      {\n        \"@id\": \"_:g70159561525340\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> _:n2 . _:n2 <p1> _:n2 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_IntoReflexiveBNode\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159707792260\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_IntoReflexiveBNode.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159558298960\"\n      },\n      {\n        \"@id\": \"_:g70159694958260\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n2a> . <n2a> <p1> <n2a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_IntoReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159708316560\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_IntoReflexiveIRI.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159561346820\"\n      },\n      {\n        \"@id\": \"_:g70159781241400\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> <n1a> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_ReflexiveIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159730629680\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_ReflexiveIRI.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758810060\"\n      },\n      {\n        \"@id\": \"_:g70159776598060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"refBNodeORrefIRI_ReflexiveShortIRI\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159729936720\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782359380\"\n      },\n      {\n        \"@id\": \"_:g70159767622580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { ( :a ., :b . ){2,5}, :c . }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"repeated-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745583220\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159758787320\"\n      },\n      {\n        \"@id\": \"_:g70159698600820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> @<Sext> } <Sext> EXTERNAL + <S> { <p2> . } on { <s1> <p1> <n2> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExternRef_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159751779440\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734855560\"\n      },\n      {\n        \"@id\": \"_:g70159767918540\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { <p1> @<Sext> } <Sext> EXTERNAL + <S> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExternRef_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752142480\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/shapeExternRef_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159769294400\"\n      },\n      {\n        \"@id\": \"_:g70159800737600\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<Sext> EXTERNAL + <Sext> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExtern_fail\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752482180\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812498520\"\n      },\n      {\n        \"@id\": \"_:g70159766959980\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<Sext> EXTERNAL + <Sext> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"shapeExtern_pass\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159752846300\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/shapeExtern_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159560807940\"\n      },\n      {\n        \"@id\": \"_:g70159751465520\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"@@ simple-group\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"simple-group\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745244100\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159810057820\"\n      },\n      {\n        \"@id\": \"_:g70159560983960\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"<S> { ( :a ., :b . )?, :c . } on { <x> :c 1 }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"skipped\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745913920\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159811464180\"\n      },\n      {\n        \"@id\": \"_:g70159689492320\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{print('startAct')%} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159745828540\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745992000\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159809337300\"\n      },\n      {\n        \"@id\": \"_:g70159733326760\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{ fail('startAct') %} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1fail_abort\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159745030360\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745162700\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159782994740\"\n      },\n      {\n        \"@id\": \"_:g70159804828240\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{print('startAct')%} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1startRef_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159744647240\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744802060\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159567524140\"\n      },\n      {\n        \"@id\": \"_:g70159736870440\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{ fail('startAct') %} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode1startReffail_abort\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159744287960\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744419840\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159800930700\"\n      },\n      {\n        \"@id\": \"_:g70159780998740\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{print('startAct 1')%} %<Test>{print('startAct 2')%} %<Test>{print('startAct 3')%} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode3_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159743896860\"\n          },\n          {\n            \"@id\": \"_:g70159743845540\"\n          },\n          {\n            \"@id\": \"_:g70159743786940\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159744060700\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode3_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159692508460\"\n      },\n      {\n        \"@id\": \"_:g70159759005060\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>{print('startAct 1')%} %<Test>{ fail('startAct 2') %} %<Test>{print('startAct 3')%} <S> { <p1> . } on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startCode3fail_abort\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159743524300\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159734818360\"\n      },\n      {\n        \"@id\": \"_:g70159765469080\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start= { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startEqualSpaceInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732608120\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699847040\"\n      },\n      {\n        \"@id\": \"_:g70159744964580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start={ <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startInline_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732100000\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159802522740\"\n      },\n      {\n        \"@id\": \"_:g70159697078700\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start={ <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732858140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159735443280\"\n      },\n      {\n        \"@id\": \"_:g70159777812120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"%<Test>% <S> { <p1> . } + %<Test>{print(\\\"startAct\\\")%} on { <s1> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startNoCode1_pass\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#extensionResults\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"_:g70159745390680\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159745586140\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startNoCode1_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159780122660\"\n      },\n      {\n        \"@id\": \"_:g70159561146580\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start=<S> <S> { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefIRIREF_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733571860\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159804601860\"\n      },\n      {\n        \"@id\": \"_:g70159777961120\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start=<S> <S> { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefIRIREF_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742484820\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159762945500\"\n      },\n      {\n        \"@id\": \"_:g70159731706420\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start=<S> <S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefIRIREF_pass-others_lexicallyEarlier\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159742226020\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159556577800\"\n      },\n      {\n        \"@id\": \"_:g70159567864720\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start=_:S _S { <p1> . } on { <s> <p2> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefbnode_fail-missing\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733086480\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159699567860\"\n      },\n      {\n        \"@id\": \"_:g70159736758220\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start=_:S _:S { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startRefbnode_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159733344460\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/bnode1dot_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159743452540\"\n      },\n      {\n        \"@id\": \"_:g70159560628820\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\",\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"start= { <p1> . } on { <s> <p1> <o1> }\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#name\": [\n      {\n        \"@value\": \"startSpaceEqualInline_pass-noOthers\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#TestCriterion\",\n      \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n      \"http://www.w3.org/ns/earl#TestCase\"\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#action\": [\n      {\n        \"@id\": \"_:g70159732350360\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#result\": [\n      {\n        \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\"\n      }\n    ],\n    \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n      {\n        \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#status\": [\n      {\n        \"@id\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#proposed\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"_:g70159812646440\"\n      },\n      {\n        \"@id\": \"_:g70159751088620\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://www.npmjs.com/package/shex\",\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#TestSubject\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://github.com/shexSpec/shex.js\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"ShEx.js\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"JavaScript\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "example-files/shex-framed.jsonld",
    "content": "{\n  \"@context\": {\n    \"@vocab\": \"http://www.w3.org/ns/earl#\",\n    \"foaf:homepage\": {\n      \"@type\": \"@id\"\n    },\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"doap\": \"http://usefulinc.com/ns/doap#\",\n    \"earl\": \"http://www.w3.org/ns/earl#\",\n    \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"assertedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"assertions\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"bibRef\": {\n      \"@id\": \"dc:bibliographicCitation\"\n    },\n    \"created\": {\n      \"@id\": \"doap:created\",\n      \"@type\": \"xsd:date\"\n    },\n    \"description\": {\n      \"@id\": \"rdfs:comment\",\n      \"@language\": \"en\"\n    },\n    \"developer\": {\n      \"@id\": \"doap:developer\",\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"doapDesc\": {\n      \"@id\": \"doap:description\",\n      \"@language\": \"en\"\n    },\n    \"generatedBy\": {\n      \"@type\": \"@id\"\n    },\n    \"homepage\": {\n      \"@id\": \"doap:homepage\",\n      \"@type\": \"@id\"\n    },\n    \"language\": {\n      \"@id\": \"doap:programming-language\"\n    },\n    \"license\": {\n      \"@id\": \"doap:license\",\n      \"@type\": \"@id\"\n    },\n    \"mode\": {\n      \"@type\": \"@id\"\n    },\n    \"name\": {\n      \"@id\": \"doap:name\"\n    },\n    \"outcome\": {\n      \"@type\": \"@id\"\n    },\n    \"release\": {\n      \"@id\": \"doap:release\",\n      \"@type\": \"@id\"\n    },\n    \"revision\": {\n      \"@id\": \"doap:revision\"\n    },\n    \"shortdesc\": {\n      \"@id\": \"doap:shortdesc\",\n      \"@language\": \"en\"\n    },\n    \"subject\": {\n      \"@type\": \"@id\"\n    },\n    \"test\": {\n      \"@type\": \"@id\"\n    },\n    \"testAction\": {\n      \"@id\": \"mf:action\",\n      \"@type\": \"@id\"\n    },\n    \"testResult\": {\n      \"@id\": \"mf:result\",\n      \"@type\": \"@id\"\n    },\n    \"title\": {\n      \"@id\": \"mf:name\"\n    },\n    \"entries\": {\n      \"@id\": \"mf:entries\",\n      \"@type\": \"@id\",\n      \"@container\": \"@list\"\n    },\n    \"testSubjects\": {\n      \"@type\": \"@id\",\n      \"@container\": \"@set\"\n    },\n    \"xsd\": {\n      \"@id\": \"http://www.w3.org/2001/XMLSchema#\"\n    }\n  },\n  \"@graph\": [\n    {\n      \"@id\": \"\",\n      \"@type\": [\n        \"doap:Project\",\n        \"Software\"\n      ],\n      \"@requireAll\": null,\n      \"assertions\": [\n        \"shex.js-earl.ttl\",\n        \"rdf.rb-earl.ttl\"\n      ],\n      \"bibRef\": \"[[ShEx]]\",\n      \"entries\": [\n        {\n          \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest\",\n          \"@type\": [\n            \"Report\",\n            \"mf:Manifest\"\n          ],\n          \"entries\": [\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1342\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1341\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n                },\n                {\n                  \"@id\": \"_:b5364\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5363\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> {  } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1686\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/dummy\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_dummy.val\",\n              \"title\": \"0_empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2077\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2072\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n                },\n                {\n                  \"@id\": \"_:b3658\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3656\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> {  } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1298\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass.val\",\n              \"title\": \"0_other\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1003\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1001\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n                },\n                {\n                  \"@id\": \"_:b2017\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2013\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> {  } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2605\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass.val\",\n              \"title\": \"0_otherbnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5500\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5499\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n                },\n                {\n                  \"@id\": \"_:b1414\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1413\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2580\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dot_fail-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3020\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3011\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n                },\n                {\n                  \"@id\": \"_:b3571\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3569\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2555\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dot-base_fail-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2674\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2672\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b1502\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1501\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2530\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dot_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5245\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5244\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b3751\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3748\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1934\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dot-base_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1857\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1853\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b3737\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3731\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1906\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dot_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5540\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5538\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b2311\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2304\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1880\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dot-base_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3321\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3317\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b326\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b323\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX : <http://a.example/> <S1> { :p1 ., } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1855\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotSemi_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4507\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4506\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b2487\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2484\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1 . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1823\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotLNex_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2986\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2983\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b3840\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3839\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX S1: <http://a.example/S1> PREFIX p1: <http://a.example/p1> S1: { p1: . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1795\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotNS2_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2753\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2751\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b1253\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1251\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX S1: <http://a.example/S1> PREFIX p1: <http://a.example/p1> S1: { p1:/*comment*/ . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1765\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotNS2Comment_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4725\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4724\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b2685\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2683\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1/*comment*/ . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1737\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotLNexComment_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2667\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2664\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b661\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b658\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX : <http://a.example/> :S1 { :p1 . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2291\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotLNdefault_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4608\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4607\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b1241\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1239\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX : <http://a.example/p1> <S1> { : . } on { <s> :p1 <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2264\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotNSdefault_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5180\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5179\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b1197\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1195\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX ex: <http://a.example/> ex:S1 { ex:p1- . } on { <s> <p1-> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2234\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1HYPHEN_MINUS_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1HYPHEN_MINUSdot_pass.val\",\n              \"title\": \"1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1286\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1284\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n                },\n                {\n                  \"@id\": \"_:b341\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b338\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2206\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dot_pass-others_lexicallyEarlier\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b228\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b226\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n                },\n                {\n                  \"@id\": \"_:b3223\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3220\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2181\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dot_pass-others_lexicallyLater\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4228\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4226\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b1608\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1607\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2151\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"_:b2059\"\n                }\n              },\n              \"title\": \"bnode1dot_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5460\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5459\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n                },\n                {\n                  \"@id\": \"_:b610\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b607\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"_:S1 { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2058\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"_:b2059\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/bnode1dot_pass.val\",\n              \"title\": \"bnode1dot_pass-others_lexicallyEarlier\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4195\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4193\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n                },\n                {\n                  \"@id\": \"_:b5182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5181\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2105\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1inversedot_fail-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4861\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4860\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b198\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b196\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2052\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1inversedot_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4839\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4838\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b3067\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3062\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <sr> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2020\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\",\n              \"title\": \"1inversedot_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1568\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1569\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n                },\n                {\n                  \"@id\": \"_:b3494\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3488\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1982\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\",\n              \"title\": \"1inversedot_pass-over_lexicallyEarlier\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1474\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1473\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n                },\n                {\n                  \"@id\": \"_:b1207\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1205\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1939\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedot_pass.val\",\n              \"title\": \"1inversedot_pass-over_lexicallyLater\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1382\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1381\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n                },\n                {\n                  \"@id\": \"_:b3691\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3684\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TriplePattern\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { a . } on { <s> a <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1682\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_a_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1Adot_pass.val\",\n              \"title\": \"1Adot_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3046\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3037\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n                },\n                {\n                  \"@id\": \"_:b63\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b60\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2602\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iri_pass-iri.val\",\n              \"title\": \"1iri_pass-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b375\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b373\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n                },\n                {\n                  \"@id\": \"_:b2342\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2336\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI } on { <s1> <p1> _:ab }\",\n              \"testAction\": {\n                \"@id\": \"_:b2571\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iri_fail-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4837\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4836\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n                },\n                {\n                  \"@id\": \"_:b5542\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5541\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2547\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iri_fail-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5106\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5105\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n                },\n                {\n                  \"@id\": \"_:b3728\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3725\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2521\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnode_fail-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b857\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b855\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n                },\n                {\n                  \"@id\": \"_:b669\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b667\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE } on { <s1> <p1> _:ab }\",\n              \"testAction\": {\n                \"@id\": \"_:b1922\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnode_pass-bnode.val\",\n              \"title\": \"1bnode_pass-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3920\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3918\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n                },\n                {\n                  \"@id\": \"_:b5078\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5077\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1895\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnode_fail-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b648\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b646\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n                },\n                {\n                  \"@id\": \"_:b2783\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2781\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1865\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literal_fail-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1689\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1690\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n                },\n                {\n                  \"@id\": \"_:b2071\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2053\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL } on { <s1> <p1> _:ab }\",\n              \"testAction\": {\n                \"@id\": \"_:b1841\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literal_fail-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3915\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3913\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n                },\n                {\n                  \"@id\": \"_:b4094\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4088\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1809\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literal_pass-literal.val\",\n              \"title\": \"1literal_pass-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b408\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b406\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n                },\n                {\n                  \"@id\": \"_:b3769\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3767\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1780\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteral_pass-iri.val\",\n              \"title\": \"1nonliteral_pass-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4292\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4289\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n                },\n                {\n                  \"@id\": \"_:b901\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b898\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> NONLITERAL LENGTH 19 { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1722\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusnonLiteralLength-nonLiteralLength_fail-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1050\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b415\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n                },\n                {\n                  \"@id\": \"_:b562\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b561\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> NONLITERAL LENGTH 19 { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1754\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusnonLiteralLength-nonLiteralLength_pass.val\",\n              \"title\": \"1focusnonLiteralLength-nonLiteralLength_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1590\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1589\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n                },\n                {\n                  \"@id\": \"_:b127\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b126\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> _:ab }\",\n              \"testAction\": {\n                \"@id\": \"_:b2278\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteral_pass-bnode.val\",\n              \"title\": \"1nonliteral_pass-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5002\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5001\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n                },\n                {\n                  \"@id\": \"_:b4737\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4736\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2251\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteral_fail-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2941\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2938\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n                },\n                {\n                  \"@id\": \"_:b204\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b201\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> } on <s> in { <s> <p2> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2225\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatype_missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4179\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4177\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n                },\n                {\n                  \"@id\": \"_:b2176\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2171\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> } on <s> in { <s1> <p1> <dt1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2194\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Idt1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatype_nonLiteral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b621\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b619\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n                },\n                {\n                  \"@id\": \"_:b3945\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3942\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> } on <s> in { <s1> <p1> 'ab'@en }\",\n              \"testAction\": {\n                \"@id\": \"_:b2174\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatype_langString\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1055\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1053\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n                },\n                {\n                  \"@id\": \"_:b892\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b890\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> } on <s> in { <s> <p1> 1.234 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2147\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatype_wrongDatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4681\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4680\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n                },\n                {\n                  \"@id\": \"_:b454\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b453\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> } on <s> in { <s> <p1> 'ab'^^<dt1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2029\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_dt1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatype_pass.val\",\n              \"title\": \"1datatype_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b674\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b672\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n                },\n                {\n                  \"@id\": \"_:b2314\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2310\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> rdf:langString } on <s> in { <s> <p1> 'ab'@en }\",\n              \"testAction\": {\n                \"@id\": \"_:b2090\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatypelangString_pass.val\",\n              \"title\": \"1datatypelangString_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2729\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2726\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n                },\n                {\n                  \"@id\": \"_:b588\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b587\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2} } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2035\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card2_fail0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4174\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4171\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n                },\n                {\n                  \"@id\": \"_:b1156\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1154\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2} } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2003\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card2_fail1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b963\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b960\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n                },\n                {\n                  \"@id\": \"_:b1336\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1335\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2} } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1962\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2_pass2.val\",\n              \"title\": \"1card2_pass2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b438\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b437\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n                },\n                {\n                  \"@id\": \"_:b3258\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3252\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2} } on { <s> <p1> 'a','b','c' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1688\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card2_fail3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1504\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1503\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n                },\n                {\n                  \"@id\": \"_:b3401\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3397\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1559\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card25_fail0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4217\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4215\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n                },\n                {\n                  \"@id\": \"_:b3267\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3260\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2591\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card25_fail1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1346\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1345\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n                },\n                {\n                  \"@id\": \"_:b236\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b233\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2563\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass2.val\",\n              \"title\": \"1card25_pass2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3771\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3766\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n                },\n                {\n                  \"@id\": \"_:b1021\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1018\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2533\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass3.val\",\n              \"title\": \"1card25_pass3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4587\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4586\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n                },\n                {\n                  \"@id\": \"_:b2958\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2955\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1931\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass4.val\",\n              \"title\": \"1card25_pass4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2790\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2788\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n                },\n                {\n                  \"@id\": \"_:b700\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b697\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d','e' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1900\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card25_pass5.val\",\n              \"title\": \"1card25_pass5\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2209\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2201\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n                },\n                {\n                  \"@id\": \"_:b665\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b663\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,5} } on { <s> <p1> 'a','b','c','d','e','f' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1870\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card25_fail6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5120\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5119\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n                },\n                {\n                  \"@id\": \"_:b3887\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3888\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,*} } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1842\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card2Star_fail0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3364\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3358\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n                },\n                {\n                  \"@id\": \"_:b1175\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1173\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1807\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1card2Star_fail1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1466\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1465\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n                },\n                {\n                  \"@id\": \"_:b3763\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3759\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1782\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass2.val\",\n              \"title\": \"1card2Star_pass2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4157\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4155\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n                },\n                {\n                  \"@id\": \"_:b4877\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4876\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b','c' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1752\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass3.val\",\n              \"title\": \"1card2Star_pass3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3671\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3668\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n                },\n                {\n                  \"@id\": \"_:b1446\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1445\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .{2,*} } on { <s> <p1> 'a','b','c','d','e','f' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1721\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1card2Star_pass6.val\",\n              \"title\": \"1card2Star_pass6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4135\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4133\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n                },\n                {\n                  \"@id\": \"_:b5410\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5409\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .? } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2274\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardOpt_pass0.val\",\n              \"title\": \"1cardOpt_pass0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b540\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b538\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n                },\n                {\n                  \"@id\": \"_:b1016\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1014\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .? } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2244\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardOpt_pass1.val\",\n              \"title\": \"1cardOpt_pass1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3962\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3959\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n                },\n                {\n                  \"@id\": \"_:b1218\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1217\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .? } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2212\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1cardOpt_fail2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5046\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5045\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n                },\n                {\n                  \"@id\": \"_:b3997\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3936\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .? } on { <s> <p1> 'a','b','c','d','e','f' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2185\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1cardOpt_pass6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b623\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b620\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n                },\n                {\n                  \"@id\": \"_:b3986\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3983\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .+ } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2159\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1cardPlus_fail0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1308\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1307\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n                },\n                {\n                  \"@id\": \"_:b5478\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5477\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .+ } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2131\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass1.val\",\n              \"title\": \"1cardPlus_pass1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b742\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b740\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n                },\n                {\n                  \"@id\": \"_:b2925\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2924\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .+ } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2107\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass2.val\",\n              \"title\": \"1cardPlus_pass2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b520\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b519\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n                },\n                {\n                  \"@id\": \"_:b1604\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1603\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .+ } on { <s> <p1> 'a','b','c','d','e','f' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2044\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardPlus_pass6.val\",\n              \"title\": \"1cardPlus_pass6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1164\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1161\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n                },\n                {\n                  \"@id\": \"_:b4791\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4790\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .* } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2007\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass0.val\",\n              \"title\": \"1cardStar_pass0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5546\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5545\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n                },\n                {\n                  \"@id\": \"_:b956\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b954\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .* } on { <s> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1957\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass1.val\",\n              \"title\": \"1cardStar_pass1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3604\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3601\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n                },\n                {\n                  \"@id\": \"_:b3339\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3335\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .* } on { <s> <p1> 'a','b' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1575\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass2.val\",\n              \"title\": \"1cardStar_pass2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3927\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3924\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n                },\n                {\n                  \"@id\": \"_:b3281\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3276\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .* } on { <s> <p1> 'a','b','c','d','e','f' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2607\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Lb,Lc,Ld,Le,Lf.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1cardStar_pass6.val\",\n              \"title\": \"1cardStar_pass6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b609\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b608\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n                },\n                {\n                  \"@id\": \"_:b4693\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4692\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NonDotCardinality\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> LITERAL+ } on { <s> <p1> 'a', <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2577\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPlus_Is1_Ip1_La,Io1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5520\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5519\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n                },\n                {\n                  \"@id\": \"_:b640\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b637\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n2> <p2> \\\"X\\\" . <n1> <p1> <n2> } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2549\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_LX.In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\",\n              \"title\": \"1dotRef1_referent,referrer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b691\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b689\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n                },\n                {\n                  \"@id\": \"_:b5140\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5139\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2516\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\",\n              \"title\": \"1dotRef1_referrer,referent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2719\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2717\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n                },\n                {\n                  \"@id\": \"_:b4144\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4141\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2> } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1910\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRef1_missingReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4142\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4140\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n                },\n                {\n                  \"@id\": \"_:b4268\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4266\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n1> . <n1> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1885\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In1_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRef1_selfReference.val\",\n              \"title\": \"1dotRef1_selfReference\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1458\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1457\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n                },\n                {\n                  \"@id\": \"_:b352\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b350\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n1> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1851\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRef1_missingSelfReference\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1462\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1461\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n                },\n                {\n                  \"@id\": \"_:b3095\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3090\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1816\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRef1_overReferrer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2177\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n                },\n                {\n                  \"@id\": \"_:b4653\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4652\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" . <n3> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1791\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.In3_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRef1_overReferrer,overReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4610\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4609\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n                },\n                {\n                  \"@id\": \"_:b5178\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5177\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" . <n3> <p1> \\\"X\\\" } as <S1> in <S1> { <p1> @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b1759\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.In3_Ip1_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In2_Ip2_In1@In1_Ip1_LX.val\",\n              \"title\": \"1dotRef1_overMatchesReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5050\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5049\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b1332\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1331\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1726\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1refbnode1_pass.val\",\n              \"title\": \"1refbnode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4074\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4073\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n                },\n                {\n                  \"@id\": \"_:b3956\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3954\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p2> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2277\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1refbnode1_fail-g1-arc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1687\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1573\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n                },\n                {\n                  \"@id\": \"_:b1992\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1988\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @_:S2 } _:S2 { <p2> . } on { <n1> <p1> <n2> . <n2> <p1> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2250\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip1_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1refbnode1_fail-g2-arc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4025\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4023\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n                },\n                {\n                  \"@id\": \"_:b647\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b645\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> ., <p2> @<S2>? } <S2> { <p3> @<S3> } <S3> { <p4> @<S1> } <S4> { <p5> . } on { <n1> <p1> \\\"X\\\" ; <p2> <n2> . <n2> <p3> <n3> . <n3> <p4> <n5> . <n5> <p1> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2219\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-open.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-open.val\",\n              \"title\": \"3circularRef1_pass-open\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5130\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5129\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n                },\n                {\n                  \"@id\": \"_:b4109\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4108\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> ., <p2> @<S2>? } <S2> { <p3> @<S3> } <S3> { <p4> @<S1> } <S4> { <p5> . } on { <n1> <p1> \\\"X\\\" ; <p2> <n2> . <n2> <p3> <n3> . <n3> <p4> <n1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2186\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-closed.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3circularRef1_pass-closed.val\",\n              \"title\": \"3circularRef1_pass-closed\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b985\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b983\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n                },\n                {\n                  \"@id\": \"_:b1963\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1954\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> IRI @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2150\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriRef1_pass-iri.val\",\n              \"title\": \"1iriRef1_pass-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4178\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4175\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n                },\n                {\n                  \"@id\": \"_:b5296\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5295\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> _:n1 . _:n1 <p2> \\\"X\\\" } as <S1> in <S1> { <p1> IRI @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2001\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriRef1_fail-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5114\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5113\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n                },\n                {\n                  \"@id\": \"_:b4657\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4656\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> BNODE @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2086\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeRef1_fail-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4411\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4410\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n                },\n                {\n                  \"@id\": \"_:b2433\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2429\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NodeKind\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n1> in { <n1> <p1> _:n1 . _:n1 <p2> \\\"X\\\" } as <S1> in <S1> { <p1> BNODE @<S2> } <S2> { <p2> . }\",\n              \"testAction\": {\n                \"@id\": \"_:b2030\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeRef1_pass-bnode.val\",\n              \"title\": \"1bnodeRef1_pass-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2289\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2286\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n                },\n                {\n                  \"@id\": \"_:b4893\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4892\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Datatype\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> <dt1> @<S> } on <s> in { <s> <p1> 'ab'^^<dt1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1987\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_dt1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeRef1_fail-datatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1470\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1469\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n                },\n                {\n                  \"@id\": \"_:b3105\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3099\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> <dt1> } on <s> in { <n1> <p1> <n1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1291\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeRef1_fail-reflexiveRef\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5508\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5507\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n                },\n                {\n                  \"@id\": \"_:b4078\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4075\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b1565\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In2.In2_Ip2_LX.val\",\n              \"title\": \"1dotInline1_referrer,referent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2760\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2758\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n                },\n                {\n                  \"@id\": \"_:b4485\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4484\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n2> } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b2593\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotInline1_missingReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4757\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4756\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n                },\n                {\n                  \"@id\": \"_:b89\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b88\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n1> . <n1> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b2562\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In1_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In1.In1_Ip2_LX.val\",\n              \"title\": \"1dotInline1_selfReference\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3452\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3449\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n                },\n                {\n                  \"@id\": \"_:b1422\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1421\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n1> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b2528\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotInline1_missingSelfReference\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1274\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1272\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n                },\n                {\n                  \"@id\": \"_:b4990\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4989\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b1926\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotInline1_overReferrer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b708\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b706\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n                },\n                {\n                  \"@id\": \"_:b4968\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4967\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> { <p2> . } } on { <n1> <p1> <n2>, <n3> . <n2> <p2> \\\"X\\\" . <n3> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1897\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip1_In3.In2_Ip2_LX.In3_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotInline1_overReferrer,overReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5286\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5285\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n                },\n                {\n                  \"@id\": \"_:b3149\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3145\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ShapeReference\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<n2> in { <n1> <p1> <n2> . <n2> <p2> \\\"X\\\" . <n3> <p1> \\\"X\\\" } as <S1> in <S1> { <p1> { <p2> . } }\",\n              \"testAction\": {\n                \"@id\": \"_:b1864\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.In3_Ip1_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotInline1_In1_Ip1_In2.In2_Ip2_LX.val\",\n              \"title\": \"1dotInline1_overMatchesReferent\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3290\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3286\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                },\n                {\n                  \"@id\": \"_:b1214\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1212\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1832\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREF_pass.val\",\n              \"title\": \"1val1IRIREF_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4473\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4472\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                },\n                {\n                  \"@id\": \"_:b3496\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3492\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1796\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREF_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1418\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1417\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n                },\n                {\n                  \"@id\": \"_:b5316\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5315\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1>, <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1763\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1,Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREF_v1v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b345\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b343\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n                },\n                {\n                  \"@id\": \"_:b1089\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1087\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0] } on { <s> <p1> 0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1731\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1INTEGER_pass.val\",\n              \"title\": \"1val1INTEGER_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b560\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b559\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n                },\n                {\n                  \"@id\": \"_:b4445\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4444\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0] } on { <s> <p1> 00 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2253\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT00.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1INTEGER_00\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3905\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3903\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n                },\n                {\n                  \"@id\": \"_:b4986\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4985\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:failed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0.0] } on { <s> <p1> .0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2157\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC_0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1DECIMAL_00\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1007\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1006\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n                },\n                {\n                  \"@id\": \"_:b3590\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3588\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0.0] } on { <s> <p1> 0.0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2221\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC0_0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DECIMAL_pass.val\",\n              \"title\": \"1val1DECIMAL_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5082\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5081\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n                },\n                {\n                  \"@id\": \"_:b4285\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4283\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0.0] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2187\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1DECIMAL_Lab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3324\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3319\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n                },\n                {\n                  \"@id\": \"_:b4707\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4706\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2281\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1INTEGER_Lab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3628\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3624\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n                },\n                {\n                  \"@id\": \"_:b5146\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5145\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> [0E0] } on { <s> <p1> 0E0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2128\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0E0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DOUBLE_pass.val\",\n              \"title\": \"1val1DOUBLE_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b925\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b923\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n                },\n                {\n                  \"@id\": \"_:b1670\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1669\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0E0] } on { <s> <p1> 0e0.0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2091\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0_0e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1DOUBLE_0_0e0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2023\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2019\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n                },\n                {\n                  \"@id\": \"_:b3853\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3851\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0e0] } on { <s> <p1> 0e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1942\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0e0lowercase.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1DOUBLElowercase_pass.val\",\n              \"title\": \"1val1DOUBLElowercase_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5510\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5509\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n                },\n                {\n                  \"@id\": \"_:b4433\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4432\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0e0] } on { <s> <p1> 0E0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1991\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0E0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1DOUBLElowercase_fail-0E0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1256\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1254\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n                },\n                {\n                  \"@id\": \"_:b4475\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4474\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NumericEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [0e0] } on { <s> <p1> 0e0.0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1685\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL0_0e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1DOUBLElowercase_0_0e0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2507\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2504\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n                },\n                {\n                  \"@id\": \"_:b1514\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1513\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en-fr }\",\n              \"testAction\": {\n                \"@id\": \"_:b1677\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen-fr.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1LANGTAG_pass.val\",\n              \"title\": \"1val1LANGTAG_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1396\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1395\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n                },\n                {\n                  \"@id\": \"_:b3375\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3368\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2595\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1LANGTAG_Lab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b741\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b739\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n                },\n                {\n                  \"@id\": \"_:b2601\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2596\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en }\",\n              \"testAction\": {\n                \"@id\": \"_:b2560\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1LANGTAG_LabLTen\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3917\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3907\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n                },\n                {\n                  \"@id\": \"_:b1037\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1036\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'ab'@en-fr-jura }\",\n              \"testAction\": {\n                \"@id\": \"_:b2529\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabLTen-fr-jura.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1LANGTAG_LabLTen-fr-jura\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5400\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5399\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n                },\n                {\n                  \"@id\": \"_:b4156\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4154\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LanguageTagEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'@en-fr] } on { <s> <p1> 'a'@en-fr }\",\n              \"testAction\": {\n                \"@id\": \"_:b1924\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LaLTen-fr.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1LANGTAG_LaLTen-fr\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4745\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4744\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n                },\n                {\n                  \"@id\": \"_:b722\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b720\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab'^^my:bloodType }\",\n              \"testAction\": {\n                \"@id\": \"_:b1893\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFDatatype_pass.val\",\n              \"title\": \"1val1IRIREFDatatype_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b281\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b279\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n                },\n                {\n                  \"@id\": \"_:b2994\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2987\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1858\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREFDatatype_Lab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4849\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4848\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n                },\n                {\n                  \"@id\": \"_:b606\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b604\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'ab'^^my:bloodType999 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1824\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType999.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREFDatatype_LabDTbloodType999\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b178\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b175\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n                },\n                {\n                  \"@id\": \"_:b2681\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2679\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#DatatypedLiteralEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ['ab'^^my:bloodType] } on { <s> <p1> 'a'^^my:bloodType }\",\n              \"testAction\": {\n                \"@id\": \"_:b1790\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LaDTbloodType.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREFDatatype_LaDTbloodType\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3556\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3552\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n                },\n                {\n                  \"@id\": \"_:b3446\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3439\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [true] } on { <s> <p1> true }\",\n              \"testAction\": {\n                \"@id\": \"_:b1756\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_true.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1true_pass.val\",\n              \"title\": \"1val1true_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4066\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4060\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n                },\n                {\n                  \"@id\": \"_:b4294\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4291\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [true] } on { <s> <p1> false }\",\n              \"testAction\": {\n                \"@id\": \"_:b1719\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_false.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1true_false\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3240\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3235\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n                },\n                {\n                  \"@id\": \"_:b4543\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4542\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [true] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2270\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1true_ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4086\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4081\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n                },\n                {\n                  \"@id\": \"_:b4855\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4854\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [false] } on { <s> <p1> true }\",\n              \"testAction\": {\n                \"@id\": \"_:b2238\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_false.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1false_pass.val\",\n              \"title\": \"1val1false_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5422\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5421\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n                },\n                {\n                  \"@id\": \"_:b4565\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4564\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [false] } on { <s> <p1> false }\",\n              \"testAction\": {\n                \"@id\": \"_:b2200\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_true.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1false_true\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4769\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4768\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n                },\n                {\n                  \"@id\": \"_:b1167\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1165\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#BooleanEquivalence\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [false] } on { <s> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2173\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1false_ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5054\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5053\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b3611\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3608\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p2> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2138\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeLength_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3081\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3078\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n                },\n                {\n                  \"@id\": \"_:b33\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b32\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 1.234 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2116\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeLength_fail-wrongDatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2742\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2740\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n                },\n                {\n                  \"@id\": \"_:b918\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b915\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 1234 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2067\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT1234.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeLength_fail-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b39\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b38\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n                },\n                {\n                  \"@id\": \"_:b4225\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4223\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 12345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2014\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1datatypeLength_pass.val\",\n              \"title\": \"1datatypeLength_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4062\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4061\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n                },\n                {\n                  \"@id\": \"_:b5010\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5009\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> xs:integer LENGTH 5 } on <s> in { <s> <p1> 123456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1959\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT123456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1datatypeLength_fail-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2248\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2241\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n                },\n                {\n                  \"@id\": \"_:b4815\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4814\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.2345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1574\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-short.val\",\n              \"title\": \"1literalFractiondigits_pass-decimal-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5418\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5417\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b2639\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2636\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.23456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2592\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equal.val\",\n              \"title\": \"1literalFractiondigits_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4691\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4690\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n                },\n                {\n                  \"@id\": \"_:b2191\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2189\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 1.234567 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2517\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234567.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-decimal-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3726\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3719\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b4903\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4902\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.2345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1876\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalLead.val\",\n              \"title\": \"1literalFractiondigits_pass-decimal-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3646\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3643\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n                },\n                {\n                  \"@id\": \"_:b4024\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4018\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.23456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1801\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-decimal-longLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2474\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2469\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n                },\n                {\n                  \"@id\": \"_:b4829\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4828\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 1.23450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1728\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalTrail.val\",\n              \"title\": \"1literalFractiondigits_pass-decimal-equalTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b81\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b80\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n                },\n                {\n                  \"@id\": \"_:b4749\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4748\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 1.234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2236\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-decimal-longTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3159\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3154\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b5290\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5289\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.23450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2170\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalFractiondigits_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1literalFractiondigits_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b311\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b308\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b1697\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1693\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 4 } / { <s1> <p1> 01.234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2096\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-decimal-longLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5090\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5089\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n                },\n                {\n                  \"@id\": \"_:b225\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b223\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 12345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1990\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1fractionTotaldigits_pass-integer-equal.val\",\n              \"title\": \"1literalFractiondigits_pass-integer-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3859\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3852\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n                },\n                {\n                  \"@id\": \"_:b4974\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4973\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"12345\\\"^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1554\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_xsd-integer12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1fractionTotaldigits_pass-integer-equal.val\",\n              \"title\": \"1literalFractiondigits_pass-xsd_integer-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1030\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1028\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b1372\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1371\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.23456\\\"^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b1971\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT1_23456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4401\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4399\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b793\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b791\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2083\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b566\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b565\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n                },\n                {\n                  \"@id\": \"_:b4783\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4782\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.23ab\\\"^^xsd:decimal }\",\n              \"testAction\": {\n                \"@id\": \"_:b2158\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_23ab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5462\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5461\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n                },\n                {\n                  \"@id\": \"_:b2302\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2297\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.2345ab\\\"^^xsd:decimal }\",\n              \"testAction\": {\n                \"@id\": \"_:b2233\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_2345ab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2892\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2890\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n                },\n                {\n                  \"@id\": \"_:b789\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b787\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1583\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-integer1_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3890\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3882\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n                },\n                {\n                  \"@id\": \"_:b3704\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3703\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> <1.2345> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1781\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_I12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2793\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2791\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n                },\n                {\n                  \"@id\": \"_:b2914\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2912\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FractionDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL FRACTIONDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> _:12345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1846\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_B12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalFractiondigits_fail-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4817\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4816\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n                },\n                {\n                  \"@id\": \"_:b5070\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5069\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.234 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1920\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-short.val\",\n              \"title\": \"1literalTotaldigits_pass-decimal-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5284\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5283\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b1866\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1862\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.2345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2570\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equal.val\",\n              \"title\": \"1literalTotaldigits_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b51\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b50\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n                },\n                {\n                  \"@id\": \"_:b2508\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2503\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.23456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2599\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-decimal-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2625\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2623\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b2626\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2624\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.2345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2566\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalLead.val\",\n              \"title\": \"1literalTotaldigits_pass-decimal-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b944\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b942\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n                },\n                {\n                  \"@id\": \"_:b4789\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4788\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.23456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2536\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-decimal-longLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4341\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4339\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n                },\n                {\n                  \"@id\": \"_:b5247\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5246\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.23450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1937\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_23450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalTrail.val\",\n              \"title\": \"1literalTotaldigits_pass-decimal-equalTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4198\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4196\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n                },\n                {\n                  \"@id\": \"_:b3834\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3832\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 1.234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1903\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-decimal-longTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4825\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4824\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4948\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4947\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.23450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1873\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC01_23450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1literalTotaldigits_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b794\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b792\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2197\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2192\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 01.234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1845\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC1_234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-decimal-longLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4479\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4478\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b4209\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4207\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 12345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1812\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equal.val\",\n              \"title\": \"1literalTotaldigits_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4813\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4812\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n                },\n                {\n                  \"@id\": \"_:b2494\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2490\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1234\\\"^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1783\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_xsd-integer1234.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-short.val\",\n              \"title\": \"1literalTotaldigits_pass-xsd_integer-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4962\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4961\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b1774\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1770\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 012345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1751\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT012345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalLead.val\",\n              \"title\": \"1literalTotaldigits_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4867\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4866\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n                },\n                {\n                  \"@id\": \"_:b3458\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3454\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 0123456 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1717\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0123456.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-integer-longLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1160\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1158\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n                },\n                {\n                  \"@id\": \"_:b1724\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1720\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 123450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2275\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT123450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalTrail.val\",\n              \"title\": \"1literalTotaldigits_pass-integer-equalTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3180\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n                },\n                {\n                  \"@id\": \"_:b2934\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2932\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 1234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2243\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT1234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-integer-longTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b922\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b920\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b5550\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5549\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 0123450 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2215\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT0123450.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-integer-equalLeadTrail.val\",\n              \"title\": \"1literalTotaldigits_pass-integer-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b319\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b317\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4972\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4971\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 6 } / { <s1> <p1> 01234560 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2183\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT01234560.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-integer-longLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2032\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2024\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n                },\n                {\n                  \"@id\": \"_:b139\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b138\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 5^^xsd:byte }\",\n              \"testAction\": {\n                \"@id\": \"_:b2156\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-byte-short.val\",\n              \"title\": \"1literalTotaldigits_pass-byte-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5468\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5467\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n                },\n                {\n                  \"@id\": \"_:b4415\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4414\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 64^^xsd:byte }\",\n              \"testAction\": {\n                \"@id\": \"_:b2055\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT64.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalTotaldigits_pass-byte-equal.val\",\n              \"title\": \"1literalTotaldigits_pass-byte-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4015\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4011\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n                },\n                {\n                  \"@id\": \"_:b5020\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5019\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 2 } / { <s1> <p1> 128^^xsd:byte }\",\n              \"testAction\": {\n                \"@id\": \"_:b2119\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT128.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-byte-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4146\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4143\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b2669\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2666\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2093\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT1_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3550\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3547\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4913\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4912\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2070\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2832\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2829\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n                },\n                {\n                  \"@id\": \"_:b1948\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1943\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.23ab\\\"^^xsd:decimal }\",\n              \"testAction\": {\n                \"@id\": \"_:b2031\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_23ab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1600\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1599\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n                },\n                {\n                  \"@id\": \"_:b2764\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2762\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345ab\\\"^^xsd:decimal }\",\n              \"testAction\": {\n                \"@id\": \"_:b1998\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-decimal1_2345ab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b77\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b76\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n                },\n                {\n                  \"@id\": \"_:b1994\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1989\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / { <s1> <p1> \\\"1.2345\\\"^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1960\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_malformedxsd-integer1_2345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5148\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5147\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n                },\n                {\n                  \"@id\": \"_:b4505\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4504\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> <1.2345> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1699\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_I12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3677\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3676\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n                },\n                {\n                  \"@id\": \"_:b809\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b806\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#TotalDigitsFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL TOTALDIGITS 5 } / BASE <http://a.example/> { <s1> <p1> _:12345 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1681\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_B12345.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalTotaldigits_fail-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b401\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b398\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n                },\n                {\n                  \"@id\": \"_:b1092\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1090\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1550\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMinexclusiveINTEGER_fail-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5451\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5450\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n                },\n                {\n                  \"@id\": \"_:b999\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b997\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2578\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMinexclusiveINTEGER_pass-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5255\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5254\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n                },\n                {\n                  \"@id\": \"_:b1067\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1065\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINEXCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2548\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinexclusiveINTEGER_pass-high.val\",\n              \"title\": \"1literalMinexclusiveINTEGER_pass-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1302\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1301\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n                },\n                {\n                  \"@id\": \"_:b5282\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5281\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2514\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMininclusiveINTEGER_fail-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3914\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3912\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n                },\n                {\n                  \"@id\": \"_:b3856\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3854\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1912\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMininclusiveINTEGER_pass-equal.val\",\n              \"title\": \"1literalMininclusiveINTEGER_pass-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3453\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3448\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n                },\n                {\n                  \"@id\": \"_:b460\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b459\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MININCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1879\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMininclusiveINTEGER_pass-high.val\",\n              \"title\": \"1literalMininclusiveINTEGER_pass-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3655\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3653\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n                },\n                {\n                  \"@id\": \"_:b1612\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1611\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1847\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxexclusiveINTEGER_pass-high.val\",\n              \"title\": \"1literalMaxexclusiveINTEGER_pass-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b288\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b286\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n                },\n                {\n                  \"@id\": \"_:b943\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b941\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1811\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMaxexclusiveINTEGER_fail-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b601\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b599\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n                },\n                {\n                  \"@id\": \"_:b5016\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5015\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXEXCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1784\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMaxexclusiveINTEGER_fail-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4055\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4054\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n                },\n                {\n                  \"@id\": \"_:b1019\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1017\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1755\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxinclusiveINTEGER_pass-low.val\",\n              \"title\": \"1literalMaxinclusiveINTEGER_pass-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b880\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b878\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n                },\n                {\n                  \"@id\": \"_:b1368\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1367\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1716\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxinclusiveINTEGER_pass-equal.val\",\n              \"title\": \"1literalMaxinclusiveINTEGER_pass-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b23\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b22\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n                },\n                {\n                  \"@id\": \"_:b2755\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2752\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXINCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2269\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMaxinclusiveINTEGER_fail-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b25\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b24\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n                },\n                {\n                  \"@id\": \"_:b4409\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4407\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '4.9'^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2240\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_9.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveINTEGER_fail-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5308\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5307\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b4557\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4556\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '05'^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2208\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equalLead.val\",\n              \"title\": \"1floatMininclusiveINTEGER_pass-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1528\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1527\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n                },\n                {\n                  \"@id\": \"_:b3626\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3621\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5.0'^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2178\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equalTrail.val\",\n              \"title\": \"1floatMininclusiveINTEGER_pass-equalTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b67\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b66\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n                },\n                {\n                  \"@id\": \"_:b3393\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3390\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5.1'^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2145\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-high.val\",\n              \"title\": \"1floatMininclusiveINTEGER_pass-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3510\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3506\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n                },\n                {\n                  \"@id\": \"_:b843\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b840\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '4'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1980\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3683\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3682\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n                },\n                {\n                  \"@id\": \"_:b35\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b34\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2081\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-equal.val\",\n              \"title\": \"1integerMininclusiveINTEGER_pass-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2610\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2609\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b5544\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5543\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '05'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b2112\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-equalLead.val\",\n              \"title\": \"1integerMininclusiveINTEGER_pass-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b729\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b727\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n                },\n                {\n                  \"@id\": \"_:b374\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b372\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '6'^^xsd:integer }\",\n              \"testAction\": {\n                \"@id\": \"_:b1949\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-high.val\",\n              \"title\": \"1integerMininclusiveINTEGER_pass-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4126\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4124\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n                },\n                {\n                  \"@id\": \"_:b3583\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3581\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 5 } / { <s1> <p1> '5'^^xsd:float }\",\n              \"testAction\": {\n                \"@id\": \"_:b2005\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGER_pass-equal.val\",\n              \"title\": \"1floatMininclusiveINTEGERLead_pass-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4169\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4167\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b3366\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3363\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1955\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2230\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2223\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b2921\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2919\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1684\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveINTEGER_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5398\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5397\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4733\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4732\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1674\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGER_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveINTEGER_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1901\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1896\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b4461\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4460\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J7\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2583\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGERLead_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b217\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b215\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b1193\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1191\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K7\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2546\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveINTEGERLead_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1200\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1198\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b4010\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4007\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L7\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 05 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1938\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-equalLead.val\",\n              \"title\": \"1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5524\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5523\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4447\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4446\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N7\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1898\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveINTEGERLead_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveINTEGERLead_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5088\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5087\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b4771\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4770\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K8\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 4.5 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1860\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMAL_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDECIMAL_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b358\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b355\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b951\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b949\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J9\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1818\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4489\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4488\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b5152\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5151\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K9\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1787\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2794\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2792\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b4122\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4120\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L9\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 05 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1746\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead.val\",\n              \"title\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5280\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5279\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b1632\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1631\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N9\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2290\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALLeadTrail_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b522\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b521\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b4697\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4696\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2254\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveDECIMALint_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4523\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4522\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b431\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b432\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2218\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALint_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDECIMALint_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1076\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1073\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b5310\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5309\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2180\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALint_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveDECIMALint_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b194\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b192\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b3881\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3876\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J11\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2142\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3460\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3455\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b5096\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5095\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K11\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2126\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1316\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1315\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b534\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b533\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L11\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 05 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2100\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead.val\",\n              \"title\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3879\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3872\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4272\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4270\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N11\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2051\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDECIMALintLeadTrail_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1496\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1495\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b570\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b569\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K12\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 4.5e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2015\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLE_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDOUBLE_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2011\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2004\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b4320\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4317\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J13\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1965\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b103\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b102\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b4633\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4632\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K13\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1696\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2857\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2855\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b1540\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1539\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L13\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 05 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1678\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead.val\",\n              \"title\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1398\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1397\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b5166\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5165\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N13\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 04.50e0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2584\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLELeadTrail_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4603\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4602\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b5362\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5361\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2542\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEint_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDOUBLEint_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5260\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5259\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b2780\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2778\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J15\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1929\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4376\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4373\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b596\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b595\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K15\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1890\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1223\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1221\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n                },\n                {\n                  \"@id\": \"_:b4258\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4256\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.L15\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 05 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1852\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT05.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead.val\",\n              \"title\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1916\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1913\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b3542\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3537\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N15\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 05.00e0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1808\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high.val\",\n              \"title\": \"1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b416\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b413\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b4629\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4110\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K16\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1769\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1576\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1577\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b3967\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3965\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K17\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1733\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b805\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b803\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4793\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4792\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K18\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2280\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b229\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b227\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n                },\n                {\n                  \"@id\": \"_:b3436\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3434\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K19\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '2015-12-25T01:23:45Z'^^<http://www.w3.org/2001/XMLSchema#dateTime> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2247\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DT2015-12-25T01_23_45Z.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-dateTime-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2888\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2886\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n                },\n                {\n                  \"@id\": \"_:b4843\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4842\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K20\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> 'ab'^^<http://www.w3.org/2001/XMLSchema#string> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2204\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_STRab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-string-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b93\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b92\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n                },\n                {\n                  \"@id\": \"_:b4311\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4309\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K21\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE 5 } / { <s1> <p1> '5'^^<http://www.w3.org/2001/XMLSchema#byte> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2172\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusiveINTEGER_fail-byte-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4243\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4241\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b4537\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4536\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J23\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE \\\"5\\\"^^<http://www.w3.org/2001/XMLSchema#integer> } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2133\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMininclusivexsd-integer_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3818\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3816\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b1126\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1124\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K23\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MININCLUSIVE \\\"5\\\"^^<http://www.w3.org/2001/XMLSchema#integer> } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2120\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMininclusivexsd-integer_pass-integer-equal.val\",\n              \"title\": \"1integerMininclusivexsd-integer_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1610\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1609\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b4952\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4951\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2088\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveINTEGER_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5348\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5347\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b3088\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3084\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2041\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveINTEGER_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveINTEGER_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5366\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5365\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b3108\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3104\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J28\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1999\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4180\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4960\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4959\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N28\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1952\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveINTEGERLead_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4164\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4162\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b1907\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1902\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1941\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDECIMAL_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3944\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3943\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b2334\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2331\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1549\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-equal.val\",\n              \"title\": \"1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1074\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1072\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b3899\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3884\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 04.50 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2565\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3620\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3612\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b1252\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1250\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2523\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMAL_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveDECIMAL_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5076\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5075\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b2022\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2018\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J30\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1905\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b773\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b770\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b703\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b701\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K30\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1867\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal.val\",\n              \"title\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4056\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4049\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4805\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4804\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M30\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 04.50 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1827\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b337\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b335\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4084\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4083\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N30\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1786\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4743\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4742\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b3629\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3625\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J32\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1742\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2663\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2661\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b169\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b167\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N32\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2285\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b871\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b868\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b135\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b134\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2246\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDOUBLE_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b129\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b128\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b1038\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1035\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2202\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLE_pass-decimal-equal.val\",\n              \"title\": \"1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3183\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3178\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b850\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b848\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5e0 } / { <s1> <p1> 04.50 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2163\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1618\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1617\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b514\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b513\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J34\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2047\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1710\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1711\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b4727\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4726\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K34\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2113\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal.val\",\n              \"title\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2712\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2709\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b771\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b769\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M34\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 04.50 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2074\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail.val\",\n              \"title\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1115\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1113\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b304\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N34\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 04.50e0 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2021\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4569\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4568\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b2384\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2379\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J36\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1967\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1654\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1653\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b2835\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2833\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N36\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 05.00e0 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1694\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high.val\",\n              \"title\": \"1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4497\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4496\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b666\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b664\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K37\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1560\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1753\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1747\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4601\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4600\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K39\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2573\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3146\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3142\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b4443\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4442\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J44\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2535\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMininclusivexsd-decimal_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b157\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b155\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b3821\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3819\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K44\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1918\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMininclusivexsd-decimal_pass-decimal-equal.val\",\n              \"title\": \"1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5211\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5210\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b4097\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4093\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J49\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1875\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveINTEGERLead_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4337\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4332\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b4134\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4132\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N49\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1838\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveINTEGERLead_pass-float-high.val\",\n              \"title\": \"1floatMininclusiveINTEGERLead_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4114\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4111\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b5472\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5471\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1793\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMAL_pass-float-equal.val\",\n              \"title\": \"1floatMininclusiveDECIMAL_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5116\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5115\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4290\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4287\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1745\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMAL_pass-float-equalLeadTrail.val\",\n              \"title\": \"1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4307\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4304\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b105\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b104\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J51\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2284\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2843\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2841\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b388\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b385\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K51\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2245\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-equal.val\",\n              \"title\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1088\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1086\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b476\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b475\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M51\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2195\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail.val\",\n              \"title\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b397\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b395\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b2082\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2076\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N51\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2154\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALLeadTrail_pass-float-high.val\",\n              \"title\": \"1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5072\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5071\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b1646\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1645\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J53\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1977\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2617\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2612\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b2520\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2513\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N53\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2103\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDECIMALintLeadTrail_pass-float-high.val\",\n              \"title\": \"1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2945\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2942\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b1240\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1238\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2049\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLE_pass-float-equal.val\",\n              \"title\": \"1floatMininclusiveDOUBLE_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b289\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b287\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2648\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2646\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 4.5e0 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2002\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLE_pass-float-equalLeadTrail.val\",\n              \"title\": \"1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3595\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3594\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b2819\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2816\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J55\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1692\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5040\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5039\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b4106\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4099\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K55\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1293\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-equal.val\",\n              \"title\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1472\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1471\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2973\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2966\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M55\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '04.50'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2576\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT04_50.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail.val\",\n              \"title\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b363\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b361\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b4591\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4590\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N55\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 04.50e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1914\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLELeadTrail_pass-float-high.val\",\n              \"title\": \"1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b781\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b778\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b3982\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3980\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J57\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1825\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3331\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3327\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b3667\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3665\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N57\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE 05.00e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1738\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusiveDOUBLEintLeadTrail_pass-float-high.val\",\n              \"title\": \"1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4063\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4057\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b11\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b10\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J65\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2226\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMininclusivexsd-float_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3681\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3674\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b1410\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1409\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K65\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MININCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2141\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMininclusivexsd-float_pass-float-equal.val\",\n              \"title\": \"1floatMininclusivexsd-float_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3998\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3995\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b4216\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4214\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J70\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2079\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusiveINTEGERLead_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b19\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b18\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b2741\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2739\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N70\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1975\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveINTEGERLead_pass-double-high.val\",\n              \"title\": \"1doubleMininclusiveINTEGERLead_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1384\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1383\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b123\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b122\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1558\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMAL_pass-double-equal.val\",\n              \"title\": \"1doubleMininclusiveDECIMAL_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b875\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b872\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b3707\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3701\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5 } / { <s1> <p1> 04.50e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1961\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail.val\",\n              \"title\": \"1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4934\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4933\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b910\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b906\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J72\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2084\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5024\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5023\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4715\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4714\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K72\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2143\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-equal.val\",\n              \"title\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1183\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1181\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b412\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b410\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M72\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 04.50e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2229\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail.val\",\n              \"title\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5406\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5405\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b2106\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2097\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N72\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1740\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALLeadTrail_pass-double-high.val\",\n              \"title\": \"1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2884\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2882\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b824\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b821\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J74\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1830\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3838\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3833\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b2836\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2834\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N74\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1927\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDECIMALintLeadTrail_pass-double-high.val\",\n              \"title\": \"1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b344\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b342\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b2725\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2722\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5e0 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2588\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLE_pass-double-equal.val\",\n              \"title\": \"1doubleMininclusiveDOUBLE_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1408\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1407\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2873\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2871\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 4.5e0 } / { <s1> <p1> 04.50e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2292\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail.val\",\n              \"title\": \"1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1279\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1276\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b2996\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2989\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J76\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2303\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4759\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4758\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b5195\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5194\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K76\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2317\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-equal.val\",\n              \"title\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1848\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1843\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b1108\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1105\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.M76\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 04.50e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2552\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL04_50e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail.val\",\n              \"title\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3901\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3898\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b5466\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5465\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N76\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 04.50e0 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2344\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLELeadTrail_pass-double-high.val\",\n              \"title\": \"1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2265\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2259\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b3679\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3678\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J78\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00e0 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2522\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1840\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1837\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b768\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b766\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.N78\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE 05.00e0 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2369\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high.val\",\n              \"title\": \"1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4288\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4286\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b4767\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4766\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.J86\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE \\\"4.5e0\\\"^^<http://www.w3.org/2001/XMLSchema#double> } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2380\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMininclusivexsd-double_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5334\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5333\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4649\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4648\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinInclusive.K86\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MININCLUSIVE \\\"4.5e0\\\"^^<http://www.w3.org/2001/XMLSchema#double> } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2395\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMininclusivexsd-double_pass-double-equal.val\",\n              \"title\": \"1doubleMininclusivexsd-double_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3808\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3806\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b333\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b331\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2408\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveINTEGER_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1579\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1580\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b5142\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5141\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2419\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveINTEGER_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1362\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1361\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b5384\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5383\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2431\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveINTEGER_pass-integer-high.val\",\n              \"title\": \"1integerMinexclusiveINTEGER_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b419\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b420\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b146\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b142\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1850\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveDECIMALint_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b43\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b42\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b4936\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4935\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2455\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveDECIMALint_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5243\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5241\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4427\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4426\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1822\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveDECIMALint_pass-integer-high.val\",\n              \"title\": \"1integerMinexclusiveDECIMALint_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1544\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1543\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b1814\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1806\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2479\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveDOUBLEint_fail-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3814\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3807\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b989\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b987\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2492\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b982\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b980\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4236\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4233\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MINEXCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1776\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMinexclusiveDOUBLEint_pass-integer-high.val\",\n              \"title\": \"1integerMinexclusiveDOUBLEint_pass-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b97\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b96\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b3831\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3828\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2961\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveINTEGER_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1170\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1168\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4964\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4963\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2977\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveINTEGER_pass-decimal-high.val\",\n              \"title\": \"1decimalMinexclusiveINTEGER_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1204\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1201\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b3866\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3864\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1736\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1141\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1139\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b3411\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3407\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2997\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4314\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4312\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b1350\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1349\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3006\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveDECIMAL_pass-decimal-high.val\",\n              \"title\": \"1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4765\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4764\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b5496\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5495\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3017\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1614\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1613\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b296\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b293\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3028\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b895\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b893\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4795\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4794\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3039\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMinexclusiveDOUBLE_pass-decimal-high.val\",\n              \"title\": \"1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1936\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1930\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b939\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b937\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K37\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3048\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4541\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4540\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b2551\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2545\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K39\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2227\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMinexclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1434\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1433\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b213\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b211\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2216\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusiveINTEGER_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5408\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5407\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b2016\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2010\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3083\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveINTEGER_pass-float-high.val\",\n              \"title\": \"1floatMinexclusiveINTEGER_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b458\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b457\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b4392\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4390\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3100\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusiveDECIMAL_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2006\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1997\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b4988\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4987\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3112\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5062\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5061\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b2853\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2850\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3124\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveDECIMAL_pass-float-high.val\",\n              \"title\": \"1floatMinexclusiveDECIMAL_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b336\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b334\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n                },\n                {\n                  \"@id\": \"_:b4149\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4147\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3138\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusiveDOUBLE_fail-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4833\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4832\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b572\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b571\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3152\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusiveDOUBLE_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3468\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3464\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n                },\n                {\n                  \"@id\": \"_:b1546\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1545\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE 4.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3164\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMinexclusiveDOUBLE_pass-float-high.val\",\n              \"title\": \"1floatMinexclusiveDOUBLE_pass-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1356\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1355\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b3212\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3206\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K58\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 4.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3181\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusivexsd-float_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2061\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1946\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b909\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b904\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K60\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MINEXCLUSIVE \\\"4.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3193\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMinexclusivexsd-float_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b598\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b597\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b2943\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2940\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3210\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveINTEGER_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2776\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2774\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b2877\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2874\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3222\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveINTEGER_pass-double-high.val\",\n              \"title\": \"1doubleMinexclusiveINTEGER_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4451\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4450\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b382\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b380\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3238\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveDECIMAL_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b692\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b690\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4631\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4630\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3251\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5042\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5041\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b4453\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4452\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3268\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveDECIMAL_pass-double-high.val\",\n              \"title\": \"1doubleMinexclusiveDECIMAL_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3702\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3699\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n                },\n                {\n                  \"@id\": \"_:b3156\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3150\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.J75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3283\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveDOUBLE_fail-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b47\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b46\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4618\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4617\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 4.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2068\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveDOUBLE_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4583\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4582\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n                },\n                {\n                  \"@id\": \"_:b1981\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1972\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.N75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5e0 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2045\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMinexclusiveDOUBLE_pass-double-high.val\",\n              \"title\": \"1doubleMinexclusiveDOUBLE_pass-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b444\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b443\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b627\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b624\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MinExclusive.K79\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MINEXCLUSIVE 4.5 } / { <s1> <p1> '4.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3322\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMinexclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3687\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3686\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b5492\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5491\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3337\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveINTEGER_pass-integer-low.val\",\n              \"title\": \"1integerMaxinclusiveINTEGER_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2445\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2441\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b5156\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5155\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3354\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveINTEGER_pass-integer-equal.val\",\n              \"title\": \"1integerMaxinclusiveINTEGER_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5302\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5301\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b3984\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3981\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3369\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxinclusiveINTEGER_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4232\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4229\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b1283\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1281\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1996\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDECIMALint_pass-integer-low.val\",\n              \"title\": \"1integerMaxinclusiveDECIMALint_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4187\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4185\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b4107\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4104\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3396\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDECIMALint_pass-integer-equal.val\",\n              \"title\": \"1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3698\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3694\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b3996\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3994\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3413\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxinclusiveDECIMALint_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2900\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2898\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b5052\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5051\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3429\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDOUBLEint_pass-integer-low.val\",\n              \"title\": \"1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3284\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3277\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b2056\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2027\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3442\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxinclusiveDOUBLEint_pass-integer-equal.val\",\n              \"title\": \"1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2759\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2756\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b480\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b479\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXINCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3459\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1928\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1921\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b4998\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4997\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3480\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveINTEGER_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2651\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2650\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b785\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b783\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3495\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4513\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4512\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b5452\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5189\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3511\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDECIMAL_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1045\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1043\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b2750\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2748\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3531\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDECIMAL_pass-decimal-equal.val\",\n              \"title\": \"1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2604\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2597\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4901\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4900\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3551\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2810\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2808\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b2787\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2784\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1680\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDOUBLE_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1390\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1389\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b3269\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3264\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3553\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxinclusiveDOUBLE_pass-decimal-equal.val\",\n              \"title\": \"1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b292\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b290\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b4775\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4774\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3530\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1059\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1057\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b1294\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1295\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K37\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3509\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1581\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1582\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b3008\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3000\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K39\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3489\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1679\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1561\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b1394\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1393\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3471\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveINTEGER_pass-float-low.val\",\n              \"title\": \"1floatMaxinclusiveINTEGER_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3811\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3809\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b2273\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2266\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3451\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxinclusiveINTEGER_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b488\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b487\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b1127\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1125\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3433\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDECIMAL_pass-float-low.val\",\n              \"title\": \"1floatMaxinclusiveDECIMAL_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5388\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5387\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b1510\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1509\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3410\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDECIMAL_pass-float-equal.val\",\n              \"title\": \"1floatMaxinclusiveDECIMAL_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1178\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1177\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b837\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b834\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3391\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxinclusiveDECIMAL_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4563\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4562\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b27\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b26\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3373\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDOUBLE_pass-float-low.val\",\n              \"title\": \"1floatMaxinclusiveDOUBLE_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4905\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4904\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b5420\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5419\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3350\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxinclusiveDOUBLE_pass-float-equal.val\",\n              \"title\": \"1floatMaxinclusiveDOUBLE_pass-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4202\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4200\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b1444\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1443\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE 5.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3330\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxinclusiveDOUBLE_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5396\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5395\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b4673\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4672\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K58\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3311\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxinclusivexsd-float_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b115\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b114\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b2699\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2696\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K60\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXINCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#float> } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3294\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxinclusivexsd-float_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3734\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3733\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b5110\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5109\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3275\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveINTEGER_pass-double-low.val\",\n              \"title\": \"1doubleMaxinclusiveINTEGER_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5100\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5099\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b614\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b612\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3254\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxinclusiveINTEGER_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4781\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4780\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b516\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b515\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3236\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDECIMAL_pass-double-low.val\",\n              \"title\": \"1doubleMaxinclusiveDECIMAL_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1518\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1517\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b168\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b166\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3217\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDECIMAL_pass-double-equal.val\",\n              \"title\": \"1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3993\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3991\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b2152\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2148\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3195\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxinclusiveDECIMAL_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5322\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5321\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b1106\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1103\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.J75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3175\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDOUBLE_pass-double-low.val\",\n              \"title\": \"1doubleMaxinclusiveDOUBLE_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3372\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3365\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b1548\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1288\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3155\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxinclusiveDOUBLE_pass-double-equal.val\",\n              \"title\": \"1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4889\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4888\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b91\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b90\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.N75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5e0 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3134\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxinclusiveDOUBLE_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b896\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b894\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b3609\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3607\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxInclusive.K79\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXINCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3114\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b651\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b649\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b298\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b295\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3093\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveINTEGER_pass-integer-low.val\",\n              \"title\": \"1integerMaxexclusiveINTEGER_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1723\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1718\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b1262\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1259\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3071\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveINTEGER_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5164\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5163\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4887\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4886\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N6\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3058\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveINTEGER_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3616\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3613\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b478\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b477\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3043\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveDECIMALint_pass-integer-low.val\",\n              \"title\": \"1integerMaxexclusiveDECIMALint_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b499\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b497\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b3578\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3575\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3026\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1758\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1750\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b4116\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4113\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N10\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3014\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveDECIMALint_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3744\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3742\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n                },\n                {\n                  \"@id\": \"_:b41\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b40\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2999\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1integerMaxexclusiveDOUBLEint_pass-integer-low.val\",\n              \"title\": \"1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3295\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3292\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n                },\n                {\n                  \"@id\": \"_:b2193\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2190\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2980\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b973\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b971\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n                },\n                {\n                  \"@id\": \"_:b966\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b964\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N14\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:integer MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2960\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_INT6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3198\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3192\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b259\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b257\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2498\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveINTEGER_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1287\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1285\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b5482\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5481\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N27\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2478\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3663\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3661\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b816\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b814\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2461\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveDECIMAL_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5368\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5367\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b2870\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2868\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2442\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b926\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b924\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b2775\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2773\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N29\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2423\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b307\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b305\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n                },\n                {\n                  \"@id\": \"_:b4041\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4038\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 4.4 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2404\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1decimalMaxexclusiveDOUBLE_pass-decimal-low.val\",\n              \"title\": \"1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1516\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1515\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b854\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b852\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2386\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4643\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4642\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n                },\n                {\n                  \"@id\": \"_:b472\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b471\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N33\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.6 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2368\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b209\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b207\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n                },\n                {\n                  \"@id\": \"_:b4059\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4058\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K37\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> '5.5'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2349\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3101\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3092\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b5044\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5043\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K39\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2332\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3827\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3826\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n                },\n                {\n                  \"@id\": \"_:b65\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b64\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K43\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE 5 } / { <s1> <p1> '5'^^<http://www.w3.org/2001/XMLSchema#byte> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2312\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_BYT5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2406\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2400\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n                },\n                {\n                  \"@id\": \"_:b5124\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5123\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K44\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:decimal MAXEXCLUSIVE \\\"5.5\\\"^^<http://www.w3.org/2001/XMLSchema#decimal> } / { <s1> <p1> 5.5 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2294\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DEC5_5.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3133\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3129\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b2704\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2702\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2598\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveINTEGER_pass-float-low.val\",\n              \"title\": \"1floatMaxexclusiveINTEGER_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2763\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2761\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b5074\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5073\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N48\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2543\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxexclusiveINTEGER_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3910\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3909\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b302\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b300\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1923\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveDECIMAL_pass-float-low.val\",\n              \"title\": \"1floatMaxexclusiveDECIMAL_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4561\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4560\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b5253\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5252\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N50\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1872\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxexclusiveDECIMAL_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2188\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2179\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n                },\n                {\n                  \"@id\": \"_:b1969\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1968\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> '4.4'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1828\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT4_4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1floatMaxexclusiveDOUBLE_pass-float-low.val\",\n              \"title\": \"1floatMaxexclusiveDOUBLE_pass-float-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4264\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4261\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n                },\n                {\n                  \"@id\": \"_:b1188\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1186\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N54\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:float MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> '5.6'^^<http://www.w3.org/2001/XMLSchema#float> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1773\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_FLT5_6.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1floatMaxexclusiveDOUBLE_fail-float-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3747\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3745\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b3894\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3891\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1725\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveINTEGER_pass-double-low.val\",\n              \"title\": \"1doubleMaxexclusiveINTEGER_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1735\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1727\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4647\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4646\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2258\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveINTEGER_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4017\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4013\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b3465\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3461\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N69\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2211\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveINTEGER_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2869\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2867\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b1306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1305\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K70\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2166\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1476\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1475\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b4239\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4237\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1945\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveDECIMAL_pass-double-low.val\",\n              \"title\": \"1doubleMaxexclusiveDECIMAL_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4899\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4898\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b3224\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3221\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2099\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b550\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b549\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b4685\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4684\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N71\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2042\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMAL_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3502\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3498\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4875\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4874\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K72\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.50 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1993\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4362\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4360\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b4966\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4965\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K73\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1703\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b502\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b501\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b1748\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1743\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K74\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.00 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b1676\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b172\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b170\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n                },\n                {\n                  \"@id\": \"_:b3167\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3160\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.J75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 4.4e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3548\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL4_4e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1doubleMaxexclusiveDOUBLE_pass-double-low.val\",\n              \"title\": \"1doubleMaxexclusiveDOUBLE_pass-double-low\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4053\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4043\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b1534\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1533\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3524\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1642\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1641\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n                },\n                {\n                  \"@id\": \"_:b5205\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5204\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.N75\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.5e0 } / { <s1> <p1> 5.6e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3503\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_6e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLE_fail-double-high\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1442\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1441\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b3640\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3638\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K76\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.50e0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3484\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5336\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5335\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b2926\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2923\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K77\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 5.0e0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3462\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1650\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1649\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n                },\n                {\n                  \"@id\": \"_:b59\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b58\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/prov#wasDerivedFrom\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/facet-tests-data.xlsx#MaxExclusive.K78\"\n              },\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ComparatorFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> xsd:double MAXEXCLUSIVE 05.00e0 } / { <s1> <p1> 5.5e0 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3441\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_DBL5_5e0.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b578\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b577\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b3761\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3758\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3425\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1Length_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4213\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4211\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b1354\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1353\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3408\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1Length_pass-lit-equal.val\",\n              \"title\": \"1Length_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1839\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1834\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n                },\n                {\n                  \"@id\": \"_:b3168\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3163\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3388\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1Length_fail-lit-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2785\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2782\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b4138\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4136\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3370\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalLength_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3209\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3202\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b3318\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3353\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalLength_pass-lit-equal.val\",\n              \"title\": \"1literalLength_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3790\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3789\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n                },\n                {\n                  \"@id\": \"_:b17\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b16\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3334\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalLength_fail-lit-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5498\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5497\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b1412\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1411\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL LENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3316\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalLength_fail-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3606\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3603\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b329\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b327\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL LENGTH 5 } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b3297\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalLength_fail-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4705\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4704\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b5229\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5228\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3282\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriLength_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5378\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5377\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b1644\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1643\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3263\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriLength_pass-iri-equal.val\",\n              \"title\": \"1iriLength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b991\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b988\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b5158\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5157\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3244\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriLength_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b699\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b698\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b4577\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4576\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3226\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriLength_fail-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1712\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1713\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b299\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b297\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI LENGTH 19 } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b3208\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriLength_fail-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3310\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3307\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b653\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b650\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3189\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriRefLength1_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1658\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1657\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b4130\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4129\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o1> . <o1> <p2>  <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3172\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1-Io1_Ip2_Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriRefLength1_pass-iri-equal.val\",\n              \"title\": \"1iriRefLength1_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4089\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4085\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b2828\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2826\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3153\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriRefLength1_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b554\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b553\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b1304\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1303\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3135\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriRefLength1_fail-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4008\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4002\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b3291\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3285\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI @<S2> LENGTH 19 } <S2> { <p2> . } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b3116\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriRefLength1_fail-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4334\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4330\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b367\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b365\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b3098\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeLength_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2689\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2687\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b174\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b171\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b3079\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeLength_pass-bnode-equal.val\",\n              \"title\": \"1bnodeLength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2205\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2196\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b5268\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5267\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE LENGTH 5 } on { <s1> <p1> _:abcdef }\",\n              \"testAction\": {\n                \"@id\": \"_:b3061\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeLength_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5014\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5013\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b3435\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3432\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3047\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeLength_fail-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b371\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b369\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b4491\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4490\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE LENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3034\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeLength_fail-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4322\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4319\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b3693\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3692\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3018\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralLength_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1426\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1425\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b53\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b52\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3003\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralLength_pass-iri-equal.val\",\n              \"title\": \"1nonliteralLength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4773\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4772\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b2515\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2510\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2988\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralLength_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5012\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5011\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b4665\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4664\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2974\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralLength_fail-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b143\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b144\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b133\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b132\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b2956\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralLength_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b763\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b761\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b4539\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4538\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\",\n              \"testAction\": {\n                \"@id\": \"_:b2491\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralLength_pass-bnode-equal.val\",\n              \"title\": \"1nonliteralLength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1668\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1667\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b3948\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3946\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL LENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrst }\",\n              \"testAction\": {\n                \"@id\": \"_:b2472\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrst.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralLength_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4944\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4943\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b1358\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1357\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2457\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMinlength_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3892\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3885\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b5446\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5447\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2439\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinlength_pass-lit-equal.val\",\n              \"title\": \"1literalMinlength_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1360\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1359\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n                },\n                {\n                  \"@id\": \"_:b5162\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5161\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MINLENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2420\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMinlength_pass-lit-long.val\",\n              \"title\": \"1literalMinlength_pass-lit-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b952\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b950\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b1041\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1039\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2402\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriMinlength_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2771\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2770\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b879\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b877\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2385\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMinlength_pass-iri-equal.val\",\n              \"title\": \"1iriMinlength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3923\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3921\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b4932\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4931\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MINLENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2365\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMinlength_pass-iri-long.val\",\n              \"title\": \"1iriMinlength_pass-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b940\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b938\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b1328\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1327\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b2347\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeMinlength_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5474\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5473\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b1440\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1439\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b2330\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMinlength_pass-bnode-equal.val\",\n              \"title\": \"1bnodeMinlength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1878\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1871\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b5136\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5135\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MINLENGTH 5 } on { <s1> <p1> _:abcdef }\",\n              \"testAction\": {\n                \"@id\": \"_:b2309\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMinlength_pass-bnode-long.val\",\n              \"title\": \"1bnodeMinlength_pass-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3836\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3835\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b3532\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3526\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2062\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralMinlength_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5160\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5159\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b1270\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1268\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2589\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-iri-equal.val\",\n              \"title\": \"1nonliteralMinlength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3689\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3688\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b1026\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1024\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2539\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-iri-long.val\",\n              \"title\": \"1nonliteralMinlength_pass-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1392\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1391\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b1908\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1904\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b1915\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralMinlength_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3346\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3342\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b5132\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5131\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\",\n              \"testAction\": {\n                \"@id\": \"_:b1868\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-bnode-equal.val\",\n              \"title\": \"1nonliteralMinlength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2293\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2063\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b807\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b804\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MINLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrst }\",\n              \"testAction\": {\n                \"@id\": \"_:b1815\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMinlength_pass-bnode-long.val\",\n              \"title\": \"1nonliteralMinlength_pass-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4165\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4163\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b314\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b312\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1767\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxlength_pass-lit-short.val\",\n              \"title\": \"1literalMaxlength_pass-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b696\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b694\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b2499\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2496\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1715\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalMaxlength_pass-lit-equal.val\",\n              \"title\": \"1literalMaxlength_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1048\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1047\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n                },\n                {\n                  \"@id\": \"_:b1416\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1415\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL MAXLENGTH 5 } on { <s1> <p1> \\\"abcdef\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2256\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalMaxlength_fail-lit-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2356\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2354\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b2737\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2735\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2207\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMaxlength_pass-iri-short.val\",\n              \"title\": \"1iriMaxlength_pass-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4555\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4554\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b2621\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2620\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2162\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriMaxlength_pass-iri-equal.val\",\n              \"title\": \"1iriMaxlength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4303\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4301\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b4713\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4712\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI MAXLENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1983\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriMaxlength_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4027\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4026\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b2558\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2553\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b2098\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMaxlength_pass-bnode-short.val\",\n              \"title\": \"1bnodeMaxlength_pass-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b242\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b240\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b3736\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3730\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcde }\",\n              \"testAction\": {\n                \"@id\": \"_:b1944\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodeMaxlength_pass-bnode-equal.val\",\n              \"title\": \"1bnodeMaxlength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5314\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b1179\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1176\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE MAXLENGTH 5 } on { <s1> <p1> _:abcdef }\",\n              \"testAction\": {\n                \"@id\": \"_:b1976\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodeMaxlength_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5176\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5175\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b3988\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3985\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1698\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-iri-short.val\",\n              \"title\": \"1nonliteralMaxlength_pass-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2715\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2713\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b4221\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4219\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1555\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-iri-equal.val\",\n              \"title\": \"1nonliteralMaxlength_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4883\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4882\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b823\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b822\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3543\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralMaxlength_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b704\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b702\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b1964\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1956\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> _:abcd }\",\n              \"testAction\": {\n                \"@id\": \"_:b3522\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-bnode-short.val\",\n              \"title\": \"1nonliteralMaxlength_pass-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2446\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2443\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b3140\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3137\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 19 } on { <s1> <p1> _:abcdefghijklmnopqrs }\",\n              \"testAction\": {\n                \"@id\": \"_:b3499\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrs.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralMaxlength_pass-bnode-equal.val\",\n              \"title\": \"1nonliteralMaxlength_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2629\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2627\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b734\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b732\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL MAXLENGTH 5 } on { <s1> <p1> _:abcdefghijklmnopqrst }\",\n              \"testAction\": {\n                \"@id\": \"_:b3478\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babcdefghijklmnopqrst.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralMaxlength_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5288\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5287\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n                },\n                {\n                  \"@id\": \"_:b3863\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3861\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3456\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-lit-match.val\",\n              \"title\": \"1literalPattern_pass-lit-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b4857\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4856\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"a\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3437\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b164\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b162\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n                },\n                {\n                  \"@id\": \"_:b3958\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3955\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3418\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern_fail-ab\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2768\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2766\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n                },\n                {\n                  \"@id\": \"_:b4917\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4916\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"cd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3400\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern_fail-cd\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b212\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b210\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n                },\n                {\n                  \"@id\": \"_:b2220\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2214\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"abc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3381\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-lit-into.val\",\n              \"title\": \"1literalPattern_pass-lit-into\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3673\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3672\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b580\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b579\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3361\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern19_fail-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3952\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3950\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b1628\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1627\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> _:ab }\",\n              \"testAction\": {\n                \"@id\": \"_:b3344\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern_fail-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b618\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b616\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n                },\n                {\n                  \"@id\": \"_:b2574\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2569\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3184\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPatternEnd_fail-litEnd\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4265\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4263\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n                },\n                {\n                  \"@id\": \"_:b1666\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1665\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\\$\\\" } on { <s1> <p1> \\\"bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3165\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPatternDollar_pass-litDollar-match.val\",\n              \"title\": \"1literalPatternDollar_pass-litDollar-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b239\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b237\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n                },\n                {\n                  \"@id\": \"_:b888\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b885\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3143\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPattern_pass-StartlitEnd-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4891\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4890\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n                },\n                {\n                  \"@id\": \"_:b5272\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5271\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3126\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalStartPatternEnd_CarrotbcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4723\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4722\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n                },\n                {\n                  \"@id\": \"_:b378\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b376\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"\\\\^bc\\\\$\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3106\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalCarrotPatternDollar_pass-bc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b839\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b836\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n                },\n                {\n                  \"@id\": \"_:b409\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b407\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"\\\\^bc\\\\$\\\" } on { <s1> <p1> \\\"^bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3086\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalCarrotPatternDollar_pass-CarrotbcDollar.val\",\n              \"title\": \"1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1033\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1031\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b1130\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1128\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:bc }\",\n              \"testAction\": {\n                \"@id\": \"_:b3064\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPatternabEnd_fail-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b936\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b934\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n                },\n                {\n                  \"@id\": \"_:b2622\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2619\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3323\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalStartPattern-bc.val\",\n              \"title\": \"1literalStartPattern_pass-bc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4879\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4878\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n                },\n                {\n                  \"@id\": \"_:b160\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b158\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc\\\" } on { <s1> <p1> \\\"^bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3304\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalStartPattern_fail-CarrotbcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4801\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4800\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n                },\n                {\n                  \"@id\": \"_:b5454\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5453\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3288\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPatternEnd_pass-bc.val\",\n              \"title\": \"1literalPatternEnd_pass-bc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4581\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4580\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n                },\n                {\n                  \"@id\": \"_:b4958\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4957\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3266\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1literalPatternEnd_pass-CarrotbcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4779\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4778\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n                },\n                {\n                  \"@id\": \"_:b917\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b916\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3247\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-bcDollar.val\",\n              \"title\": \"1literalPattern_pass-bcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4037\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4036\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n                },\n                {\n                  \"@id\": \"_:b3799\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3795\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"^bc$\\\" } on { <s1> <p1> \\\"bc\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3225\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalStarPatternEnd_pass-bc.val\",\n              \"title\": \"1literalStarPatternEnd_pass-bc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1058\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1056\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n                },\n                {\n                  \"@id\": \"_:b4942\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4941\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> LITERAL PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"^bc$\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3205\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LCarrotbcDollar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1literalPattern_pass-CarrotbcDollar.val\",\n              \"title\": \"1literalPattern_pass-CarrotbcDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b657\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b654\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b775\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b772\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3051\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1iriPattern_pass-iri-match.val\",\n              \"title\": \"1iriPattern_pass-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3768\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3762\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b993\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b990\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3036\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriPattern_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4040\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4034\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b1230\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1227\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> <o1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3021\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriPattern_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4895\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4894\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n                },\n                {\n                  \"@id\": \"_:b1271\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1269\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI PATTERN \\\"http://a.example/o1\\\" } on { <s1> <p1> \\\"o1\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3004\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_L19.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriPattern_fail-lit-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5484\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5483\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b1570\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1571\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> IRI PATTERN \\\"^bc$\\\" } on { <s1> <p1> _:bc }\",\n              \"testAction\": {\n                \"@id\": \"_:b2991\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1iriPattern_fail-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b673\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b671\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b1889\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1881\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:bc }\",\n              \"testAction\": {\n                \"@id\": \"_:b2975\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodePattern_pass-bnode-match.val\",\n              \"title\": \"1bnodePattern_pass-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4076\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4067\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b5084\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5083\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:a }\",\n              \"testAction\": {\n                \"@id\": \"_:b2509\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ba.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodePattern_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3535\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3529\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b15\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b14\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> _:abc }\",\n              \"testAction\": {\n                \"@id\": \"_:b2489\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1bnodePattern_pass-bnode-into.val\",\n              \"title\": \"1bnodePattern_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1450\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1449\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n                },\n                {\n                  \"@id\": \"_:b5380\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5379\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2470\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodePattern_fail-lit-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3482\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3477\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b4612\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4611\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE PATTERN \\\"bc\\\" } on { BASE <http://a.example/> <s1> <p1> <bc> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2452\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/BASE_Is1_Ip1_Iab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1bnodePattern_fail-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3749\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3743\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b574\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b573\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <bc> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2435\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ibc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-iri-match.val\",\n              \"title\": \"1nonliteralPattern_pass-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b436\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b435\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b1606\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1605\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2416\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ia.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralPattern_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b903\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b900\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b1063\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1061\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> <abc> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2396\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iabc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-iri-long.val\",\n              \"title\": \"1nonliteralPattern_pass-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1100\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1098\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n                },\n                {\n                  \"@id\": \"_:b2896\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2894\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> \\\"ab\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2375\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralPattern_fail-lit-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1314\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b715\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b712\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:bc }\",\n              \"testAction\": {\n                \"@id\": \"_:b2357\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Bbc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-bnode-match.val\",\n              \"title\": \"1nonliteralPattern_pass-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4176\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4173\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b4571\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4570\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:a }\",\n              \"testAction\": {\n                \"@id\": \"_:b2338\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Ba.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1nonliteralPattern_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b179\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b177\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b978\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b976\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> NONLITERAL PATTERN \\\"bc$\\\" } on { <s1> <p1> _:abc }\",\n              \"testAction\": {\n                \"@id\": \"_:b2321\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Babc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1nonliteralPattern_pass-bnode-long.val\",\n              \"title\": \"1nonliteralPattern_pass-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b719\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b716\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n                },\n                {\n                  \"@id\": \"_:b1008\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1005\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2298\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1dotMinusiri3_pass.val\",\n              \"title\": \"1val1dotMinusiri3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b156\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b154\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n                },\n                {\n                  \"@id\": \"_:b1557\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1551\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2606\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiri3_v1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4954\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4953\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n                },\n                {\n                  \"@id\": \"_:b195\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b193\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s1> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2556\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiri3_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b970\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b968\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n                },\n                {\n                  \"@id\": \"_:b2635\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2632\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>-<v2>-<v3>] } on { <s> <p1> <v3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1935\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiri3_v3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4595\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4594\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n                },\n                {\n                  \"@id\": \"_:b5404\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5403\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1886\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1refvsMinusiri3_pass.val\",\n              \"title\": \"1val1refvsMinusiri3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5506\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5505\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n                },\n                {\n                  \"@id\": \"_:b1484\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1483\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1835\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1refvsMinusiri3_v1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4269\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4267\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n                },\n                {\n                  \"@id\": \"_:b148\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b145\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s1> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1785\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1refvsMinusiri3_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1140\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1138\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n                },\n                {\n                  \"@id\": \"_:b2000\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1995\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vs1> = [.-<v1>-<v2>-<v3>] <S> { <p1> $<vs1> } on { <s> <p1> <v3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1732\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1refvsMinusiri3_v3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5022\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5021\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n                },\n                {\n                  \"@id\": \"_:b1522\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1521\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2267\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1dotMinusiriStem3_pass.val\",\n              \"title\": \"1val1dotMinusiriStem3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2965\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2962\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n                },\n                {\n                  \"@id\": \"_:b2967\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2964\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2213\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiriStem3_v1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1320\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1319\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n                },\n                {\n                  \"@id\": \"_:b5068\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5067\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2167\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiriStem3_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3651\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3649\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n                },\n                {\n                  \"@id\": \"_:b3878\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3877\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2028\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiriStem3_v3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5237\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5236\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n                },\n                {\n                  \"@id\": \"_:b798\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b796\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [.-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2101\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1dotMinusiriStem3_v1a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b685\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b682\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n                },\n                {\n                  \"@id\": \"_:b2614\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2615\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>~] } on { <s> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2043\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStem_passv1.val\",\n              \"title\": \"1val1iriStem_passv1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4046\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4039\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n                },\n                {\n                  \"@id\": \"_:b1664\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1663\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>~] } on { <s> <p1> <v1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1986\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStem_passv1a.val\",\n              \"title\": \"1val1iriStem_passv1a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b801\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b799\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n                },\n                {\n                  \"@id\": \"_:b2228\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2222\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v1>~] } on { <s1> <p1> <> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1683\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_I.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStem_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4911\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4910\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n                },\n                {\n                  \"@id\": \"_:b5340\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5339\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3561\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv.val\",\n              \"title\": \"1val1iriStemMinusiri3_passIv\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5266\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5265\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n                },\n                {\n                  \"@id\": \"_:b4847\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4846\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v4> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3539\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv4.val\",\n              \"title\": \"1val1iriStemMinusiri3_passIv4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2738\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2736\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n                },\n                {\n                  \"@id\": \"_:b3815\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3812\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s1> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3513\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiri3_v1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b631\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b629\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n                },\n                {\n                  \"@id\": \"_:b4254\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4252\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s1> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3491\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiri3_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2930\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2928\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n                },\n                {\n                  \"@id\": \"_:b1705\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1700\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3470\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiri3_v3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5233\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5232\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n                },\n                {\n                  \"@id\": \"_:b4661\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4660\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>-<v1>-<v2>-<v3>] } on { <s> <p1> <v1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3450\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiri3_passIv1a.val\",\n              \"title\": \"1val1iriStemMinusiri3_passIv1a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b959\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b957\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n                },\n                {\n                  \"@id\": \"_:b1662\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1661\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3427\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiriStem3_passIv.val\",\n              \"title\": \"1val1iriStemMinusiriStem3_passIv\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1210\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1208\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n                },\n                {\n                  \"@id\": \"_:b1538\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1537\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v4> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3405\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1iriStemMinusiriStem3_passIv4.val\",\n              \"title\": \"1val1iriStemMinusiriStem3_passIv4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4689\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4688\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n                },\n                {\n                  \"@id\": \"_:b101\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b100\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3383\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiriStem3_v1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b929\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b927\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n                },\n                {\n                  \"@id\": \"_:b1386\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1385\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3362\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiriStem3_v2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4469\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4468\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n                },\n                {\n                  \"@id\": \"_:b4127\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4125\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s> <p1> <v3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3343\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiriStem3_v3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3824\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3817\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n                },\n                {\n                  \"@id\": \"_:b3303\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3298\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Stem\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> [<v>~-<v1>~-<v2>~-<v3>~] } on { <s1> <p1> <v1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3320\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1iriStemMinusiriStem3_v1a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5242\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b5240\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n                },\n                {\n                  \"@id\": \"_:b861\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b859\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3302\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p1.val\",\n              \"title\": \"1dotOne2dot_pass_p1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b131\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b130\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n                },\n                {\n                  \"@id\": \"_:b5539\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b5537\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3278\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p2p3.val\",\n              \"title\": \"1dotOne2dot_pass_p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3617\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3615\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b5515\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b5514\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3255\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotOne2dot-oneOf_fail_p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2033\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2025\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b5190\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b141\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#MissedMatchables\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3234\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotOne2dot-someOf_fail_p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b677\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b675\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n                },\n                {\n                  \"@id\": \"_:b539\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b537\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p1 \\\"p1-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3213\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p1.val\",\n              \"title\": \"open1dotOneopen2dotcloseclose_pass_p1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1761\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1757\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n                },\n                {\n                  \"@id\": \"_:b484\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b482\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3188\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotOne2dot_pass_p2p3.val\",\n              \"title\": \"open1dotOneopen2dotcloseclose_pass_p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b72\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b71\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b5394\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5393\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 {(:p1 .|(:p2 .,:p3 .))} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3166\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b532\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b529\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n                },\n                {\n                  \"@id\": \"_:b87\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b85\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3144\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/openopen1dotOne1dotclose1dotclose_pass_p1p3.val\",\n              \"title\": \"openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2175\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2169\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n                },\n                {\n                  \"@id\": \"_:b591\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b589\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3120\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/openopen1dotOne1dotclose1dotclose_pass_p2p3.val\",\n              \"title\": \"openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b531\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b530\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n                },\n                {\n                  \"@id\": \"_:b5066\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5065\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf-unvisited\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3096\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"openopen1dotOne1dotclose1dotclose_fail_p1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5444\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5443\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n                },\n                {\n                  \"@id\": \"_:b500\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b498\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3075\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"openopen1dotOne1dotclose1dotclose_fail_p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b447\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b445\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n                },\n                {\n                  \"@id\": \"_:b518\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b517\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 { ((:p1 .| :p2 .), :p3 .) } / { <x> :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3057\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b119\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b118\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b3315\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3309\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = LITERAL MINLENGTH 5 <S1> { <p1> $<vc1> } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3041\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefIRIREF1_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4153\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4151\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b1626\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1625\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = LITERAL MINLENGTH 5 <S1> { <p1> $<vc1> } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3025\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefIRIREF1_pass-lit-equal.val\",\n              \"title\": \"1val1vExprRefIRIREF1_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3296\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3293\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n                },\n                {\n                  \"@id\": \"_:b5382\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5381\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$_:vc1 = LITERAL MINLENGTH 5 <S1> { <p1> $_:vc1 } on { <s1> <p1> \\\"abcd\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3007\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefbnode1_fail-lit-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1264\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1261\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n                },\n                {\n                  \"@id\": \"_:b3873\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3870\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$_:vc1 = LITERAL MINLENGTH 5 <S1> { <p1> $_:vc1 } on { <s1> <p1> \\\"abcde\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2990\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcde.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefbnode1_pass-lit-equal.val\",\n              \"title\": \"1val1vExprRefbnode1_pass-lit-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2296\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n                },\n                {\n                  \"@id\": \"_:b4350\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4347\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } AND { <p2> . } AND { <p3> . } on { <s1> <p1> 'X'; <p2> 'X'; <p3> 'X' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2968\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ipx_LXX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeAND1dot3X_pass.val\",\n              \"title\": \"1dotShapeAND1dot3X_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3132\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3130\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n                },\n                {\n                  \"@id\": \"_:b3805\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3804\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . } AND { <p2> . } AND { <p3> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2501\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n2\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotShapeAND1dot3X_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1468\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1467\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n                },\n                {\n                  \"@id\": \"_:b737\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b735\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <n1> <p1> <n2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2483\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRefAND3_failAll\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b504\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b503\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n                },\n                {\n                  \"@id\": \"_:b1970\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1966\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2464\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRefAND3_failShape2Shape3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4437\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4436\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n                },\n                {\n                  \"@id\": \"_:b464\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b463\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n3> . <n3> <p3> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2444\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In3.In3_Ip3_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRefAND3_failShape1Shape3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4807\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4806\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n                },\n                {\n                  \"@id\": \"_:b3614\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3610\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n4> . <n4> <p4> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2424\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In4.In4_Ip4_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRefAND3_failShape1Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2397\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2393\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n                },\n                {\n                  \"@id\": \"_:b2802\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2799\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> AND @<S3> AND @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2405\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefAND3_passShape1Shape2Shape3.val\",\n              \"title\": \"1dotRefAND3_passShape1Shape2Shape3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5374\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5373\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n                },\n                {\n                  \"@id\": \"_:b832\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b830\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2381\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1AND1Ref3_pass.val\",\n              \"title\": \"1val1vExpr1AND1AND1Ref3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4797\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4796\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n                },\n                {\n                  \"@id\": \"_:b2618\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2613\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2360\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1AND1Ref3_failvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2733\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2731\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n                },\n                {\n                  \"@id\": \"_:b4992\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4991\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ababab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2341\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1AND1Ref3_failvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2594\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2587\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n                },\n                {\n                  \"@id\": \"_:b3837\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3829\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'baba' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2324\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1AND1Ref3_failvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3443\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3438\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n                },\n                {\n                  \"@id\": \"_:b4123\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4121\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2301\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefAND3_pass.val\",\n              \"title\": \"1val1vExprRefAND3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4925\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4924\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n                },\n                {\n                  \"@id\": \"_:b3906\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3904\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'baba' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1933\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefAND3_failvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5223\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5222\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n                },\n                {\n                  \"@id\": \"_:b4709\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4708\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ababab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2557\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefAND3_failvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b356\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b353\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n                },\n                {\n                  \"@id\": \"_:b4695\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4694\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> AND ... $<vc3> } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1578\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefAND3_failvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3345\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3341\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n                },\n                {\n                  \"@id\": \"_:b425\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b422\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1883\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprAND3_pass.val\",\n              \"title\": \"1val1vExprAND3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3883\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3880\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n                },\n                {\n                  \"@id\": \"_:b576\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b575\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1831\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprAND3_failvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3623\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3619\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n                },\n                {\n                  \"@id\": \"_:b1424\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1423\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'ababab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1778\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprAND3_failvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4118\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4115\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n                },\n                {\n                  \"@id\": \"_:b5300\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5299\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> MINLENGTH 4 AND MAXLENGTH 5 AND ~ '(ab)+' } on { <s1> <p1> 'baba' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1729\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lbaba.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprAND3_failvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3650\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3647\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n                },\n                {\n                  \"@id\": \"_:b4408\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4406\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> <n1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2262\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_In1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_ReflexiveIRI.val\",\n              \"title\": \"refBNodeORrefIRI_ReflexiveIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4761\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4760\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n                },\n                {\n                  \"@id\": \"_:b4077\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4070\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2203\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"refBNodeORrefIRI_ReflexiveShortIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b865\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b863\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n                },\n                {\n                  \"@id\": \"_:b4687\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4686\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n2a> . <n2a> <p1> <n2a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2153\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2a.In2a_Ip1_In2a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_IntoReflexiveIRI.val\",\n              \"title\": \"refBNodeORrefIRI_IntoReflexiveIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b506\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b505\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n                },\n                {\n                  \"@id\": \"_:b1636\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1635\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> _:n2 . _:n2 <p1> _:n2 }\",\n              \"testAction\": {\n                \"@id\": \"_:b2122\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_Bn2.Bn2_Ip1_Bn2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_IntoReflexiveBNode.val\",\n              \"title\": \"refBNodeORrefIRI_IntoReflexiveBNode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b396\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b394\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n                },\n                {\n                  \"@id\": \"_:b5191\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b140\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> <n2a> . <n2a> <p1> <n1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2075\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_In2a.In2a_Ip1_In1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_CyclicIRI_IRI.val\",\n              \"title\": \"refBNodeORrefIRI_CyclicIRI_IRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5390\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5389\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n                },\n                {\n                  \"@id\": \"_:b1046\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1044\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1a> <p1> _:n2 . _:n2 <p1> <n1a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2008\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1a_Ip1_Bn2.Bn2_Ip1_In1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/refBNodeORrefIRI_CyclicIRI_BNode.val\",\n              \"title\": \"refBNodeORrefIRI_CyclicIRI_BNode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b152\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b150\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n                },\n                {\n                  \"@id\": \"_:b891\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b889\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> BNODE @<S1> OR MINLENGTH 20 @<S1> } on { <n1> <p1> <n2a> . <n2a> <p1> <n1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1704\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2a.In2a_Ip1_In1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b423\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b421\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n                },\n                {\n                  \"@id\": \"_:b1189\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1187\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <n1> <p1> <n2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1290\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotRefOR3_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2358\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2355\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n                },\n                {\n                  \"@id\": \"_:b2467\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2463\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3544\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape1.val\",\n              \"title\": \"1dotRefOR3_passShape1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1950\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1691\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n                },\n                {\n                  \"@id\": \"_:b2711\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2710\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n3> . <n3> <p3> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3517\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In3.In3_Ip3_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape2.val\",\n              \"title\": \"1dotRefOR3_passShape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3963\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3961\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n                },\n                {\n                  \"@id\": \"_:b1123\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1121\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <n4> . <n4> <p4> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3493\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In4.In4_Ip4_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape3.val\",\n              \"title\": \"1dotRefOR3_passShape3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5436\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5435\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n                },\n                {\n                  \"@id\": \"_:b4549\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4548\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> @<S2> OR @<S3> OR @<S4> } <S2> { <p2> . } <S3> { <p3> . } <S4> { <p4> . } on { <s1> <p1> <s2>, <s3>, <s4> . <s2> <p2> \\\"X\\\" . <s3> <p3> \\\"X\\\" . <s4> <p4> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3467\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ipx_LXX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotRefOR3_passShape1.val\",\n              \"title\": \"1dotRefOR3_passShape1Shape2Shape3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3778\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3777\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n                },\n                {\n                  \"@id\": \"_:b2532\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2526\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3444\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1OR1OR1Ref3_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4923\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4922\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n                },\n                {\n                  \"@id\": \"_:b121\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b120\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3423\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc1.val\",\n              \"title\": \"1val1vExpr1OR1OR1Ref3_passvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1338\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1337\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n                },\n                {\n                  \"@id\": \"_:b1085\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1083\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'cd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3399\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc2.val\",\n              \"title\": \"1val1vExpr1OR1OR1Ref3_passvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1512\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1511\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n                },\n                {\n                  \"@id\": \"_:b730\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b728\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3376\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc3.val\",\n              \"title\": \"1val1vExpr1OR1OR1Ref3_passvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4950\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4949\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b4547\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4546\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'abcdef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3351\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1OR1Ref3_passvc1vc2vc3.val\",\n              \"title\": \"1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5324\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5323\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b4871\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4870\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'abcdef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3239\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc1vc2vc3.val\",\n              \"title\": \"1val1vExprRefOR3_passvc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1119\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1117\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n                },\n                {\n                  \"@id\": \"_:b3564\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3558\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3262\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc3.val\",\n              \"title\": \"1val1vExprRefOR3_passvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b849\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b847\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n                },\n                {\n                  \"@id\": \"_:b726\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b724\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'cd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3287\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc2.val\",\n              \"title\": \"1val1vExprRefOR3_passvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2652\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2649\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n                },\n                {\n                  \"@id\": \"_:b2757\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2754\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3308\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprRefOR3_passvc1.val\",\n              \"title\": \"1val1vExprRefOR3_passvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1452\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1451\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n                },\n                {\n                  \"@id\": \"_:b496\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b495\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"$<vc1> = ... $<vc3> = ... <S> { <p1> $<vc1> OR ... $<vc3> } on { <s1> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3328\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprRefOR3_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3930\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3926\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n                },\n                {\n                  \"@id\": \"_:b5199\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5198\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3215\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExprOR3_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b490\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b489\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n                },\n                {\n                  \"@id\": \"_:b4624\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4623\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3194\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc1.val\",\n              \"title\": \"1val1vExprOR3_passvc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2827\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2825\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n                },\n                {\n                  \"@id\": \"_:b13\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b12\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'cd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3171\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc2.val\",\n              \"title\": \"1val1vExprOR3_passvc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4735\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4734\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n                },\n                {\n                  \"@id\": \"_:b494\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b493\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'ef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3147\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvc3.val\",\n              \"title\": \"1val1vExprOR3_passvc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b969\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b967\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b820\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b818\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ~'^ab' OR ~'cd' OR ~'ef$' } on { <s1> <p1> 'abcdef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3125\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExprOR3_passvr1vr2vr3.val\",\n              \"title\": \"1val1vExprOR3_passvc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1863\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1861\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n                },\n                {\n                  \"@id\": \"_:b738\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b736\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abcd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3103\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc2.val\",\n              \"title\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1588\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1585\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b981\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b979\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3076\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3.val\",\n              \"title\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b827\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b825\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n                },\n                {\n                  \"@id\": \"_:b4573\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4572\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ababab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3055\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1AND1OR1Ref3_pass-vc1vc3.val\",\n              \"title\": \"1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5516\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5513\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n                },\n                {\n                  \"@id\": \"_:b1266\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1263\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abc' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3038\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labc.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3654\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3652\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b1023\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1020\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abcdef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3022\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2462\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2458\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b359\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b357\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'a' }\",\n              \"testAction\": {\n                \"@id\": \"_:b3002\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4095\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4091\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n                },\n                {\n                  \"@id\": \"_:b427\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b424\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'abcdef' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2985\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcdef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc1.val\",\n              \"title\": \"1val1vExpr1OR1AND1Ref3_pass-vc1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b250\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b249\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n                },\n                {\n                  \"@id\": \"_:b4495\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4494\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ababab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2963\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lababab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc1vc3.val\",\n              \"title\": \"1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2677\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2675\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b310\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b309\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND @<vc2> OR @<vc3> } on { <s1> <p1> 'ab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2495\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vExpr1OR1AND1Ref3_pass-vc2vc3.val\",\n              \"title\": \"1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1486\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1485\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n                },\n                {\n                  \"@id\": \"_:b29\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b28\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2473\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1029\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1027\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n                },\n                {\n                  \"@id\": \"_:b2922\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2920\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'cd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2451\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Lcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b113\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b112\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n                },\n                {\n                  \"@id\": \"_:b4087\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4080\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueReference\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<vc1> ... <vc3> ... <S> { <p1> @<vc1> AND ... @<vc3> } on { <s1> <p1> 'abcd' }\",\n              \"testAction\": {\n                \"@id\": \"_:b2432\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labcd.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b220\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b218\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n                },\n                {\n                  \"@id\": \"_:b1744\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1741\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2412\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard2_fail-p1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2939\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2936\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n                },\n                {\n                  \"@id\": \"_:b7\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b6\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X2\",\n              \"testAction\": {\n                \"@id\": \"_:b2390\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1X2.val\",\n              \"title\": \"open3Onedotclosecard2_pass-p1X2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4499\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4498\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n                },\n                {\n                  \"@id\": \"_:b3248\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3242\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X3\",\n              \"testAction\": {\n                \"@id\": \"_:b2366\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard2_fail-p1X3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5172\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5171\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n                },\n                {\n                  \"@id\": \"_:b4919\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4918\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-n\\\" }X4\",\n              \"testAction\": {\n                \"@id\": \"_:b2345\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard2_fail-p1X4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b232\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b230\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n                },\n                {\n                  \"@id\": \"_:b3931\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3929\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2326\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1p2.val\",\n              \"title\": \"open3Onedotclosecard2_pass-p1p2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1432\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1431\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n                },\n                {\n                  \"@id\": \"_:b3139\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3136\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2305\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p1p3.val\",\n              \"title\": \"open3Onedotclosecard2_pass-p1p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1080\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1077\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n                },\n                {\n                  \"@id\": \"_:b3161\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3158\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2603\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard2-p2p3.val\",\n              \"title\": \"open3Onedotclosecard2_pass-p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b324\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b321\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b107\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b106\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2538\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard2_fail-p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3073\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3068\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n                },\n                {\n                  \"@id\": \"_:b628\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b626\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b1909\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard23_fail-p1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4035\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4031\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n                },\n                {\n                  \"@id\": \"_:b4930\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4929\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X2\",\n              \"testAction\": {\n                \"@id\": \"_:b1856\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1X2.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p1X2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1388\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1387\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n                },\n                {\n                  \"@id\": \"_:b583\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b581\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X3\",\n              \"testAction\": {\n                \"@id\": \"_:b1798\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1X3.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p1X3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5256\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1547\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n                },\n                {\n                  \"@id\": \"_:b1709\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1708\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\" }X4\",\n              \"testAction\": {\n                \"@id\": \"_:b1734\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1X4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open3Onedotclosecard23_fail-p1X4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2895\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2893\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n                },\n                {\n                  \"@id\": \"_:b4281\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4279\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2261\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p2.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p1p2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b662\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b660\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n                },\n                {\n                  \"@id\": \"_:b1500\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1499\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2198\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p3.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p1p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b221\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b219\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n                },\n                {\n                  \"@id\": \"_:b3306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3299\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2139\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p2p3.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b931\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b928\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b2500\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2497\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> . ){2,3} } / { <s> <p1> \\\"p1-0\\\"; <p2> \\\"p2-0\\\"; <p3> \\\"p3-0\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2109\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3Onedotclosecard23-p1p2p3.val\",\n              \"title\": \"open3Onedotclosecard23_pass-p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5304\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5303\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n                },\n                {\n                  \"@id\": \"_:b1206\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1203\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedOneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .| <p2> .| <p3> .| <p4> . ){2,3} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" ; <p4> \\\"p4-n\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2038\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3p4.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"open4Onedotclosecard23_fail-p1p2p3p4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2550\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2544\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n                },\n                {\n                  \"@id\": \"_:b187\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b185\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedGroup\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .; <p2> .; <p3> . ){2,3} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" }X3\",\n              \"testAction\": {\n                \"@id\": \"_:b1974\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3X3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotclosecard23-p1p2p3X3.val\",\n              \"title\": \"open3groupdotclosecard23_pass-p1p2p3X3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3896\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3893\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n                },\n                {\n                  \"@id\": \"_:b95\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b94\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#AndShapeShapeession\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> minlength 4 } AND { <p1> maxlength 5 } AND { <p1> pattern '(ab)+' } on { <s1> <p1> 'abab' }\",\n              \"testAction\": {\n                \"@id\": \"_:b1567\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Labab.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1vShapeANDRef3_pass.val\",\n              \"title\": \"1val1vShapeANDRef3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1192\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1190\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n                },\n                {\n                  \"@id\": \"_:b3935\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3933\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> CLOSED { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3555\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotClosed_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b688\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b686\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n                },\n                {\n                  \"@id\": \"_:b4675\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4674\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3528\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotClosed_fail_lower\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5414\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5413\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n                },\n                {\n                  \"@id\": \"_:b2511\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1932\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on { <s> <p1> <o1>; <p2> <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3504\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1;Ip2_Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotClosed_fail_higher\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5488\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5487\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n                },\n                {\n                  \"@id\": \"_:b3949\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3947\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> IRI PATTERN '^https?://' { <p1> <dt1> ; <p2> BNODE { <p3> LITERAL ; <p4> IRI PATTERN '^https://' @<S1>? } AND CLOSED { <p3> . ; <p4> . } } on { <n1> <p1> 'ab'^^<dt1> ; <p2> [  <p3> 'ab' ; <p4> ex:n1 ] }\",\n              \"testAction\": {\n                \"@id\": \"_:b3483\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested2groupIRIRef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested2groupIRIRef_pass.val\",\n              \"title\": \"FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5126\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5125\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n                },\n                {\n                  \"@id\": \"_:b4030\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4029\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Closed\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> IRI PATTERN '^https?://' { <p1> <dt1> ; <p2> BNODE { <p3> LITERAL ; <p4> IRI PATTERN '^https://' @<S1>? } AND CLOSED { <p3> . ; <p4> . } } on { <n1> <p1> 'ab'^^<dt1> ; <p2> [  <p3> 'ab' ; <p4> ex:n1 ; <p5> 5 ] }\",\n              \"testAction\": {\n                \"@id\": \"_:b3457\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/FocusIRI2groupBnodeNested3groupIRIRef.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1275\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1273\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b1494\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1493\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> [<o1>] } on { <s1> <p1> <o1> }\",\n              \"rdfs:seeAlso\": [\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b4473\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b4472\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    },\n                    {\n                      \"@id\": \"_:b3496\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3492\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v2> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1796\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"title\": \"1val1IRIREF_v2\"\n                },\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b3290\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3286\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    },\n                    {\n                      \"@id\": \"_:b1214\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1212\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1832\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREF_pass.val\",\n                  \"title\": \"1val1IRIREF_pass\"\n                }\n              ],\n              \"testAction\": {\n                \"@id\": \"_:b3430\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1_Is1_Ip1_Io1.val\",\n              \"title\": \"1val1IRIREFExtra1_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b31\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b30\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b4575\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4574\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> [<o1>] } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3406\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1_Is1_Ip1_Io1.val\",\n              \"title\": \"1val1IRIREFExtra1_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4527\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4526\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n                },\n                {\n                  \"@id\": \"_:b5426\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5425\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>] } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3380\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val2IRIREFExtra1_fail-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b340\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b339\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b2260\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2255\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>]+ } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3359\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val2IRIREFPlusExtra1_Is1_Ip1_Io1,Io2.val\",\n              \"title\": \"1val2IRIREFPlusExtra1_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2847\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2844\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n                },\n                {\n                  \"@id\": \"_:b1652\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1651\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ValueSet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> [<o1> <o2>] } on { <s> <p1> <o1>, _:o2 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3336\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Bo2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val2IRIREFExtra1_bnode_Is1_Ip1_Io1.val\",\n              \"title\": \"1val2IRIREFExtra1_pass-iri-bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3523\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3519\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b186\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b184\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p2> { <p1> [<o1>] } on { <s1> <p1> <o1> }\",\n              \"rdfs:seeAlso\": [\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b4473\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b4472\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    },\n                    {\n                      \"@id\": \"_:b3496\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3492\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v2> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1796\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"title\": \"1val1IRIREF_v2\"\n                },\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b3290\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3286\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    },\n                    {\n                      \"@id\": \"_:b1214\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1212\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1832\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREF_pass.val\",\n                  \"title\": \"1val1IRIREF_pass\"\n                }\n              ],\n              \"testAction\": {\n                \"@id\": \"_:b3305\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1p2_Is1_Ip1_Io1.val\",\n              \"title\": \"1val1IRIREFExtra1p2_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4614\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4613\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n                },\n                {\n                  \"@id\": \"_:b4102\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4096\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p2> { <p1> [<o1>] } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3280\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1val1IRIREFExtra1p2_fail-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b62\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b61\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b2567\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2561\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#MissedMatchables\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \":S1 EXTRA <p1> <p2> <p3> {:p1 .|:p2 .,:p3 .} / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3256\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotOne2dotExtra-someOf_pass_p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b790\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b788\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b315\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p0> . | <p1> [<o1>], <p2> .? } on { <s1> <p1> <o1> }\",\n              \"rdfs:seeAlso\": [\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b4473\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b4472\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    },\n                    {\n                      \"@id\": \"_:b3496\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3492\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v2> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1796\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv2.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"title\": \"1val1IRIREF_v2\"\n                },\n                {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b3290\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b3286\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    },\n                    {\n                      \"@id\": \"_:b1214\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1212\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n                    }\n                  ],\n                  \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                    \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"rdfs:comment\": \"<S> { <p1> [<v1>] } on { <s> <p1> <v1> }\",\n                  \"testAction\": {\n                    \"@id\": \"_:b1832\",\n                    \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                      \"@id\": \"http://a.example/s1\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                      \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n                    },\n                    \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                      \"@id\": \"http://a.example/S1\"\n                    }\n                  },\n                  \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREF_pass.val\",\n                  \"title\": \"1val1IRIREF_pass\"\n                }\n              ],\n              \"testAction\": {\n                \"@id\": \"_:b3227\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1One_Is1_Ip1_Io1.val\",\n              \"title\": \"1val1IRIREFExtra1One_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b483\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b481\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b3600\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3598\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p0> . | <p1> [<o1>], <p2> .? } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3201\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1val1IRIREFExtra1One_Is1_Ip1_Io1.val\",\n              \"title\": \"1val1IRIREFExtra1One_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1925\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1919\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b4535\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4534\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#VapidExtra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3176\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"1dotExtra1_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1232\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1229\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n                },\n                {\n                  \"@id\": \"_:b5530\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5529\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#VapidExtra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> { <p1> . } on { <s> <p1> <o1>, <o2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3151\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1,Io2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotExtra1_fail-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b933\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b930\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b4455\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4454\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> <p2> <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3128\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdotExtra3_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b564\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b563\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b1520\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1519\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> EXTRA <p2> EXTRA <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3102\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdot3Extra_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1978\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1979\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n                },\n                {\n                  \"@id\": \"_:b5504\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5503\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX ex: <http://a.example/> <S> EXTRA ex:p1 ex:p2 ex:p3 { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>; <p2> <o2>; <p3> <o3> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3072\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdotExtra3NLex_pass-iri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4405\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4403\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b2929\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2927\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> <p2> <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3052\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdotExtra3_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2772\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2769\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b2329\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2325\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> EXTRA <p1> EXTRA <p2> EXTRA <p3> { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3032\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdot3Extra_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5330\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5329\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n                },\n                {\n                  \"@id\": \"_:b2320\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#IriEquivalence\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Extra\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"PREFIX ex: <http://a.example/> <S> EXTRA ex:p1 ex:p2 ex:p3 { <p1> [<o1>], <p2> [<o2>], <p3> [<o3>] } on { <s> <p1> <o1>, <o1a>; <p2> <o2>, <o2a>; <p3> <o3>, <o3a> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3010\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ipn_IonX3.Is_Ipn_IonaX3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/3groupdotExtra3_Is_Ipn_IonX3.val\",\n              \"title\": \"3groupdotExtra3NLex_pass-iri2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3868\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3862\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b2351\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2348\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start=<S> <S> { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2992\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"startRefIRIREF_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b393\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b391\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n                },\n                {\n                  \"@id\": \"_:b1202\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1199\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start=<S> <S> { <p1> . } on { <s> <p0> <o0>; <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2972\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip0_Io0;Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_pass.val\",\n              \"title\": \"startRefIRIREF_pass-others_lexicallyEarlier\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5231\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5230\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b4487\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4486\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start=<S> <S> { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2506\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n                }\n              },\n              \"title\": \"startRefIRIREF_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3059\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3053\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b759\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b757\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start=_:S _:S { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2486\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/bnode1dot_pass.val\",\n              \"title\": \"startRefbnode_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1891\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1887\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b2917\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2915\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start=_:S _S { <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2466\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n                }\n              },\n              \"title\": \"startRefbnode_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2723\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2721\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b4477\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4476\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start={ <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2447\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\",\n              \"title\": \"startInline_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1917\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1911\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b3190\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3186\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start= { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2427\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\",\n              \"title\": \"startEqualSpaceInline_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5502\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5501\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n                },\n                {\n                  \"@id\": \"_:b3355\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3348\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start= { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2407\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.shex\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startInline_pass.val\",\n              \"title\": \"startSpaceEqualInline_pass-noOthers\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5064\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5063\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n                },\n                {\n                  \"@id\": \"_:b1701\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1695\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Start\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"start={ <p1> . } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2383\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n                }\n              },\n              \"title\": \"startInline_fail-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b986\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b984\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n                },\n                {\n                  \"@id\": \"_:b474\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b473\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { &<S2>, <p1> . } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" ; <p2> \\\"Y\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2363\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.In1_Ip2_LY.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2EachInclude1_pass.val\",\n              \"title\": \"2EachInclude1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3662\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3660\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n                },\n                {\n                  \"@id\": \"_:b1508\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1507\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> ., &<S2> } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" ; <p2> \\\"Y\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2340\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.In1_Ip2_LY.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2EachInclude1-after_pass.val\",\n              \"title\": \"2EachInclude1-after_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3174\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3170\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n                },\n                {\n                  \"@id\": \"_:b584\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b582\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { &<S2> | <p1> . } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2316\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2OneInclude1_pass.val\",\n              \"title\": \"2OneInclude1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5086\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5085\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n                },\n                {\n                  \"@id\": \"_:b56\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": null,\n                  \"result\": {\n                    \"@id\": \"_:b55\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:untested\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OneOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Include\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { <p1> . | &<S2> } <S2> { <p2> . } on { <n1> <p1> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b2065\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2OneInclude1_pass.val\",\n              \"title\": \"2OneInclude1-after_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b556\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b555\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n                },\n                {\n                  \"@id\": \"_:b4897\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4896\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <annot> <IRIREF> } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2579\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotIRIREF_pass.val\",\n              \"title\": \"1dotAnnotIRIREF_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3992\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3990\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n                },\n                {\n                  \"@id\": \"_:b5554\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5553\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <annot> <IRIREF> } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2518\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotAnnotIRIREF_missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2734\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2732\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n                },\n                {\n                  \"@id\": \"_:b1144\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1142\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .+; <annot> <IRIREF> } on { <s1> <p1> 'a', <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1894\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_La,Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotPlusAnnotIRIREF_pass.val\",\n              \"title\": \"1dotPlusAnnotIRIREF_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4397\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4395\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n                },\n                {\n                  \"@id\": \"_:b5392\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5391\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; a <IRIREF> } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1836\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotAIRIREF_pass.val\",\n              \"title\": \"1dotAnnotAIRIREF_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1406\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1405\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n                },\n                {\n                  \"@id\": \"_:b5258\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5257\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <annot> 'STRING_LITERAL1' } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1772\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnotSTRING_LITERAL1_pass.val\",\n              \"title\": \"1dotAnnotSTRING_LITERAL1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2845\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2842\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n                },\n                {\n                  \"@id\": \"_:b111\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b110\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1584\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotAnnot3_pass.val\",\n              \"title\": \"1dotAnnot3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3697\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3690\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n                },\n                {\n                  \"@id\": \"_:b5486\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5485\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2235\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotAnnot3_missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5494\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5493\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n                },\n                {\n                  \"@id\": \"_:b1464\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1463\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2184\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedotAnnot3_pass.val\",\n              \"title\": \"1inversedotAnnot3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4553\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4552\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n                },\n                {\n                  \"@id\": \"_:b3219\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3214\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> .; <a1> '1'; <a1> '2'; <a1> '3'; } on { <s> <p2> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2057\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip2_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1inversedotAnnot3_missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2426\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2421\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b4731\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4730\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b2073\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/o1\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2104\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCode1_pass.val\",\n              \"title\": \"1dotCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3402\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3398\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b2659\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2657\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b1958\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/o1\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>% } + %<Test>{ print(o) %} on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2012\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#semActs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.semact\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotNoCode1_pass.val\",\n              \"title\": \"1dotNoCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5058\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5057\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b2823\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2821\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b1552\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/o1\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1940\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/o1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1inversedotCode1_pass.val\",\n              \"title\": \"1inversedotCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3738\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3735\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n                },\n                {\n                  \"@id\": \"_:b1542\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1541\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrderedSemanticActions\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3525\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/s1\"\n                  },\n                  {\n                    \"@id\": \"_:b3520\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/p1\"\n                  },\n                  {\n                    \"@id\": \"_:b3515\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"http://a.example/o1\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>{ print(s) %} %<Test>{ print(p) %} %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3541\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCode3_pass.val\",\n              \"title\": \"1dotCode3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3115\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3111\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n                },\n                {\n                  \"@id\": \"_:b176\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b173\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3473\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/#a\"\n                    },\n                    \"mf:prints\": \"http://a.example/s1\"\n                  },\n                  {\n                    \"@id\": \"_:b3466\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/#b\"\n                    },\n                    \"mf:prints\": \"http://a.example/p1\"\n                  },\n                  {\n                    \"@id\": \"_:b3463\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/#c\"\n                    },\n                    \"mf:prints\": \"http://a.example/o1\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test#a>% %<Test#b>% %<Test#c>% } + %<Test/#a>{ print(s) %} %<Test/#b>{ print(p) %} %<Test/#c>{ print(o) %} on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3490\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#semActs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.semact\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotNoCode3_pass.val\",\n              \"title\": \"1dotNoCode3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1081\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1079\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n                },\n                {\n                  \"@id\": \"_:b4841\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4840\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>{ print(s) %}%<Test>{ fail(s) %}%<Test>{ print(o) %} } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3440\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1dotCode3fail_abort\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5235\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5234\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n                },\n                {\n                  \"@id\": \"_:b635\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b633\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3403\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"%{\\\\\\\\%}\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . %<Test>{ print(o) %} } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3417\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotCodeWithEscapes1_pass.val\",\n              \"title\": \"1dotCodeWithEscapes1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1566\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1562\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b3714\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3713\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3371\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"shape action\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } %<Test>{ print(\\\"shape action\\\") %} on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3385\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeCode1_pass.val\",\n              \"title\": \"1dotShapeCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4635\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4634\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b5144\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5143\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3333\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"shape action\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } %<Test>% + %<Test>{ print(o) %} on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3349\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#semActs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.semact\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dotShapeNoCode1_pass.val\",\n              \"title\": \"1dotShapeNoCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b568\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b567\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n                },\n                {\n                  \"@id\": \"_:b4384\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4382\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3300\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"group semAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> ., <p2> ., <p3> . ) %<Test/>{ print(\\\"group semAct\\\") %} } / { :s1 :p1 \\\"p1-0\\\"; :p2 \\\"p2-0\\\"; :p3 \\\"p3-0\\\" . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3312\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotcloseCode1-p1p2p3.val\",\n              \"title\": \"open3groupdotcloseCode1-p1p2p3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5270\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5269\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b2485\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2481\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3265\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{print('startAct')%} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3279\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode1_pass.val\",\n              \"title\": \"startCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4620\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4619\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n                },\n                {\n                  \"@id\": \"_:b835\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b833\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalSemanticAction\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3228\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>% <S> { <p1> . } + %<Test>{print(\\\"startAct\\\")%} on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3245\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#semActs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.semact\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startNoCode1_pass.val\",\n              \"title\": \"startNoCode1_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4803\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4802\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n                },\n                {\n                  \"@id\": \"_:b5251\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5250\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3197\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{ fail('startAct') %} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3207\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"startCode1fail_abort\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1153\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1151\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n                },\n                {\n                  \"@id\": \"_:b2933\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2931\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3162\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{print('startAct')%} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3177\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode1_pass.val\",\n              \"title\": \"startCode1startRef_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4939\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4940\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n                },\n                {\n                  \"@id\": \"_:b4671\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4670\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3131\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{ fail('startAct') %} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3141\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"startCode1startReffail_abort\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1553\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1289\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n                },\n                {\n                  \"@id\": \"_:b3666\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3664\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3094\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct 1\\\"\"\n                  },\n                  {\n                    \"@id\": \"_:b3089\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct 2\\\"\"\n                  },\n                  {\n                    \"@id\": \"_:b3085\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"startAct 3\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{print('startAct 1')%} %<Test>{print('startAct 2')%} %<Test>{print('startAct 3')%} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3109\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/startCode3_pass.val\",\n              \"title\": \"startCode3_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2631\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2628\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n                },\n                {\n                  \"@id\": \"_:b3960\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3957\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"%<Test>{print('startAct 1')%} %<Test>{ fail('startAct 2') %} %<Test>{print('startAct 3')%} <S> { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3063\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"startCode3fail_abort\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b777\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b774\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n                },\n                {\n                  \"@id\": \"_:b3591\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3589\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Annotation\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#RepeatedGroup\"\n                }\n              ],\n              \"mf:extensionResults\": {\n                \"@list\": [\n                  {\n                    \"@id\": \"_:b3035\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"group semAct 1\\\"\"\n                  },\n                  {\n                    \"@id\": \"_:b3029\",\n                    \"mf:extension\": {\n                      \"@id\": \"http://shex.io/extensions/Test/\"\n                    },\n                    \"mf:prints\": \"\\\"group semAct 2\\\"\"\n                  }\n                ]\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> { ( <p1> .; <p2> .; <p3> . ){2,3} // <annot1> \\\"1\\\" // <annot2> \\\"2\\\" // <annot3> \\\"3\\\" %<Test/>{ p(\\\"...1\\\") %} %<Test/>{ p(\\\"...2\\\") %} } / { <s> <p1> \\\"p1-n\\\"; <p2> \\\"p2-n\\\"; <p3> \\\"p3-n\\\" }X3\",\n              \"testAction\": {\n                \"@id\": \"_:b3045\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/p1p2p3X3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/open3groupdotclosecard23Annot3Code2-p1p2p3X3.val\",\n              \"title\": \"open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3932\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3928\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n                },\n                {\n                  \"@id\": \"_:b3122\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3118\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI {  } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2505\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass-focus.val\",\n              \"title\": \"0focusIRI_other\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2903\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2901\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n                },\n                {\n                  \"@id\": \"_:b4519\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4518\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b2969\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"0focusIRI_other_fail-bnodeFocusLabel\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b907\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b908\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n                },\n                {\n                  \"@id\": \"_:b348\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b346\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> IRI {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b2993\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0_pass-focus.val\",\n              \"title\": \"0focusIRI_empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2899\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2897\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n                },\n                {\n                  \"@id\": \"_:b4004\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4003\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b3012\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b3013\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"0focusIRI_empty_fail-bnodeFocusLabel\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5518\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5517\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n                },\n                {\n                  \"@id\": \"_:b2959\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2957\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b2480\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"0focusBNODE_empty_fail-iriFocusLabel\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3568\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3566\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n                },\n                {\n                  \"@id\": \"_:b1\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b0\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b2459\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass-focus.val\",\n              \"title\": \"0focusBNODE_empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4845\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4844\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n                },\n                {\n                  \"@id\": \"_:b5332\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5331\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE {  } on { }\",\n              \"testAction\": {\n                \"@id\": \"_:b2437\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"0focusBNODE_other_fail-iriFocusLabel\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b670\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b668\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n                },\n                {\n                  \"@id\": \"_:b362\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b360\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Empty\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE {  } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2413\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/0abcd_pass-focus.val\",\n              \"title\": \"0focusBNODE_other\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1093\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1091\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n                },\n                {\n                  \"@id\": \"_:b318\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b316\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI { <p1> . } on <s> in { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2388\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusIRI_dot_fail-bnodeFocusLabel\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2840\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2838\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n                },\n                {\n                  \"@id\": \"_:b4946\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4945\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI { <p1> . } on <s> in { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2364\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusIRI_dot_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1114\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1112\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n                },\n                {\n                  \"@id\": \"_:b2937\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2935\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE { <p1> . } on <s> in { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2339\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusBNODE_dot_fail-iriFocusLabel-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b831\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b829\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n                },\n                {\n                  \"@id\": \"_:b3847\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3841\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2318\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusBNODE_dot_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2673\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2671\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b1672\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1572\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> NONLITERAL { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2066\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusnonLiteral-dot_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1622\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1621\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n                },\n                {\n                  \"@id\": \"_:b5184\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5183\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2575\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@value\": \"ab\",\n                  \"@type\": \"http://a.example/bloodType\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/focusdatatype_pass.val\",\n              \"title\": \"focusdatatype_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1034\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1032\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n                },\n                {\n                  \"@id\": \"_:b4463\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4462\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#focusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2512\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_LabDTbloodType999.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@value\": \"ab\",\n                  \"@type\": \"http://a.example/bloodType999\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"focusdatatype_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2237\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2231\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n                },\n                {\n                  \"@id\": \"_:b2656\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2654\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1882\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/focusvs_pass.val\",\n              \"title\": \"focusvs_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b797\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b795\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n                },\n                {\n                  \"@id\": \"_:b234\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b231\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1819\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Iv1a.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"title\": \"focusvs_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5512\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5511\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n                },\n                {\n                  \"@id\": \"_:b3199\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3196\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Unsatisfiable\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] AND <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b1760\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"title\": \"1focusvsANDdatatype_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3757\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3756\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n                },\n                {\n                  \"@id\": \"_:b2693\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2691\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] AND IRI on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2287\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsANDIRI_pass.val\",\n              \"title\": \"1focusvsANDIRI_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2640\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2638\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n                },\n                {\n                  \"@id\": \"_:b4753\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4752\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] AND IRI on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2224\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v4\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"title\": \"1focusvsANDIRI_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2981\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2978\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n                },\n                {\n                  \"@id\": \"_:b4589\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4588\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2168\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsORdatatype_pass-val.val\",\n              \"title\": \"1focusvsORdatatype_pass-val\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1244\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1242\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n                },\n                {\n                  \"@id\": \"_:b125\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b124\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2125\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/v4\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"title\": \"1focusvsORdatatype_fail-val\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1097\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1095\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n                },\n                {\n                  \"@id\": \"_:b5060\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5059\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2078\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@value\": \"v1\",\n                  \"@type\": \"http://a.example/dt1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusvsORdatatype_pass-dt.val\",\n              \"title\": \"1focusvsORdatatype_pass-dt\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2430\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2425\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n                },\n                {\n                  \"@id\": \"_:b2745\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2743\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> [<v1> <v2> <v3>] OR <dt1> on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2009\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@value\": \"v1\",\n                  \"@type\": \"http://a.example/dt2\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/vs1\"\n                }\n              },\n              \"title\": \"1focusvsORdatatype_fail-dt\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3659\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3657\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b2984\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2982\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b1702\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusLength-dot_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2789\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2786\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b4119\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4117\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3560\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusLength-dot_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b273\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b271\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b2114\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2110\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3533\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusLength-dot_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1118\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1116\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b2633\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2630\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3500\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusLength-dot_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4669\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4668\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b1122\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1120\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3475\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusLength-dot_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5170\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5169\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b4423\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4422\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> LENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrst <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3445\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2300\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusLength-dot_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2879\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2876\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b5274\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5273\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3421\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusMinLength-dot_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3592\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3573\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b1536\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1535\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3395\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusMinLength-dot_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1378\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1377\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b1104\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1101\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3367\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1s1a_pass.val\",\n              \"title\": \"1focusMinLength-dot_pass-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5239\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5238\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b2716\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2714\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3340\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusMinLength-dot_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2568\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2564\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b117\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b116\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3314\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusMinLength-dot_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b977\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b975\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b4324\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4321\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3289\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2300\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1abcdefghijklmnopqrst_pass.val\",\n              \"title\": \"1focusMinLength-dot_pass-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3204\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3200\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b4927\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4926\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3259\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1s_pass.val\",\n              \"title\": \"1focusMaxLength-dot_pass-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2670\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2668\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b2682\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2680\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3231\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusMaxLength-dot_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1267\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1265\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b4006\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4005\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3203\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusMaxLength-dot_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4811\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4810\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b3508\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3505\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3179\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1abcd_pass.val\",\n              \"title\": \"1focusMaxLength-dot_pass-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4517\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4516\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n                },\n                {\n                  \"@id\": \"_:b3937\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3934\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3148\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusMaxLength-dot_pass-bnode-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5386\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5385\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b2343\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2337\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> MINLENGTH 19 { <p1> . } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3121\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2300\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusMaxLength-dot_fail-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b322\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b320\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b862\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b860\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s2> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3097\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is2_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s2\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusPattern-dot_fail-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3379\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3377\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n                },\n                {\n                  \"@id\": \"_:b1329\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1330\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3070\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusPattern-dot_fail-iri-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4247\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4245\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b1374\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1373\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN 'http://a.example/s1' { <p1> } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3054\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusPattern-dot_pass-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3850\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3849\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n                },\n                {\n                  \"@id\": \"_:b756\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b754\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN '^http://a.example/s1$' { <p1> } on { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3033\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusPattern-dot_fail-iri-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b914\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b912\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n                },\n                {\n                  \"@id\": \"_:b1310\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1309\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { <s2> <p1> <o> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3015\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is2_Ip1_Io.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s2\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusPatternB-dot_fail-iri-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1334\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1333\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n                },\n                {\n                  \"@id\": \"_:b5128\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5127\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2995\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusPatternB-dot_fail-bnode-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3953\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3951\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n                },\n                {\n                  \"@id\": \"_:b4996\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4995\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2976\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusPatternB-dot_pass-bnode-match\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5249\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5248\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n                },\n                {\n                  \"@id\": \"_:b1436\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1435\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#PaternFacet\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> PATTERN 'abcdefghijklmnopqrs' { <p1> } on { _:abcdefghijklmnopqrst <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2502\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2300\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusPatternB-dot_pass-bnode-long.val\",\n              \"title\": \"1focusPatternB-dot_pass-bnode-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3274\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3271\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n                },\n                {\n                  \"@id\": \"_:b867\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b864\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2475\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3487\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3485\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n                },\n                {\n                  \"@id\": \"_:b4022\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4020\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2450\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusIRILength_dot_fail-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1602\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1601\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n                },\n                {\n                  \"@id\": \"_:b2282\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2276\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2428\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusIRILength_dot_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1420\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1419\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n                },\n                {\n                  \"@id\": \"_:b548\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b547\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> IRI LENGTH 19 { <p1> . } on <s> in { <s1a> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2401\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1a_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1a\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusIRILength_dot_fail-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4019\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4016\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n                },\n                {\n                  \"@id\": \"_:b1532\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1531\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LexicalBNode\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2376\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b246\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b244\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n                },\n                {\n                  \"@id\": \"_:b5213\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5212\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcd <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2352\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcd_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2353\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusBNODELength_dot_fail-short\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b858\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b856\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n                },\n                {\n                  \"@id\": \"_:b4190\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4189\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrs <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2328\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrs_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2319\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focusBNODE_dot_pass.val\",\n              \"title\": \"1focusBNODELength_dot_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2382\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2378\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n                },\n                {\n                  \"@id\": \"_:b2644\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2642\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ToldBNode\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> BNODE LENGTH 19 { <p1> . } on <s> in { _:abcdefghijklmnopqrst <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2299\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Babcdefghijklmnopqrst_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"_:b2300\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"1focusBNODELength_dot_fail-long\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2887\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2885\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n                },\n                {\n                  \"@id\": \"_:b303\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b301\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#FocusConstraint\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#LengthFacet\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> NONLITERAL LENGTH 19 { <p1> . } on { <s1> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2600\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1focus_dot_pass.val\",\n              \"title\": \"1focusnonLiteralLength-dot_pass-iri-equal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5207\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5206\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n                },\n                {\n                  \"@id\": \"_:b276\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b274\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2527\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-empty.val\",\n              \"title\": \"NOT1dotOR2dot_pass-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2918\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2916\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n                },\n                {\n                  \"@id\": \"_:b2037\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2034\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b1888\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-empty.val\",\n              \"title\": \"NOT1dotOR2dot_pass-NoShape1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b955\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b953\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b1660\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1659\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b1817\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dot_pass-Shape2.val\",\n              \"title\": \"NOT1dotOR2dot_pass-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1620\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1619\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b4168\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4166\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b1749\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"NOT1dotOR2dot_fail-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1110\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1107\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n                },\n                {\n                  \"@id\": \"_:b5048\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5047\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2271\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-empty.val\",\n              \"title\": \"NOT1dotOR2dotX3_pass-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2295\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2064\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n                },\n                {\n                  \"@id\": \"_:b21\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b20\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2199\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-empty.val\",\n              \"title\": \"NOT1dotOR2dotX3_pass-NoShape1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3261\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3257\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b1448\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1447\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2134\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3_pass-Shape2.val\",\n              \"title\": \"NOT1dotOR2dotX3_pass-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1318\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1317\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b2779\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2777\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2095\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"NOT1dotOR2dotX3_fail-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4501\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4500\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n                },\n                {\n                  \"@id\": \"_:b3644\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3641\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b2026\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"NOT1dotOR2dotX3AND1_fail-empty\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3516\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3512\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n                },\n                {\n                  \"@id\": \"_:b4599\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4598\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b1951\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip2_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"NOT1dotOR2dotX3AND1_fail-NoShape1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2891\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2889\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b486\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b485\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b1675\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In1_Ip2_In3.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/NOT1dotOR2dotX3AND1_pass-Shape2.val\",\n              \"title\": \"NOT1dotOR2dotX3AND1_pass-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b379\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b377\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n                },\n                {\n                  \"@id\": \"_:b3897\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3895\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#OrValueExpression\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#NotValueExpression\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@\",\n              \"testAction\": {\n                \"@id\": \"_:b3536\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"title\": \"NOT1dotOR2dotX3AND1_fail-Shape2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b786\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b784\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n                },\n                {\n                  \"@id\": \"_:b3387\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3382\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<Sext> EXTERNAL + <Sext> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3507\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n2\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/Sext\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/shapeExtern_pass.val\",\n              \"title\": \"shapeExtern_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5490\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5489\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n                },\n                {\n                  \"@id\": \"_:b4044\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4042\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<Sext> EXTERNAL + <Sext> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3476\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/Sext\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n                }\n              },\n              \"title\": \"shapeExtern_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4183\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4181\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n                },\n                {\n                  \"@id\": \"_:b4928\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3889\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> @<Sext> } <Sext> EXTERNAL + <S> { <p2> . } on { <s1> <p1> <n2> . <n2> <p2> \\\"X\\\" }\",\n              \"testAction\": {\n                \"@id\": \"_:b3447\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.In2_Ip2_LX.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/shapeExternRef_pass.val\",\n              \"title\": \"shapeExternRef_pass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2637\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2634\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n                },\n                {\n                  \"@id\": \"_:b4092\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4090\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#SemanticAction\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ExternalShape\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> @<Sext> } <Sext> EXTERNAL + <S> { <p2> . } on { <s1> <p1> <n2> }\",\n              \"testAction\": {\n                \"@id\": \"_:b3415\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/In1_Ip1_In2.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/n1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shapeExterns\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shextern\"\n                }\n              },\n              \"title\": \"shapeExternRef_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b512\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b511\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n                },\n                {\n                  \"@id\": \"_:b251\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b248\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { :a @<T1>*, (:a @<T2>+ | :b int), :b} <T1>{:b @<T3>} <T2>{:b @<T4>} <T3>{:c .} <T4>{:d .}\",\n              \"testAction\": {\n                \"@id\": \"_:b3386\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/false-lead-excluding-value-shape.val\",\n              \"title\": \"false-lead-excluding-value-shape\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b802\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b800\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n                },\n                {\n                  \"@id\": \"_:b5154\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5153\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:failed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { :a .*, (:a .+ | :a .), :a . } / { <x> :a 1, 3 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3357\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.val\",\n              \"title\": \"nPlus1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2422\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2417\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n                },\n                {\n                  \"@id\": \"_:b5449\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5448\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { :a .*, (:a .+ | :a .), :a . } / { <x> :a 1, 3 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3326\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"title\": \"nPlus1-greedy_fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3066\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3060\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n                },\n                {\n                  \"@id\": \"_:b1953\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1292\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { :a [1], (:a [2]+ | :a [3]), :a [4]* } / { <x> :a 1, 3 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3301\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1-greedy-rewrite.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/nPlus1-greedy-rewrite.val\",\n              \"title\": \"nPlus1-greedy-rewrite\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5412\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5411\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n                },\n                {\n                  \"@id\": \"_:b1404\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1403\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { ( :a ., :b . )?, :c . } on { <x> :c 1 }\",\n              \"testAction\": {\n                \"@id\": \"_:b3272\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/skipped.val\",\n              \"title\": \"skipped\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3648\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3645\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n                },\n                {\n                  \"@id\": \"_:b1799\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1794\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { ( :a ., :b . ){2,5}, :c . }\",\n              \"testAction\": {\n                \"@id\": \"_:b3243\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/x\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/repeated-group.val\",\n              \"title\": \"repeated-group\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5318\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5317\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n                },\n                {\n                  \"@id\": \"_:b811\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b808\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"@@ simple-group\",\n              \"testAction\": {\n                \"@id\": \"_:b3216\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/s0\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/simple-group.val\",\n              \"title\": \"simple-group\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5122\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5121\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n                },\n                {\n                  \"@id\": \"_:b4161\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4158\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> {:a $<P>*, :a $<T>} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3185\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarT.val\",\n              \"title\": \"PstarT\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2060\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1947\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n                },\n                {\n                  \"@id\": \"_:b3760\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3753\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S1> {:a $<P>*, :a $<T>} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3157\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarT.val\",\n              \"title\": \"PstarT-greedy\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4645\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4644\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n                },\n                {\n                  \"@id\": \"_:b1530\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1529\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3123\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PTstar.val\",\n              \"title\": \"PTstar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5018\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5017\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:failed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n                },\n                {\n                  \"@id\": \"_:b4435\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4434\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3091\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n                }\n              },\n              \"title\": \"PTstar-greedy-fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1132\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1129\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n                },\n                {\n                  \"@id\": \"_:b586\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b585\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Greedy\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S2> {:a $<P>, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3065\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar-greedy-rewrite.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S2\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar-greedy-rewrite.val\",\n              \"title\": \"PTstar-greedy-rewrite\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4277\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4275\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n                },\n                {\n                  \"@id\": \"_:b4103\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4101\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S3> {:a $<P>*, :a $<T>*} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3044\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S3\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/PstarTstar.val\",\n              \"title\": \"PstarTstar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5168\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5167\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n                },\n                {\n                  \"@id\": \"_:b1526\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1525\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": [\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#EachOf\"\n                },\n                {\n                  \"@id\": \"http://www.w3.org/ns/shacl/test-suite#Exhaustive\"\n                }\n              ],\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S4> {:a $<P>{2}, :a $<T>{2}} / { <n> :a <pt1>,  <pt2>,  <p>,  <t>}\",\n              \"testAction\": {\n                \"@id\": \"_:b3019\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/n\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Pstar.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/S4\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/P2T2.val\",\n              \"title\": \"P2T2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b558\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b557\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n                },\n                {\n                  \"@id\": \"_:b3940\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3938\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ErrorReport\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> . } on {  }\",\n              \"testAction\": {\n                \"@id\": \"_:b2998\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/empty.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/1dot_empty.err\",\n              \"title\": \"1dot_fail-empty-err\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#ValidationFailure\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b294\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b291\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n                },\n                {\n                  \"@id\": \"_:b202\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b200\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n                }\n              ],\n              \"http://www.w3.org/ns/shacl/test-suite#trait\": {\n                \"@id\": \"http://www.w3.org/ns/shacl/test-suite#ErrorReport\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"rdfs:comment\": \"<S> { <p1> ., <p2> . } on { <s> <p1> <o1> }\",\n              \"testAction\": {\n                \"@id\": \"_:b2971\",\n                \"http://www.w3.org/ns/shacl/test-suite#data\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/Is1_Ip1_Io1.ttl\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#focus\": {\n                  \"@id\": \"http://a.example/s1\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#schema\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.shex\"\n                },\n                \"http://www.w3.org/ns/shacl/test-suite#shape\": {\n                  \"@id\": \"http://a.example/S1\"\n                }\n              },\n              \"testResult\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/2dot_missing1.err\",\n              \"title\": \"2dot_fail-empty-err\"\n            }\n          ],\n          \"rdfs:comment\": \"ShEx validation tests\"\n        },\n        {\n          \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest\",\n          \"@type\": [\n            \"Report\",\n            \"mf:Manifest\"\n          ],\n          \"entries\": [\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2813\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2811\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n                },\n                {\n                  \"@id\": \"_:b845\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b842\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1decimalMininclusiveroman-numeral.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveroman-numeral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4747\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4746\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n                },\n                {\n                  \"@id\": \"_:b4206\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4203\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1dotAnnot_AIRIREF.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotAnnot_AIRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b594\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b593\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n                },\n                {\n                  \"@id\": \"_:b1630\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1629\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1dotUnlabeledCode1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotUnlabeledCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4299\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4297\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n                },\n                {\n                  \"@id\": \"_:b2866\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2864\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1doubleMininclusiveroman-numeral.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveroman-numeral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4295\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4293\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n                },\n                {\n                  \"@id\": \"_:b4717\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4716\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1floatMininclusiveroman-numeral.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveroman-numeral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2851\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2848\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n                },\n                {\n                  \"@id\": \"_:b268\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b265\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1integerMininclusiveroman-numeral.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveroman-numeral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2418\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2415\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n                },\n                {\n                  \"@id\": \"_:b2249\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2242\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1inverseinversedot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1inverseinversedot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3810\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3803\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n                },\n                {\n                  \"@id\": \"_:b3755\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3752\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriLength2.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriLength2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1149\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1146\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n                },\n                {\n                  \"@id\": \"_:b5118\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5117\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMaxexclusive.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMaxexclusive\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1025\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1022\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n                },\n                {\n                  \"@id\": \"_:b617\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b615\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMaxinclusive.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMaxinclusive\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2820\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2818\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n                },\n                {\n                  \"@id\": \"_:b4785\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4784\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMinexclusive.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMinexclusive\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b366\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b364\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n                },\n                {\n                  \"@id\": \"_:b3791\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3786\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1iriMininclusive.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMininclusive\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5476\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5475\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n                },\n                {\n                  \"@id\": \"_:b1478\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1477\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalFractiondigitsxsd-integer.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalFractiondigitsxsd-integer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2883\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2880\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n                },\n                {\n                  \"@id\": \"_:b4250\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4248\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalLength2.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalLength2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1438\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1437\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n                },\n                {\n                  \"@id\": \"_:b1222\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1220\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1literalTotaldigitsxsd-integer.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalTotaldigitsxsd-integer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1598\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1597\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n                },\n                {\n                  \"@id\": \"_:b5557\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5445\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1negatedinversenegateddot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1negatedinversenegateddot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b745\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b743\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n                },\n                {\n                  \"@id\": \"_:b4302\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4300\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1negatednegateddot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1negatednegateddot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4831\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4830\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n                },\n                {\n                  \"@id\": \"_:b5004\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5003\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1unknowndatatypeMaxInclusive.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1unknowndatatypeMaxInclusive\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b636\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b634\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n                },\n                {\n                  \"@id\": \"_:b4729\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4728\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1bnode.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4503\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4502\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n                },\n                {\n                  \"@id\": \"_:b466\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b465\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1iriMinusiri1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1iriMinusiri1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5197\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5196\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n                },\n                {\n                  \"@id\": \"_:b3031\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3024\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1val1vcrefSTRING_LITERAL1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vcrefSTRING_LITERAL1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3675\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3669\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n                },\n                {\n                  \"@id\": \"_:b5326\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5325\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/1valA.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1valA\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4047\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4045\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n                },\n                {\n                  \"@id\": \"_:b99\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b98\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/DECIMAL-123.abc.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"DECIMAL-123.abc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4148\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4145\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n                },\n                {\n                  \"@id\": \"_:b5108\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5107\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/DOUBLE-123e.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"DOUBLE-123e\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2257\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2252\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n                },\n                {\n                  \"@id\": \"_:b4230\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4227\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/INTEGER-+-1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"INTEGER-+-1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3378\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3374\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n                },\n                {\n                  \"@id\": \"_:b4335\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4331\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/INTEGER-123abc.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"INTEGER-123abc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2881\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2878\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n                },\n                {\n                  \"@id\": \"_:b4763\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4762\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-ECHAR.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"IRIREF-with-ECHAR\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5464\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5463\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n                },\n                {\n                  \"@id\": \"_:b1739\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1730\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-PN_LOCAL_ESC.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"IRIREF-with-PN_LOCAL_ESC\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b354\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b351\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n                },\n                {\n                  \"@id\": \"_:b1196\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1194\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-SPACE.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"IRIREF-with-SPACE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2217\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2210\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n                },\n                {\n                  \"@id\": \"_:b3389\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3384\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-bad-UCHAR.1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"IRIREF-with-bad-UCHAR.1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2092\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2085\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n                },\n                {\n                  \"@id\": \"_:b1062\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1060\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/IRIREF-with-bad-UCHAR.2.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"IRIREF-with-bad-UCHAR.2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1524\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1523\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n                },\n                {\n                  \"@id\": \"_:b5150\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5149\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-end-declared.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PNAME_NS-dot-at-end-declared\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3732\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3729\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n                },\n                {\n                  \"@id\": \"_:b5338\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5337\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-end-undeclared.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PNAME_NS-dot-at-end-undeclared\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1322\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1321\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n                },\n                {\n                  \"@id\": \"_:b386\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b383\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-start-declared.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PNAME_NS-dot-at-start-declared\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2875\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2872\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n                },\n                {\n                  \"@id\": \"_:b4220\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4218\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PNAME_NS-dot-at-start-undeclared.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PNAME_NS-dot-at-start-undeclared\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4199\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4197\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n                },\n                {\n                  \"@id\": \"_:b3409\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3404\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-end.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-PERCENT-end\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2979\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2970\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n                },\n                {\n                  \"@id\": \"_:b2411\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2409\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-mid.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-PERCENT-mid\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4160\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4159\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n                },\n                {\n                  \"@id\": \"_:b2391\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2387\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-PERCENT-start.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-PERCENT-start\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3966\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3964\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n                },\n                {\n                  \"@id\": \"_:b2036\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1984\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-dash-start.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-dash-start\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b161\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b159\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n                },\n                {\n                  \"@id\": \"_:b2046\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2039\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-unescaped-TILDE.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-unescaped-TILDE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2525\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2519\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n                },\n                {\n                  \"@id\": \"_:b3706\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3700\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/PN_LOCAL-with-UCHAR.1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"PN_LOCAL-with-UCHAR.1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4606\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1671\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n                },\n                {\n                  \"@id\": \"_:b5536\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5535\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL1-ending-QUOTATION_MARK.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL1-ending-QUOTATION_MARK\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1134\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1131\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n                },\n                {\n                  \"@id\": \"_:b1344\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1343\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-ECHAR.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-bad-ECHAR\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2582\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2572\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n                },\n                {\n                  \"@id\": \"_:b510\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b509\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-LANGTAG.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-bad-LANGTAG\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4260\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4257\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n                },\n                {\n                  \"@id\": \"_:b45\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b44\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-UCHAR1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-bad-UCHAR1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4559\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4558\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n                },\n                {\n                  \"@id\": \"_:b5006\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5005\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-bad-UCHAR2-value.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-bad-UCHAR2-value\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3538\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3534\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n                },\n                {\n                  \"@id\": \"_:b4821\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4820\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-ending-APOSTROPHE.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-ending-APOSTROPHE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4533\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4532\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n                },\n                {\n                  \"@id\": \"_:b258\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b256\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-illegal-UCHAR1-value.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-illegal-UCHAR1-value\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3117\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3113\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n                },\n                {\n                  \"@id\": \"_:b238\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b235\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL2-with-LANGTAG-and-datatype.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL2-with-LANGTAG-and-datatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b974\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b972\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n                },\n                {\n                  \"@id\": \"_:b605\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b603\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG1-ending-APOSTROPHE.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b149\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b147\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n                },\n                {\n                  \"@id\": \"_:b4677\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4676\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG1-ending-APOSTROPHE4.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1364\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1363\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n                },\n                {\n                  \"@id\": \"_:b1078\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1075\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-ending-APOSTROPHE3.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4628\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4627\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n                },\n                {\n                  \"@id\": \"_:b3074\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3069\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-ending-QUOTATION_MARK4.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4112\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4105\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n                },\n                {\n                  \"@id\": \"_:b4388\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4386\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/STRING_LITERAL_LONG2-unterminated.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"STRING_LITERAL_LONG2-unterminated\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3486\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3481\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n                },\n                {\n                  \"@id\": \"_:b592\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b590\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/a.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3587\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3585\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n                },\n                {\n                  \"@id\": \"_:b1071\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1069\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/base-no-uri.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"base-no-uri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b370\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b368\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n                },\n                {\n                  \"@id\": \"_:b1833\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1826\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/base-uri-dot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"base-uri-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b524\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b523\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n                },\n                {\n                  \"@id\": \"_:b4431\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4430\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/bnodedot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"bnodedot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b389\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b387\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n                },\n                {\n                  \"@id\": \"_:b3784\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3783\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/capitol-A.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"capitol-A\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1804\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1802\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n                },\n                {\n                  \"@id\": \"_:b5186\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5185\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/group-no-COMMA-separators.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"group-no-COMMA-separators\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3802\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3796\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n                },\n                {\n                  \"@id\": \"_:b183\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b181\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/groupShapeConstr-trailing-OR.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"groupShapeConstr-trailing-OR\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4711\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4710\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n                },\n                {\n                  \"@id\": \"_:b2749\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2747\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/literal-0x123.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"literal-0x123\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2686\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2684\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b1874\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1869\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotclose.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2767\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2765\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n                },\n                {\n                  \"@id\": \"_:b1821\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1813\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotcloseAnnot3.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotcloseAnnot3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2907\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2905\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n                },\n                {\n                  \"@id\": \"_:b1157\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1155\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotcloseCode1.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotcloseCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4982\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4981\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n                },\n                {\n                  \"@id\": \"_:b3975\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3973\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/open1dotclosecardOpt.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotclosecardOpt\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3605\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3602\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:failed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b280\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b278\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/openopen1dotOr1dotclose.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen1dotOr1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3716\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3710\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n                },\n                {\n                  \"@id\": \"_:b153\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b151\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/openopen1dotcloseCode1closeCode2.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen1dotcloseCode1closeCode2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4651\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4650\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n                },\n                {\n                  \"@id\": \"_:b5306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5305\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-ANON.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"predicate-ANON\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5080\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5079\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n                },\n                {\n                  \"@id\": \"_:b4276\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4274\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-BLANK_NODE_LABEL.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"predicate-BLANK_NODE_LABEL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5416\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5415\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n                },\n                {\n                  \"@id\": \"_:b2707\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2705\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-literal.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"predicate-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4280\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4278\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n                },\n                {\n                  \"@id\": \"_:b4204\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4201\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/predicate-true.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"predicate-true\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b109\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b108\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n                },\n                {\n                  \"@id\": \"_:b4459\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4458\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-missing.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"prefix-missing\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2798\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2796\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n                },\n                {\n                  \"@id\": \"_:b4346\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4343\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-COLON.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"prefix-no-COLON\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3394\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3392\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n                },\n                {\n                  \"@id\": \"_:b4380\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4377\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-PNAME_NS.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"prefix-no-PNAME_NS\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4863\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4862\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n                },\n                {\n                  \"@id\": \"_:b552\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b551\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-no-uri.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"prefix-no-uri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b681\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b679\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n                },\n                {\n                  \"@id\": \"_:b2720\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2718\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/prefix-none.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"prefix-none\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3253\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3250\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n                },\n                {\n                  \"@id\": \"_:b1376\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1375\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-a.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"shapename-a\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4741\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4740\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n                },\n                {\n                  \"@id\": \"_:b947\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b945\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-literal.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"shapename-literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2703\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2701\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n                },\n                {\n                  \"@id\": \"_:b5356\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5355\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/shapename-true.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"shapename-true\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2660\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2658\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n                },\n                {\n                  \"@id\": \"_:b921\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b919\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-no-valueClass.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"tripleConsraint-no-valueClass\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b819\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b817\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n                },\n                {\n                  \"@id\": \"_:b1148\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1147\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-datatype-and-dot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"tripleConsraint-with-datatype-and-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4509\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4508\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n                },\n                {\n                  \"@id\": \"_:b3636\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3634\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-datatype-and-valueSet.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"tripleConsraint-with-datatype-and-valueSet\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4315\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4313\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n                },\n                {\n                  \"@id\": \"_:b1775\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1771\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-dot-and-datatype.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"tripleConsraint-with-dot-and-datatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeSyntax\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4273\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4271\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n                },\n                {\n                  \"@id\": \"_:b2947\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2944\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/tripleConsraint-with-two-cardinalities.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"tripleConsraint-with-two-cardinalities\"\n            }\n          ],\n          \"rdfs:comment\": \"ShEx negative syntax tests\"\n        },\n        {\n          \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest\",\n          \"@type\": [\n            \"Report\",\n            \"mf:Manifest\"\n          ],\n          \"entries\": [\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\",\n              \"@type\": [\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n                \"TestCriterion\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2665\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2662\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n                },\n                {\n                  \"@id\": \"_:b2911\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2908\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1MissingRef.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1MissingRef\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\",\n              \"@type\": [\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n                \"TestCriterion\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4000\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3999\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n                },\n                {\n                  \"@id\": \"_:b2730\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2728\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1focusMissingRefdot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusMissingRefdot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\",\n              \"@type\": [\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n                \"TestCriterion\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3746\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3740\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n                },\n                {\n                  \"@id\": \"_:b2398\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2394\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/1focusRefANDSelfdot.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusRefANDSelfdot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\",\n              \"@type\": [\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n                \"TestCriterion\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2460\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2456\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n                },\n                {\n                  \"@id\": \"_:b4938\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4937\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/includeNonSimpleShape.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"includeNonSimpleShape\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\",\n              \"@type\": [\n                \"http://www.w3.org/ns/shacl/test-suite#NegativeStructure\",\n                \"TestCriterion\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1234\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1231\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n                },\n                {\n                  \"@id\": \"_:b191\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b188\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/includeShapeNotFound.shex\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"includeShapeNotFound\"\n            }\n          ],\n          \"rdfs:comment\": \"ShEx negative structure tests\"\n        },\n        {\n          \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest\",\n          \"@type\": [\n            \"Report\",\n            \"mf:Manifest\"\n          ],\n          \"entries\": [\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b208\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b205\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n                },\n                {\n                  \"@id\": \"_:b1849\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1844\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"0\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3979\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3977\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n                },\n                {\n                  \"@id\": \"_:b4363\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4361\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4352\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4349\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n                },\n                {\n                  \"@id\": \"_:b2288\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2283\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dot-base.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dot-base\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3765\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3764\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n                },\n                {\n                  \"@id\": \"_:b4378\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4375\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemi.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3056\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3049\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n                },\n                {\n                  \"@id\": \"_:b4393\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4391\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotLNex\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4511\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4510\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n                },\n                {\n                  \"@id\": \"_:b4355\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4353\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotNS2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4348\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4345\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n                },\n                {\n                  \"@id\": \"_:b2695\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2692\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNS2Comment.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotNS2Comment\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4400\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4398\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n                },\n                {\n                  \"@id\": \"_:b2540\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2534\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNexComment.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotLNexComment\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4366\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4364\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n                },\n                {\n                  \"@id\": \"_:b1084\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1082\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNdefault.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotLNdefault\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b887\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b886\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n                },\n                {\n                  \"@id\": \"_:b4915\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4914\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNSdefault.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotNSdefault\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3557\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3554\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n                },\n                {\n                  \"@id\": \"_:b3782\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3779\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotLNex-HYPHEN_MINUS.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotLNex-HYPHEN_MINUS\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4827\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4826\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n                },\n                {\n                  \"@id\": \"_:b417\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b418\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/bnode1dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"bnode1dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4340\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4338\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n                },\n                {\n                  \"@id\": \"_:b4859\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4858\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1inversedot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b643\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b641\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n                },\n                {\n                  \"@id\": \"_:b1829\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1820\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Adot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1Adot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5276\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5275\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n                },\n                {\n                  \"@id\": \"_:b4641\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4640\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iri.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iri\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4370\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4368\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n                },\n                {\n                  \"@id\": \"_:b4234\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4231\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnode.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4385\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4383\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n                },\n                {\n                  \"@id\": \"_:b1506\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1505\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literal.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4404\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4402\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n                },\n                {\n                  \"@id\": \"_:b841\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b838\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteral.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1nonliteral\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2854\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2852\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n                },\n                {\n                  \"@id\": \"_:b1236\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1233\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatype.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1datatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3518\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3514\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n                },\n                {\n                  \"@id\": \"_:b247\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b245\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypelangString.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1datatypelangString\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1456\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1455\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n                },\n                {\n                  \"@id\": \"_:b4359\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4357\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1card2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1340\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1339\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n                },\n                {\n                  \"@id\": \"_:b2087\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2080\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card25.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1card25\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b400\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b399\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n                },\n                {\n                  \"@id\": \"_:b713\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b710\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2Star.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1card2Star\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3798\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3797\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n                },\n                {\n                  \"@id\": \"_:b5092\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5091\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardOpt.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1cardOpt\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1370\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1369\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n                },\n                {\n                  \"@id\": \"_:b2350\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2346\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardPlus.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1cardPlus\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4483\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4482\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n                },\n                {\n                  \"@id\": \"_:b5298\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5297\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1cardStar.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1cardStar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3794\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3793\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n                },\n                {\n                  \"@id\": \"_:b2164\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2161\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPlus.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPlus\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2805\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2803\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n                },\n                {\n                  \"@id\": \"_:b165\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b163\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRef1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRef1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4381\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4379\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n                },\n                {\n                  \"@id\": \"_:b1563\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1564\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefLNex1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b884\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b882\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n                },\n                {\n                  \"@id\": \"_:b4208\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4205\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceLNex1.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4381\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4379\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n                  },\n                  {\n                    \"@id\": \"_:b1563\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1564\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefLNex1.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotRefLNex1\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefSpaceLNex1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b779\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b776\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n                },\n                {\n                  \"@id\": \"_:b3727\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3720\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefNS1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4344\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4342\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n                },\n                {\n                  \"@id\": \"_:b4354\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4351\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefSpaceNS1.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b779\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b776\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n                  },\n                  {\n                    \"@id\": \"_:b3727\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3720\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefNS1.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotRefNS1\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefSpaceNS1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4052\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4051\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n                },\n                {\n                  \"@id\": \"_:b4310\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4308\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1refbnode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5360\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5359\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n                },\n                {\n                  \"@id\": \"_:b4457\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4456\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_digit1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1refbnode_with_leading_digit1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b655\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b652\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n                },\n                {\n                  \"@id\": \"_:b2806\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2804\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_leading_underscore1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1refbnode_with_leading_underscore1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b764\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b762\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n                },\n                {\n                  \"@id\": \"_:b2127\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2124\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1refbnode_with_spanning_PN_CHARS1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5442\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5441\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n                },\n                {\n                  \"@id\": \"_:b3776\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3773\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1refbnode_with_spanning_PN_CHARS_BASE1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1refbnode_with_spanning_PN_CHARS_BASE1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1051\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1049\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n                },\n                {\n                  \"@id\": \"_:b182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b180\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3circularRef1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"3circularRef1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2849\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2846\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n                },\n                {\n                  \"@id\": \"_:b49\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b48\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRef1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriRef1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5438\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5437\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n                },\n                {\n                  \"@id\": \"_:b1249\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1246\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRef1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodeRef1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b216\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b214\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n                },\n                {\n                  \"@id\": \"_:b5556\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5555\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotInline1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotInline1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1899\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1892\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n                },\n                {\n                  \"@id\": \"_:b5440\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5439\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREF.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1IRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b678\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b676\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1152\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1150\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1INTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1INTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4374\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4372\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b4521\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4520\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1DOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5292\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5291\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n                },\n                {\n                  \"@id\": \"_:b3860\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3857\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DOUBLElowercase.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1DOUBLElowercase\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4255\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4253\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n                },\n                {\n                  \"@id\": \"_:b1137\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1135\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1LANGTAG.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1LANGTAG\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4413\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4412\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n                },\n                {\n                  \"@id\": \"_:b5548\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5547\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFDatatype.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1IRIREFDatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5193\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5192\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n                },\n                {\n                  \"@id\": \"_:b1348\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1347\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1true.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1true\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3971\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3968\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n                },\n                {\n                  \"@id\": \"_:b2697\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2694\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1false.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1false\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b450\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b449\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n                },\n                {\n                  \"@id\": \"_:b2165\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2160\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1datatypeLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1402\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1401\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n                },\n                {\n                  \"@id\": \"_:b86\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b84\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits5.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalFractiondigits5\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3191\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3187\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n                },\n                {\n                  \"@id\": \"_:b1282\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1280\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalFractiondigits4.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalFractiondigits4\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5532\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5531\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n                },\n                {\n                  \"@id\": \"_:b2438\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2434\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits5.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalTotaldigits5\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b349\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b347\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n                },\n                {\n                  \"@id\": \"_:b5358\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5357\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits6.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalTotaldigits6\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4865\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4864\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n                },\n                {\n                  \"@id\": \"_:b5352\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5351\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalTotaldigits2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalTotaldigits2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1145\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1143\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1257\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1255\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1638\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1637\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b876\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b874\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2493\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2488\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n                },\n                {\n                  \"@id\": \"_:b75\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b74\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveINTEGERLead.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveINTEGERLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2048\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2040\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n                },\n                {\n                  \"@id\": \"_:b3050\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3042\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveINTEGERLead.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveINTEGERLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b262\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b260\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b725\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b723\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b752\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b750\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4428\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4429\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDECIMALLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4551\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4550\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n                },\n                {\n                  \"@id\": \"_:b243\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b241\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDECIMALint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5354\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5353\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2954\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2953\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDECIMALintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDECIMALintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b448\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b446\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b4298\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4296\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1096\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1094\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b384\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b381\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLELeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDOUBLELeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1492\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1491\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n                },\n                {\n                  \"@id\": \"_:b2362\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2359\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDOUBLEint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4421\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4420\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b1211\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1209\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusiveDOUBLEintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusiveDOUBLEintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1324\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1323\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n                },\n                {\n                  \"@id\": \"_:b5552\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5551\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMininclusivexsd-integer.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMininclusivexsd-integer\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4212\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4210\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4389\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4387\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4336\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4333\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n                },\n                {\n                  \"@id\": \"_:b2913\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2910\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveINTEGERLead.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveINTEGERLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4683\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4682\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b5030\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5029\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4131\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4128\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b749\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b746\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDECIMALLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3424\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3419\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4667\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4666\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDECIMALintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDECIMALintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1673\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1556\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b5456\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5455\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b644\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b642\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b468\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b467\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLELeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDOUBLELeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2108\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2102\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b2690\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2688\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusiveDOUBLEintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusiveDOUBLEintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b456\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b455\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n                },\n                {\n                  \"@id\": \"_:b2861\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2859\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMininclusivexsd-decimal.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMininclusivexsd-decimal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b452\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b451\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b1102\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1099\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3527\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3521\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b767\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b765\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDECIMALLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3869\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3867\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b69\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b68\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDECIMALintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDECIMALintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b625\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b622\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b3801\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3800\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4396\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4394\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b687\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b684\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLELeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDOUBLELeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2862\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2860\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b3622\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3618\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusiveDOUBLEintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusiveDOUBLEintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b707\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b705\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n                },\n                {\n                  \"@id\": \"_:b4425\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4424\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMininclusivexsd-float.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMininclusivexsd-float\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3545\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3540\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n                },\n                {\n                  \"@id\": \"_:b4755\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4754\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveINTEGERLead.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveINTEGERLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1428\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1427\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b2700\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2698\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2839\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2837\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4072\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4071\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDECIMALLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2239\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2232\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b3431\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3426\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDECIMALintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDECIMALintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3580\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3577\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b721\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b718\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4907\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4906\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b4014\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4012\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLELeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDOUBLELeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b266\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b263\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b1312\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1311\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusiveDOUBLEintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusiveDOUBLEintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1166\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1163\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n                },\n                {\n                  \"@id\": \"_:b5522\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5521\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMininclusivexsd-double.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMininclusivexsd-double\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3080\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3077\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1766\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1762\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMinexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1634\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1633\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n                },\n                {\n                  \"@id\": \"_:b4262\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4259\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDECIMALint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMinexclusiveDECIMALint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5026\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5025\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n                },\n                {\n                  \"@id\": \"_:b965\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b962\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMinexclusiveDOUBLEint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMinexclusiveDOUBLEint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3989\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3987\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b2590\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2585\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMinexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3780\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3774\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b4978\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4977\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMinexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4787\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4786\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b442\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b441\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMinexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMinexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1380\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1379\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1797\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1792\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMinexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b414\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b411\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b1111\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1109\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMinexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3708\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3705\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b1004\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1002\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMinexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3173\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3169\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n                },\n                {\n                  \"@id\": \"_:b546\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b545\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMinexclusivexsd-float.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMinexclusivexsd-float\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3563\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3559\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b3825\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3822\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMinexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5342\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5341\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b2268\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2263\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMinexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5227\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5226\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b4699\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4698\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMinexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMinexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5262\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5261\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4881\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4880\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxinclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1480\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1479\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n                },\n                {\n                  \"@id\": \"_:b3830\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3823\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDECIMALint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxinclusiveDECIMALint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4639\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4638\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n                },\n                {\n                  \"@id\": \"_:b2678\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2676\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxinclusiveDOUBLEint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxinclusiveDOUBLEint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4637\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4636\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1226\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1224\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxinclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b285\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b283\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b5458\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5457\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxinclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1011\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1009\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b828\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b826\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxinclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxinclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2746\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2744\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b3027\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3023\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxinclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4853\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4852\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b440\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b439\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxinclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b733\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b731\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b3792\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3785\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxinclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b961\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b958\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n                },\n                {\n                  \"@id\": \"_:b5098\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5097\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxinclusivexsd-float.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxinclusivexsd-float\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4626\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4625\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4970\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4969\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxinclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4885\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4884\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b1070\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1068\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxinclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b328\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b325\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b2130\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2054\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxinclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxinclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5215\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5214\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b905\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b902\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4238\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4235\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n                },\n                {\n                  \"@id\": \"_:b2801\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2800\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDECIMALint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxexclusiveDECIMALint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3329\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3325\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n                },\n                {\n                  \"@id\": \"_:b2392\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2389\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1integerMaxexclusiveDOUBLEint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1integerMaxexclusiveDOUBLEint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b277\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b275\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4529\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4528\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5346\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5345\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b4515\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4514\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3848\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3844\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b935\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b932\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2372\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2367\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n                },\n                {\n                  \"@id\": \"_:b4616\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4615\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-byte.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxexclusivexsd-byte\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3360\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3356\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n                },\n                {\n                  \"@id\": \"_:b755\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b753\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1decimalMaxexclusivexsd-decimal.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1decimalMaxexclusivexsd-decimal\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b57\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b54\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b3722\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3721\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4823\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4822\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b5000\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4999\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4679\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4678\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b639\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b638\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1floatMaxexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1floatMaxexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3005\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3001\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4545\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4544\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4980\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4979\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n                },\n                {\n                  \"@id\": \"_:b3843\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3842\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveINTEGERLead.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveINTEGERLead\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b996\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b994\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b1859\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1854\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3970\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3969\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b3724\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3723\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2094\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2089\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n                },\n                {\n                  \"@id\": \"_:b4719\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4718\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3633\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3631\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b9\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b8\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDECIMALintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDECIMALintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3632\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3630\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n                },\n                {\n                  \"@id\": \"_:b815\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b813\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b264\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b261\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b508\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b507\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLELeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLELeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5344\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5343\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n                },\n                {\n                  \"@id\": \"_:b853\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b851\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEint.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLEint\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3352\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3347\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n                },\n                {\n                  \"@id\": \"_:b747\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b744\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1doubleMaxexclusiveDOUBLEintLeadTrail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1doubleMaxexclusiveDOUBLEintLeadTrail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2403\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2399\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n                },\n                {\n                  \"@id\": \"_:b1648\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1647\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1Length.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1Length\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5028\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5027\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n                },\n                {\n                  \"@id\": \"_:b2643\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2641\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4659\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4658\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n                },\n                {\n                  \"@id\": \"_:b782\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b780\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalLength19.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalLength19\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1587\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1586\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n                },\n                {\n                  \"@id\": \"_:b3110\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3107\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n                },\n                {\n                  \"@id\": \"_:b883\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b881\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriRefLength1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriRefLength1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4033\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4032\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n                },\n                {\n                  \"@id\": \"_:b3717\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3711\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodeLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2146\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2140\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n                },\n                {\n                  \"@id\": \"_:b2559\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2554\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1nonliteralLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4186\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4184\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n                },\n                {\n                  \"@id\": \"_:b5432\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5431\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMinlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2608\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1714\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n                },\n                {\n                  \"@id\": \"_:b2809\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2807\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMinlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMinlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4956\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4955\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n                },\n                {\n                  \"@id\": \"_:b948\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b946\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMinlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodeMinlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3788\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3787\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n                },\n                {\n                  \"@id\": \"_:b5428\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5427\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMinlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1nonliteralMinlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2335\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2333\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n                },\n                {\n                  \"@id\": \"_:b4417\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4416\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMaxlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1592\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1591\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n                },\n                {\n                  \"@id\": \"_:b5056\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5055\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriMaxlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriMaxlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2482\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2476\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n                },\n                {\n                  \"@id\": \"_:b3420\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3414\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeMaxlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodeMaxlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5402\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5401\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n                },\n                {\n                  \"@id\": \"_:b272\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b269\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralMaxlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1nonliteralMaxlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4284\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4282\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n                },\n                {\n                  \"@id\": \"_:b3712\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3709\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPattern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2817\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2814\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n                },\n                {\n                  \"@id\": \"_:b1454\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1453\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPattern19.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPattern19\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3670\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3627\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n                },\n                {\n                  \"@id\": \"_:b5372\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5371\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPattern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalStartPattern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3040\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3030\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n                },\n                {\n                  \"@id\": \"_:b4622\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4621\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternEnd.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPatternEnd\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1884\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1877\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n                },\n                {\n                  \"@id\": \"_:b1488\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1487\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalStartPatternEnd.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalStartPatternEnd\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1810\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1805\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n                },\n                {\n                  \"@id\": \"_:b4246\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4244\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternDollar.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPatternDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5221\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5220\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n                },\n                {\n                  \"@id\": \"_:b4567\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4566\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalCarrotPatternDollar.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalCarrotPatternDollar\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1000\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b998\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n                },\n                {\n                  \"@id\": \"_:b2951\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2949\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalPatternabEnd.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalPatternabEnd\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3567\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3565\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n                },\n                {\n                  \"@id\": \"_:b4819\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4818\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPattern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriPattern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3127\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3119\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n                },\n                {\n                  \"@id\": \"_:b2531\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2524\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1iriPatternbc.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1iriPatternbc\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3978\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3976\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n                },\n                {\n                  \"@id\": \"_:b1596\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1595\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodePattern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodePattern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1237\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1235\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n                },\n                {\n                  \"@id\": \"_:b255\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b253\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1nonliteralPattern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1nonliteralPattern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3718\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3715\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n                },\n                {\n                  \"@id\": \"_:b137\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b136\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiri3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1dotMinusiri3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4579\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4578\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n                },\n                {\n                  \"@id\": \"_:b5104\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5103\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1refvsMinusiri3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1refvsMinusiri3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b83\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b82\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n                },\n                {\n                  \"@id\": \"_:b1174\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1172\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1dotMinusiriStem3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1dotMinusiriStem3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1640\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1639\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n                },\n                {\n                  \"@id\": \"_:b5008\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5007\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStem.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1iriStem\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b528\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b527\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n                },\n                {\n                  \"@id\": \"_:b683\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b680\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiri3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1iriStemMinusiri3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2616\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2611\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n                },\n                {\n                  \"@id\": \"_:b5294\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5293\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1iriStemMinusiriStem3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1iriStemMinusiriStem3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3642\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3639\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n                },\n                {\n                  \"@id\": \"_:b2952\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2950\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1788\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1779\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                },\n                {\n                  \"@id\": \"_:b1219\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1216\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b1788\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1779\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  },\n                  {\n                    \"@id\": \"_:b1219\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1216\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n                },\n                \"mf:sameSemanticsAs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotSemis\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2dotSemis\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3781\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3775\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n                },\n                {\n                  \"@id\": \"_:b2370\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2361\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b1788\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1779\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  },\n                  {\n                    \"@id\": \"_:b1219\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1216\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n                },\n                \"mf:sameSemanticsAs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b1788\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1779\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                    },\n                    {\n                      \"@id\": \"_:b1219\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1216\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                    }\n                  ],\n                  \"https://shexspec.github.io/shexTest/ns#json\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n                  },\n                  \"https://shexspec.github.io/shexTest/ns#shex\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n                  },\n                  \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n                  },\n                  \"mf:sameSemanticsAs\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"title\": \"2dotSemis\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotSemis\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open2dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2708\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2706\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n                },\n                {\n                  \"@id\": \"_:b1594\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1593\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotsemisclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b1788\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1779\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  },\n                  {\n                    \"@id\": \"_:b1219\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1216\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n                },\n                \"mf:sameSemanticsAs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\",\n                  \"@type\": [\n                    \"TestCriterion\",\n                    \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                    \"TestCase\"\n                  ],\n                  \"assertions\": [\n                    {\n                      \"@id\": \"_:b1788\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://greggkellogg.net/foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://greggkellogg.net/\",\n                        \"foaf:name\": \"Gregg Kellogg\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1779\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://rubygems.org/gems/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://greggkellogg.net/foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://greggkellogg.net/\",\n                            \"foaf:name\": \"Gregg Kellogg\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                        \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                        \"language\": \"Ruby\",\n                        \"name\": \"ShEx\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                    },\n                    {\n                      \"@id\": \"_:b1219\",\n                      \"@type\": \"Assertion\",\n                      \"assertedBy\": {\n                        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                        \"@type\": [\n                          \"Assertor\",\n                          \"foaf:Person\"\n                        ],\n                        \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                        \"foaf:name\": \"Eric Prud'hommeaux\"\n                      },\n                      \"mode\": \"earl:automatic\",\n                      \"result\": {\n                        \"@id\": \"_:b1216\",\n                        \"@type\": \"TestResult\",\n                        \"outcome\": \"earl:passed\"\n                      },\n                      \"subject\": {\n                        \"@id\": \"https://www.npmjs.com/package/shex\",\n                        \"@type\": [\n                          \"doap:Project\",\n                          \"TestSubject\",\n                          \"Software\"\n                        ],\n                        \"developer\": [\n                          {\n                            \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                            \"@type\": [\n                              \"Assertor\",\n                              \"foaf:Person\"\n                            ],\n                            \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                            \"foaf:name\": \"Eric Prud'hommeaux\"\n                          }\n                        ],\n                        \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                        \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                        \"language\": \"JavaScript\",\n                        \"name\": \"ShEx.js\"\n                      },\n                      \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                    }\n                  ],\n                  \"https://shexspec.github.io/shexTest/ns#json\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.json\"\n                  },\n                  \"https://shexspec.github.io/shexTest/ns#shex\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.shex\"\n                  },\n                  \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemis.turtle\"\n                  },\n                  \"mf:sameSemanticsAs\": {\n                    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n                  },\n                  \"mf:status\": {\n                    \"@id\": \"mf:proposed\"\n                  },\n                  \"title\": \"2dotSemis\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotSemis\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open2dotsemisclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3586\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3584\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n                },\n                {\n                  \"@id\": \"_:b5350\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5349\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"3groupdot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2468\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2465\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n                },\n                {\n                  \"@id\": \"_:b3576\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3574\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b3586\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3584\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n                  },\n                  {\n                    \"@id\": \"_:b5350\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5349\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"3groupdot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3groupdotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3919\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3916\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n                },\n                {\n                  \"@id\": \"_:b1162\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1159\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne1dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotOne1dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4139\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4137\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                },\n                {\n                  \"@id\": \"_:b5480\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5479\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotSemiOne1dotSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2477\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2471\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b2858\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2856\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne1dotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4139\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4137\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                  },\n                  {\n                    \"@id\": \"_:b5480\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5479\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotSemiOne1dotSemi\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotOne1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4976\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4975\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n                },\n                {\n                  \"@id\": \"_:b2279\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2272\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne1dotSemicloseSemi.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4139\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4137\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                  },\n                  {\n                    \"@id\": \"_:b5480\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5479\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne1dotSemi.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotSemiOne1dotSemi\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotSemiOne1dotSemicloseSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4318\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4316\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                },\n                {\n                  \"@id\": \"_:b717\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b714\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2dotOne1dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4082\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4079\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n                },\n                {\n                  \"@id\": \"_:b284\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b282\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotSemiOne1dotSemi.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4318\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4316\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  },\n                  {\n                    \"@id\": \"_:b717\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b714\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotOne1dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2dotSemiOne1dotSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b751\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b748\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b760\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b758\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotOne1dotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4318\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4316\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  },\n                  {\n                    \"@id\": \"_:b717\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b714\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotOne1dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open2dotOne1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b544\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b543\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n                },\n                {\n                  \"@id\": \"_:b1460\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1459\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open2dotSemisOne1dotSemiclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4318\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4316\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  },\n                  {\n                    \"@id\": \"_:b717\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b714\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotOne1dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open2dotSemisOne1dotSemiclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b613\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b611\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b1352\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1351\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotcloseOne1dotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4318\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4316\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  },\n                  {\n                    \"@id\": \"_:b717\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b714\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotOne1dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen2dotcloseOne1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4493\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4492\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n                },\n                {\n                  \"@id\": \"_:b3474\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3469\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen2dotSemiscloseOne1dotSemiclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b4318\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b4316\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  },\n                  {\n                    \"@id\": \"_:b717\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b714\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dotOne1dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"2dotOne1dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen2dotSemiscloseOne1dotSemiclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5174\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5173\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n                },\n                {\n                  \"@id\": \"_:b1400\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1399\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotopen1dotOne1dotcloseclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4306\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4305\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n                },\n                {\n                  \"@id\": \"_:b4471\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4470\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b5174\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5173\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n                  },\n                  {\n                    \"@id\": \"_:b1400\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b1399\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotopen1dotOne1dotcloseclose.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"open1dotopen1dotOne1dotcloseclose\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5370\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5369\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                },\n                {\n                  \"@id\": \"_:b3886\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3562\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotOne2dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3479\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3472\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n                },\n                {\n                  \"@id\": \"_:b5219\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5218\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOneopen2dotcloseclose.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotOneopen2dotcloseclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4777\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4776\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n                },\n                {\n                  \"@id\": \"_:b254\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b252\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotOne1dotclose1dotclose.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen1dotOne1dotclose1dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5209\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5208\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n                },\n                {\n                  \"@id\": \"_:b3218\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3211\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefIRIREF1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprRefIRIREF1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3754\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3750\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n                },\n                {\n                  \"@id\": \"_:b1326\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1325\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefbnode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprRefbnode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1042\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1040\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n                },\n                {\n                  \"@id\": \"_:b3858\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3855\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefAND3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefAND3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4655\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4654\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n                },\n                {\n                  \"@id\": \"_:b5278\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5277\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1AND1Ref3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExpr1AND1AND1Ref3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1184\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1185\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n                },\n                {\n                  \"@id\": \"_:b4465\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4464\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefAND3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprRefAND3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2414\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2410\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n                },\n                {\n                  \"@id\": \"_:b5036\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5035\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprAND3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprAND3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1656\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1655\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n                },\n                {\n                  \"@id\": \"_:b5225\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5224\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotRefOR3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotRefOR3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4419\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4418\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n                },\n                {\n                  \"@id\": \"_:b5138\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5137\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1OR1Ref3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExpr1OR1OR1Ref3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4009\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4001\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n                },\n                {\n                  \"@id\": \"_:b3974\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3972\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprRefOR3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprRefOR3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b899\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b897\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n                },\n                {\n                  \"@id\": \"_:b4604\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4605\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExprOR3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExprOR3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4441\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4440\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n                },\n                {\n                  \"@id\": \"_:b5470\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5469\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1AND1OR1Ref3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExpr1AND1OR1Ref3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3685\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3680\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n                },\n                {\n                  \"@id\": \"_:b5424\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5423\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vExpr1OR1AND1Ref3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vExpr1OR1AND1Ref3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5034\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5033\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n                },\n                {\n                  \"@id\": \"_:b3925\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3922\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3Onedotclosecard2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5320\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5319\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n                },\n                {\n                  \"@id\": \"_:b3911\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3908\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3Onedotclosecard23.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3Onedotclosecard23\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2586\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2581\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n                },\n                {\n                  \"@id\": \"_:b4481\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4480\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open4Onedotclosecard23.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open4Onedotclosecard23\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b430\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b428\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n                },\n                {\n                  \"@id\": \"_:b4835\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4834\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3groupdotclosecard23\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2069\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2050\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n                },\n                {\n                  \"@id\": \"_:b3871\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3865\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1vShapeANDRef3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1vShapeANDRef3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1616\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1615\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n                },\n                {\n                  \"@id\": \"_:b1245\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1243\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotClosed.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotClosed\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4191\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4188\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n                },\n                {\n                  \"@id\": \"_:b1015\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1013\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1IRIREFExtra1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1296\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1297\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n                },\n                {\n                  \"@id\": \"_:b2815\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2812\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFExtra1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val2IRIREFExtra1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4921\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4920\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n                },\n                {\n                  \"@id\": \"_:b5201\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5200\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val2IRIREFPlusExtra1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val2IRIREFPlusExtra1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3233\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3229\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n                },\n                {\n                  \"@id\": \"_:b659\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b656\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1p2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1IRIREFExtra1p2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b869\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b866\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n                },\n                {\n                  \"@id\": \"_:b4799\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4798\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1IRIREFExtra1One.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1IRIREFExtra1One\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4329\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4327\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n                },\n                {\n                  \"@id\": \"_:b4069\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4068\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotExtra1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotExtra1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3338\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3332\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n                },\n                {\n                  \"@id\": \"_:b5032\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5031\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"3groupdotExtra3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5312\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5311\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n                },\n                {\n                  \"@id\": \"_:b3428\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3422\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdot3Extra.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"3groupdot3Extra\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1985\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1973\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n                },\n                {\n                  \"@id\": \"_:b5430\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5429\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/3groupdotExtra3NLex.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"3groupdotExtra3NLex\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2655\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2653\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n                },\n                {\n                  \"@id\": \"_:b2123\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2118\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefIRIREF.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startRefIRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3232\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3230\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n                },\n                {\n                  \"@id\": \"_:b1482\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1481\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startRefbnode.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startRefbnode\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b602\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b600\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n                },\n                {\n                  \"@id\": \"_:b392\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b390\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startInline.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startInline\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4242\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4240\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n                },\n                {\n                  \"@id\": \"_:b3016\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3009\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startEqualSpaceInline.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startEqualSpaceInline\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4869\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4868\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n                },\n                {\n                  \"@id\": \"_:b5534\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5533\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startSpaceEqualInline.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startSpaceEqualInline\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3501\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3497\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n                },\n                {\n                  \"@id\": \"_:b2322\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2315\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2EachInclude1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3741\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3739\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n                },\n                {\n                  \"@id\": \"_:b5102\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5101\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2EachInclude1-after.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2EachInclude1-after\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4367\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4365\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n                },\n                {\n                  \"@id\": \"_:b37\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b36\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2OneInclude1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3875\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3874\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n                },\n                {\n                  \"@id\": \"_:b5526\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5525\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2OneInclude1-after.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2OneInclude1-after\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1768\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1764\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n                },\n                {\n                  \"@id\": \"_:b3637\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3635\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotIRIREF.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotAnnotIRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b332\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b330\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n                },\n                {\n                  \"@id\": \"_:b4325\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4323\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotSTRING_LITERAL1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotAnnotSTRING_LITERAL1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5528\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5527\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n                },\n                {\n                  \"@id\": \"_:b1789\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1777\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnot3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotAnnot3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1803\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1800\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n                },\n                {\n                  \"@id\": \"_:b4467\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4466\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotAnnot3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1inversedotAnnot3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b913\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b911\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n                },\n                {\n                  \"@id\": \"_:b224\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b222\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseAnnot3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3groupdotcloseAnnot3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1136\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1133\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n                },\n                {\n                  \"@id\": \"_:b526\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b525\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3941\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3939\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n                },\n                {\n                  \"@id\": \"_:b2374\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2371\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotNoCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b536\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b535\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n                },\n                {\n                  \"@id\": \"_:b1498\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1497\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1inversedotCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1inversedotCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4873\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4872\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n                },\n                {\n                  \"@id\": \"_:b1278\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1277\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotCode3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5203\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5202\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n                },\n                {\n                  \"@id\": \"_:b2904\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2902\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotNoCode3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotNoCode3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1066\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1064\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n                },\n                {\n                  \"@id\": \"_:b3572\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3570\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCode3fail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotCode3fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b199\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b197\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n                },\n                {\n                  \"@id\": \"_:b73\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b70\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotCodeWithEscapes1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotCodeWithEscapes1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1171\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1169\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n                },\n                {\n                  \"@id\": \"_:b1366\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1365\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotShapeCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2454\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2449\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n                },\n                {\n                  \"@id\": \"_:b1430\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1429\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeNoCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotShapeNoCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2797\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2795\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n                },\n                {\n                  \"@id\": \"_:b2377\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2373\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotcloseCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3groupdotcloseCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2727\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2724\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n                },\n                {\n                  \"@id\": \"_:b1054\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1052\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2453\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2448\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n                },\n                {\n                  \"@id\": \"_:b542\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b541\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startNoCode1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startNoCode1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b462\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b461\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n                },\n                {\n                  \"@id\": \"_:b995\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b992\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1fail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode1fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b846\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b844\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n                },\n                {\n                  \"@id\": \"_:b4721\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4720\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startRef.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode1startRef\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2327\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2323\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n                },\n                {\n                  \"@id\": \"_:b5188\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5187\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode1startReffail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode1startReffail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4328\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4326\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n                },\n                {\n                  \"@id\": \"_:b1248\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1247\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4984\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4983\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n                },\n                {\n                  \"@id\": \"_:b4585\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4584\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/startCode3fail.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"startCode3fail\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5328\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5327\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n                },\n                {\n                  \"@id\": \"_:b3772\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3770\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open3groupdotclosecard23Annot3Code2.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open3groupdotclosecard23Annot3Code2\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b492\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b491\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n                },\n                {\n                  \"@id\": \"_:b1624\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1623\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusIRI.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"0focusIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b1490\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1489\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n                },\n                {\n                  \"@id\": \"_:b5264\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5263\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/0focusBNODE.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"0focusBNODE\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4194\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4192\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n                },\n                {\n                  \"@id\": \"_:b1299\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1300\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRI_dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusIRI_dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3599\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3597\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n                },\n                {\n                  \"@id\": \"_:b4701\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4700\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODE_dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusBNODE_dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4751\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4750\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n                },\n                {\n                  \"@id\": \"_:b873\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b870\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteral-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusnonLiteral-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4439\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4438\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n                },\n                {\n                  \"@id\": \"_:b2865\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2863\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusLength-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusLength-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4028\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4021\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n                },\n                {\n                  \"@id\": \"_:b190\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b189\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMinLength-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusMinLength-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3582\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3579\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n                },\n                {\n                  \"@id\": \"_:b4172\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4170\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusMaxLength-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusMaxLength-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3273\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3270\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n                },\n                {\n                  \"@id\": \"_:b4994\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4993\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPattern-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusPattern-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2647\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2645\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n                },\n                {\n                  \"@id\": \"_:b4224\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4222\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusPatternB-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusPatternB-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2135\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2129\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n                },\n                {\n                  \"@id\": \"_:b3902\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3900\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusIRILength_dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusIRILength_dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4065\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4064\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n                },\n                {\n                  \"@id\": \"_:b1260\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1258\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusBNODELength_dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusBNODELength_dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3241\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3237\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n                },\n                {\n                  \"@id\": \"_:b5217\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5216\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusnonLiteralLength-dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b405\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b403\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n                },\n                {\n                  \"@id\": \"_:b206\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b203\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"NOT1dotOR2dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4371\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4369\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n                },\n                {\n                  \"@id\": \"_:b404\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b402\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"NOT1dotOR2dotX3\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4525\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4524\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n                },\n                {\n                  \"@id\": \"_:b270\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b267\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/NOT1dotOR2dotX3AND1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"NOT1dotOR2dotX3AND1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b695\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b693\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n                },\n                {\n                  \"@id\": \"_:b2824\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2822\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExtern.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"shapeExtern\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3416\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3412\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n                },\n                {\n                  \"@id\": \"_:b1012\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1010\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/shapeExternRef.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"shapeExternRef\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3642\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3639\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n                },\n                {\n                  \"@id\": \"_:b2952\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2950\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/2dot.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"2dot\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2155\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2149\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n                },\n                {\n                  \"@id\": \"_:b4851\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4850\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsORdatatype.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"focusvsORdatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2541\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2537\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n                },\n                {\n                  \"@id\": \"_:b4531\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4530\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDIRI.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"focusvsANDIRI\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b470\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b469\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n                },\n                {\n                  \"@id\": \"_:b1228\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1225\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvsANDdatatype.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"focusvsANDdatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5134\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5133\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n                },\n                {\n                  \"@id\": \"_:b4050\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4048\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusvs.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"focusvs\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b5038\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5037\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n                },\n                {\n                  \"@id\": \"_:b4809\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4808\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/focusdatatype.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"focusdatatype\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2440\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2436\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n                },\n                {\n                  \"@id\": \"_:b4597\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4596\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotPlusAnnotIRIREF.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotPlusAnnotIRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3696\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3695\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n                },\n                {\n                  \"@id\": \"_:b2831\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2830\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotAnnotAIRIREF.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotAnnotAIRIREF\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4663\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4662\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n                },\n                {\n                  \"@id\": \"_:b1215\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1213\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/FocusIRI2groupBnodeNested2groupIRIRef.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"FocusIRI2groupBnodeNested2groupIRIRef\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3596\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3593\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n                },\n                {\n                  \"@id\": \"_:b812\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b810\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1bnodeRefORRefMinlength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1bnodeRefORRefMinlength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4593\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4592\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n                },\n                {\n                  \"@id\": \"_:b5112\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5111\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotShapeAND1dot3X.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotShapeAND1dot3X\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3087\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3082\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n                },\n                {\n                  \"@id\": \"_:b2909\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2906\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b3087\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3082\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n                  },\n                  {\n                    \"@id\": \"_:b2909\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b2906\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi.turtle\"\n                },\n                \"mf:sameSemanticsAs\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b711\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b709\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n                },\n                {\n                  \"@id\": \"_:b3846\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3845\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotOne2dotclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b5370\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5369\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  },\n                  {\n                    \"@id\": \"_:b3886\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3562\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotOne2dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotOne2dotclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2308\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2307\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n                },\n                {\n                  \"@id\": \"_:b4739\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4738\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOneopen2dotSemiscloseclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b5370\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5369\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  },\n                  {\n                    \"@id\": \"_:b3886\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3562\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotOne2dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotSemiOneopen2dotSemiscloseclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2121\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2117\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n                },\n                {\n                  \"@id\": \"_:b4358\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4356\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/open1dotSemiOne2dotsemisclose.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b5370\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5369\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  },\n                  {\n                    \"@id\": \"_:b3886\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3562\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotOne2dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"open1dotSemiOne2dotsemisclose\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4251\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4249\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n                },\n                {\n                  \"@id\": \"_:b2115\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2111\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotSemiOne2dotSemis.turtle\"\n              },\n              \"mf:sameSemanticsAs\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\",\n                \"@type\": [\n                  \"TestCriterion\",\n                  \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                  \"TestCase\"\n                ],\n                \"assertions\": [\n                  {\n                    \"@id\": \"_:b5370\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://greggkellogg.net/foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://greggkellogg.net/\",\n                      \"foaf:name\": \"Gregg Kellogg\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b5369\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://rubygems.org/gems/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://greggkellogg.net/foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://greggkellogg.net/\",\n                          \"foaf:name\": \"Gregg Kellogg\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n                      \"homepage\": \"https://ruby-rdf.github.io/shex\",\n                      \"language\": \"Ruby\",\n                      \"name\": \"ShEx\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  },\n                  {\n                    \"@id\": \"_:b3886\",\n                    \"@type\": \"Assertion\",\n                    \"assertedBy\": {\n                      \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                      \"@type\": [\n                        \"Assertor\",\n                        \"foaf:Person\"\n                      ],\n                      \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                      \"foaf:name\": \"Eric Prud'hommeaux\"\n                    },\n                    \"mode\": \"earl:automatic\",\n                    \"result\": {\n                      \"@id\": \"_:b3562\",\n                      \"@type\": \"TestResult\",\n                      \"outcome\": \"earl:passed\"\n                    },\n                    \"subject\": {\n                      \"@id\": \"https://www.npmjs.com/package/shex\",\n                      \"@type\": [\n                        \"doap:Project\",\n                        \"TestSubject\",\n                        \"Software\"\n                      ],\n                      \"developer\": [\n                        {\n                          \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                          \"@type\": [\n                            \"Assertor\",\n                            \"foaf:Person\"\n                          ],\n                          \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n                          \"foaf:name\": \"Eric Prud'hommeaux\"\n                        }\n                      ],\n                      \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n                      \"homepage\": \"https://github.com/shexSpec/shex.js\",\n                      \"language\": \"JavaScript\",\n                      \"name\": \"ShEx.js\"\n                    },\n                    \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n                  }\n                ],\n                \"https://shexspec.github.io/shexTest/ns#json\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.json\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#shex\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.shex\"\n                },\n                \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                  \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1dotOne2dot.turtle\"\n                },\n                \"mf:status\": {\n                  \"@id\": \"mf:proposed\"\n                },\n                \"title\": \"1dotOne2dot\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1dotSemiOne2dotSemis\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2136\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2132\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b2144\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2137\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxinclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMaxinclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b2948\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b2946\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1706\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1707\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMaxexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMaxexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4100\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4098\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b1182\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b1180\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMininclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMininclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b79\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b78\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n                },\n                {\n                  \"@id\": \"_:b4152\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4150\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1literalMinexclusiveINTEGER.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1literalMinexclusiveINTEGER\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4909\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4908\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n                },\n                {\n                  \"@id\": \"_:b5094\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5093\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1val1DECIMAL.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1val1DECIMAL\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3549\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3546\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n                },\n                {\n                  \"@id\": \"_:b5434\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5433\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1datatypeRef1.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1datatypeRef1\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3249\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3246\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n                },\n                {\n                  \"@id\": \"_:b632\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b630\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1card2blank.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1card2blank\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b429\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b426\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n                },\n                {\n                  \"@id\": \"_:b433\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b434\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/1focusnonLiteralLength-nonLiteralLength.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"1focusnonLiteralLength-nonLiteralLength\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b3820\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b3813\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n                },\n                {\n                  \"@id\": \"_:b4449\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4448\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/_all.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"_all\"\n            },\n            {\n              \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\",\n              \"@type\": [\n                \"TestCriterion\",\n                \"http://www.w3.org/ns/shacl/test-suite#RepresentationTest\",\n                \"TestCase\"\n              ],\n              \"assertions\": [\n                {\n                  \"@id\": \"_:b4703\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b4702\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://www.npmjs.com/package/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n                },\n                {\n                  \"@id\": \"_:b5376\",\n                  \"@type\": \"Assertion\",\n                  \"assertedBy\": \"http://greggkellogg.net/foaf#me\",\n                  \"mode\": \"earl:automatic\",\n                  \"result\": {\n                    \"@id\": \"_:b5375\",\n                    \"@type\": \"TestResult\",\n                    \"outcome\": \"earl:passed\"\n                  },\n                  \"subject\": \"https://rubygems.org/gems/shex\",\n                  \"test\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n                }\n              ],\n              \"https://shexspec.github.io/shexTest/ns#json\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.json\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#shex\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.shex\"\n              },\n              \"https://shexspec.github.io/shexTest/ns#turtle\": {\n                \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/kitchenSink.turtle\"\n              },\n              \"mf:status\": {\n                \"@id\": \"mf:proposed\"\n              },\n              \"title\": \"kitchenSink\"\n            }\n          ],\n          \"rdfs:comment\": \"ShEx representation tests\"\n        }\n      ],\n      \"generatedBy\": {\n        \"@id\": \"https://rubygems.org/gems/earl-report\",\n        \"@type\": [\n          \"doap:Project\",\n          \"Software\"\n        ],\n        \"developer\": [\n          {\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"@type\": [\n              \"Assertor\",\n              \"foaf:Person\"\n            ],\n            \"foaf:homepage\": \"http://greggkellogg.net/\",\n            \"foaf:name\": \"Gregg Kellogg\"\n          }\n        ],\n        \"doapDesc\": \"EarlReport generates HTML+RDFa rollups of multiple EARL reports\",\n        \"homepage\": \"https://github.com/gkellogg/earl-report\",\n        \"language\": \"Ruby\",\n        \"license\": \"http://unlicense.org\",\n        \"name\": \"earl-report\",\n        \"release\": {\n          \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.4.3\",\n          \"@type\": \"doap:Version\",\n          \"created\": \"2016-12-26\",\n          \"name\": \"earl-report-0.4.3\",\n          \"revision\": \"0.4.3\"\n        },\n        \"shortdesc\": \"Earl Report summary generator\"\n      },\n      \"name\": \"Shape Expressions Language\",\n      \"testSubjects\": [\n        {\n          \"@id\": \"https://rubygems.org/gems/shex\",\n          \"@type\": [\n            \"doap:Project\",\n            \"TestSubject\",\n            \"Software\"\n          ],\n          \"developer\": [\n            {\n              \"@id\": \"http://greggkellogg.net/foaf#me\",\n              \"@type\": [\n                \"Assertor\",\n                \"foaf:Person\"\n              ],\n              \"foaf:homepage\": \"http://greggkellogg.net/\",\n              \"foaf:name\": \"Gregg Kellogg\"\n            }\n          ],\n          \"doapDesc\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n          \"homepage\": \"https://ruby-rdf.github.io/shex\",\n          \"language\": \"Ruby\",\n          \"name\": \"ShEx\"\n        },\n        {\n          \"@id\": \"https://www.npmjs.com/package/shex\",\n          \"@type\": [\n            \"doap:Project\",\n            \"TestSubject\",\n            \"Software\"\n          ],\n          \"developer\": [\n            {\n              \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n              \"@type\": [\n                \"Assertor\",\n                \"foaf:Person\"\n              ],\n              \"foaf:homepage\": \"http://www.w3.org/People/Eric/\",\n              \"foaf:name\": \"Eric Prud'hommeaux\"\n            }\n          ],\n          \"doapDesc\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n          \"homepage\": \"https://github.com/shexSpec/shex.js\",\n          \"language\": \"JavaScript\",\n          \"name\": \"ShEx.js\"\n        }\n      ]\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/shex-short.jsonld",
    "content": "[\n  {\n    \"@id\": \"\",\n    \"http://www.w3.org/ns/earl#testSubjects\": [\n      {\n        \"@id\": \"https://www.npmjs.com/package/shex\"\n      },\n      {\n        \"@id\": \"https://rubygems.org/gems/shex\"\n      }\n    ],\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest\"\n          }\n        ]\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"Shape Expressions Language\"\n      }\n    ],\n    \"http://purl.org/dc/terms/bibliographicCitation\": [\n      {\n        \"@value\": \"[[ShEx]]\"\n      }\n    ],\n    \"http://www.w3.org/ns/earl#assertions\": [\n      {\n        \"@id\": \"shex.js-earl.ttl\"\n      },\n      {\n        \"@id\": \"rdf.rb-earl.ttl\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://www.w3.org/ns/earl#generatedBy\": [\n      {\n        \"@id\": \"https://rubygems.org/gems/earl-report\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://greggkellogg.net/foaf#me\",\n    \"http://xmlns.com/foaf/0.1/name\": [\n      {\n        \"@value\": \"Gregg Kellogg\"\n      }\n    ],\n    \"http://xmlns.com/foaf/0.1/homepage\": [\n      {\n        \"@id\": \"http://greggkellogg.net/\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertor\",\n      \"http://xmlns.com/foaf/0.1/Person\"\n    ]\n  },\n  {\n    \"@id\": \"https://rubygems.org/gems/earl-report\",\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"earl-report\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://github.com/gkellogg/earl-report\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#shortdesc\": [\n      {\n        \"@value\": \"Earl Report summary generator\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"EarlReport generates HTML+RDFa rollups of multiple EARL reports\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#license\": [\n      {\n        \"@id\": \"http://unlicense.org\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#release\": [\n      {\n        \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.4.3\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"Ruby\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://rubygems.org/gems/shex\",\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"ShEx\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://ruby-rdf.github.io/shex\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://greggkellogg.net/foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"ShEx is an Shape Expression engine for the RDF.rb library suite.\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#TestSubject\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"Ruby\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\",\n    \"http://xmlns.com/foaf/0.1/name\": [\n      {\n        \"@value\": \"Eric Prud'hommeaux\"\n      }\n    ],\n    \"http://xmlns.com/foaf/0.1/homepage\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/\"\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Assertor\",\n      \"http://xmlns.com/foaf/0.1/Person\"\n    ]\n  },\n  {\n    \"@id\": \"https://github.com/gkellogg/earl-report/tree/0.4.3\",\n    \"http://usefulinc.com/ns/doap#created\": [\n      {\n        \"@value\": \"2016-12-26\",\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"earl-report-0.4.3\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Version\"\n    ],\n    \"http://usefulinc.com/ns/doap#revision\": [\n      {\n        \"@value\": \"0.4.3\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1MissingRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusMissingRefdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#1focusRefANDSelfdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeNonSimpleShape\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeStructure/manifest#includeShapeNotFound\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx negative structure tests\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1decimalMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotAnnot_AIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1dotUnlabeledCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1doubleMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1floatMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1integerMininclusiveroman-numeral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1inverseinversedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriLength2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxexclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMaxinclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMinexclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1iriMininclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalFractiondigitsxsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalLength2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1literalTotaldigitsxsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatedinversenegateddot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1negatednegateddot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1unknowndatatypeMaxInclusive\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1iriMinusiri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1val1vcrefSTRING_LITERAL1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#1valA\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DECIMAL-123.abc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#DOUBLE-123e\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-+-1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#INTEGER-123abc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-ECHAR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-PN_LOCAL_ESC\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-SPACE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#IRIREF-with-bad-UCHAR.2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-declared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-end-undeclared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-declared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PNAME_NS-dot-at-start-undeclared\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-end\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-mid\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-PERCENT-start\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-dash-start\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-unescaped-TILDE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#PN_LOCAL-with-UCHAR.1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL1-ending-QUOTATION_MARK\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-ECHAR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-LANGTAG\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-bad-UCHAR2-value\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-ending-APOSTROPHE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-illegal-UCHAR1-value\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL2-with-LANGTAG-and-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG1-ending-APOSTROPHE4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-APOSTROPHE3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-ending-QUOTATION_MARK4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#STRING_LITERAL_LONG2-unterminated\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-no-uri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#base-uri-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#bnodedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#capitol-A\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#group-no-COMMA-separators\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#groupShapeConstr-trailing-OR\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#literal-0x123\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotcloseCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#open1dotclosecardOpt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotOr1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#openopen1dotcloseCode1closeCode2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-ANON\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-BLANK_NODE_LABEL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#predicate-true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-COLON\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-PNAME_NS\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-no-uri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#prefix-none\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#shapename-true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-no-valueClass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-datatype-and-valueSet\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-dot-and-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/negativeSyntax/manifest#tripleConsraint-with-two-cardinalities\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx negative syntax tests\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dot-base\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNS2Comment\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNexComment\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNdefault\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNSdefault\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotLNex-HYPHEN_MINUS\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#bnode1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Adot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypelangString\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card25\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2Star\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardOpt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardPlus\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1cardStar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPlus\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefLNex1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceLNex1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefNS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefSpaceNS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_digit1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_leading_underscore1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1refbnode_with_spanning_PN_CHARS_BASE1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3circularRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotInline1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1INTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DOUBLElowercase\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1LANGTAG\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1false\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalFractiondigits4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalTotaldigits2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMininclusivexsd-integer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMininclusivexsd-decimal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMininclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMininclusivexsd-double\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMinexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMinexclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMinexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxinclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxinclusivexsd-float\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxinclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1integerMaxexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-byte\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1decimalMaxexclusivexsd-decimal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1floatMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveINTEGERLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDECIMALintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLELeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEint\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1Length\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalLength19\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriRefLength1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralMaxlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPattern19\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalStartPatternEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalCarrotPatternDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalPatternabEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1iriPatternbc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodePattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1nonliteralPattern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1refvsMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1dotMinusiriStem3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStem\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiri3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1iriStemMinusiriStem3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemis\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotsemisclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne1dotSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotOne1dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dotSemiOne1dotSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open2dotSemisOne1dotSemiclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotcloseOne1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen2dotSemiscloseOne1dotSemiclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotOne1dotcloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotopen1dotSemiOne1dotSemicloseSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotOne2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOneopen2dotcloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotOne1dotclose1dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefIRIREF1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefbnode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1AND1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprAND3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotRefOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1OR1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprRefOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExprOR3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1AND1OR1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vExpr1OR1AND1Ref3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3Onedotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open4Onedotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1vShapeANDRef3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotClosed\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val2IRIREFPlusExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1IRIREFExtra1One\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotExtra1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdot3Extra\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#3groupdotExtra3NLex\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startRefbnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startEqualSpaceInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startSpaceEqualInline\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2EachInclude1-after\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2OneInclude1-after\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotSTRING_LITERAL1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseAnnot3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1inversedotCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotNoCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCode3fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotCodeWithEscapes1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotcloseCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startNoCode1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode1startReffail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#startCode3fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open3groupdotclosecard23Annot3Code2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#0focusBNODE\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRI_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODE_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteral-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMinLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusMaxLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPattern-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusPatternB-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusIRILength_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusBNODELength_dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#NOT1dotOR2dotX3AND1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExtern\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#shapeExternRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#2dot\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsORdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvsANDdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusvs\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#focusdatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotPlusAnnotIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotAnnotAIRIREF\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#FocusIRI2groupBnodeNested2groupIRIRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1bnodeRefORRefMinlength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotShapeAND1dot3X\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#openopen1dotSemiOne1dotSemiclose1dotSemicloseSemi\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotOne2dotclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOneopen2dotSemiscloseclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#open1dotSemiOne2dotsemisclose\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1dotSemiOne2dotSemis\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxinclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMaxexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMininclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1literalMinexclusiveINTEGER\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1val1DECIMAL\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1datatypeRef1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1card2blank\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#1focusnonLiteralLength-nonLiteralLength\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#_all\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/schemas/manifest#kitchenSink\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx representation tests\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest\",\n    \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#entries\": [\n      {\n        \"@list\": [\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0_otherbnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot-base_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotSemi_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNS2Comment_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNexComment_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNdefault_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNSdefault_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotLNex-HYPHEN_MINUS_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_pass-others_lexicallyLater\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#bnode1dot_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedot_pass-over_lexicallyLater\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Adot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iri_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnode_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literal_pass-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-nonLiteralLength_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteral_fail-literal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_nonLiteral\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_langString\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_wrongDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypelangString_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2_fail3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_pass5\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card25_fail6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_fail1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1card2Star_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_fail2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardOpt_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_fail0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardPlus_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1cardStar_pass6\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPlus_Is1_Ip1_La,Io1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referent,referrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_referrer,referent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_selfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_missingSelfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overReferrer,overReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRef1_overMatchesReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g1-arc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1refbnode1_fail-g2-arc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-open\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3circularRef1_pass-closed\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_pass-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRef1_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeRef1_pass-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-datatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeRef1_fail-reflexiveRef\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_referrer,referent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_selfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_missingSelfReference\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overReferrer,overReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotInline1_overMatchesReferent\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREF_v1v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_00\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_00\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DECIMAL_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1INTEGER_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLE_0_0e0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_fail-0E0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1DOUBLElowercase_0_0e0\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LabLTen-fr-jura\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1LANGTAG_LaLTen-fr\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_Lab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LabDTbloodType999\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFDatatype_LaDTbloodType\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_false\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1true_ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_true\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1false_ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-wrongDatatype\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1datatypeLength_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-decimal-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_pass-xsd_integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_23ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_decimal-1_2345ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-malformedxsd_integer-1_2345\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalFractiondigits_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-decimal-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-xsd_integer-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-integer-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-integer-longLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_pass-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-byte-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_23ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_decimal-1_2345ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-malformedxsd_integer-1_2345\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-iri\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalTotaldigits_fail-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinexclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_pass-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxexclusiveINTEGER_fail-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxinclusiveINTEGER_fail-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-equalTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGERLead_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMAL_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDECIMALintLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLE_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLELeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-equalLead\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveDOUBLEintLeadTrail_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-dateTime-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-string-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusiveINTEGER_fail-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMininclusivexsd-integer_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGER_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveINTEGERLead_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMALintLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLE_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLELeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDOUBLEintLeadTrail_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMininclusivexsd-decimal_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveINTEGERLead_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMAL_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDECIMALintLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLE_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLELeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusiveDOUBLEintLeadTrail_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMininclusivexsd-float_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveINTEGERLead_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMAL_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDECIMALintLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLE_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-equalLeadTrail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLELeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusiveDOUBLEintLeadTrail_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMininclusivexsd-double_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveINTEGER_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDECIMALint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMinexclusiveDOUBLEint_pass-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveINTEGER_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDOUBLE_pass-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMinexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveINTEGER_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDECIMAL_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusiveDOUBLE_pass-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMinexclusivexsd-float_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveINTEGER_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDOUBLE_pass-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMinexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveINTEGER_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDECIMALint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_pass-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxinclusiveDOUBLEint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveINTEGER_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_pass-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDOUBLE_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxinclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveINTEGER_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDECIMAL_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_pass-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusiveDOUBLE_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxinclusivexsd-float_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveINTEGER_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_pass-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDOUBLE_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxinclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveINTEGER_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDECIMALint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_pass-integer-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1integerMaxexclusiveDOUBLEint_fail-integer-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveINTEGER_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_pass-decimal-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDOUBLE_fail-decimal-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-float-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-byte_fail-byte-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1decimalMaxexclusivexsd-decimal_fail-decimal-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveINTEGER_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDECIMAL_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_pass-float-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1floatMaxexclusiveDOUBLE_fail-float-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGER_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveINTEGERLead_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMAL_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALint_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDECIMALintLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_pass-double-low\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLE_fail-double-high\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLELeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEint_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1doubleMaxexclusiveDOUBLEintLeadTrail_fail-double-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1Length_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalLength_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriLength_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriRefLength1_fail-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeLength_fail-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralLength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMinlength_pass-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMinlength_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMinlength_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMinlength_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalMaxlength_fail-lit-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriMaxlength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodeMaxlength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralMaxlength_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-ab\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-cd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-lit-into\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern19_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_fail-litEnd\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternDollar_pass-litDollar-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-StartlitEnd-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPatternEnd_CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalCarrotPatternDollar_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternabEnd_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStartPattern_fail-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPatternEnd_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-bcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalStarPatternEnd_pass-bc\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1literalPattern_pass-CarrotbcDollar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1iriPattern_fail-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1bnodePattern_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-lit-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1nonliteralPattern_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1refvsMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1dotMinusiriStem3_v1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_passv1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStem_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiri3_passIv1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_passIv4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1iriStemMinusiriStem3_v1a\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-oneOf_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dot-someOf_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open1dotOneopen2dotcloseclose_fail_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_pass_p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#openopen1dotOne1dotclose1dotclose_fail_p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefIRIREF1_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_fail-lit-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefbnode1_pass-lit-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeAND1dot3X_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failAll\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_failShape1Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefAND3_passShape1Shape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1AND1Ref3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefAND3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprAND3_failvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_ReflexiveShortIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_IntoReflexiveBNode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_IRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_BNode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#refBNodeORrefIRI_CyclicIRI_ShortIRI\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotRefOR3_passShape1Shape2Shape3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1OR1Ref3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprRefOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExprOR3_passvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_pass-vc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1AND1OR1Ref3_failvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_pass-vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vExpr1OR1AND1Ref3_failvc1vc2vc3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1X2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1X4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_pass-p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard2_fail-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_fail-p1X4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3Onedotclosecard23_pass-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open4Onedotclosecard23_fail-p1p2p3p4\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23_pass-p1p2p3X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1vShapeANDRef3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_lower\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotClosed_fail_higher\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#FocusIRI2groupBnodeNested2groupIRIRef_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFPlusExtra1_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val2IRIREFExtra1_pass-iri-bnode\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1p2_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotOne2dotExtra-someOf_pass_p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1val1IRIREFExtra1One_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotExtra1_fail-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdot3Extra_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#3groupdotExtra3NLex_pass-iri2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_pass-others_lexicallyEarlier\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefIRIREF_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startRefbnode_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startEqualSpaceInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startSpaceEqualInline_pass-noOthers\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startInline_fail-missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2EachInclude1-after_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2OneInclude1-after_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotIRIREF_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotPlusAnnotIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotAIRIREF_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnotSTRING_LITERAL1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotAnnot3_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotAnnot3_missing\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1inversedotCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotNoCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCode3fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotCodeWithEscapes1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dotShapeNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotcloseCode1-p1p2p3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startNoCode1_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode1startReffail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#startCode3fail_abort\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#open3groupdotclosecard23Annot3Code2-p1p2p3X3\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_other_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusIRI_empty_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty_fail-iriFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other_fail-iriFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#0focusBNODE_other\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_fail-bnodeFocusLabel\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRI_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_fail-iriFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODE_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteral-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusdatatype_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#focusvs_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDdatatype_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsANDIRI_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-val\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-val\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_pass-dt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusvsORdatatype_fail-dt\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusLength-dot_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMinLength-dot_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_pass-bnode-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusMaxLength-dot_fail-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_pass-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPattern-dot_fail-iri-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-iri-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_fail-bnode-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-match\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusPatternB-dot_pass-bnode-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-bnodeFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusIRILength_dot_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-iriFocusLabel-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-short\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusBNODELength_dot_fail-long\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1focusnonLiteralLength-dot_pass-iri-equal\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dot_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-empty\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-NoShape1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_pass-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#NOT1dotOR2dotX3AND1_fail-Shape2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExtern_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_pass\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#shapeExternRef_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#false-lead-excluding-value-shape\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy_fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#nPlus1-greedy-rewrite\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#skipped\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#repeated-group\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#simple-group\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarT-greedy\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-fail\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PTstar-greedy-rewrite\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#PstarTstar\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#P2T2\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#1dot_fail-empty-err\"\n          },\n          {\n            \"@id\": \"https://raw.githubusercontent.com/shexSpec/shexTest/master/validation/manifest#2dot_fail-empty-err\"\n          }\n        ]\n      }\n    ],\n    \"@type\": [\n      \"http://www.w3.org/ns/earl#Report\",\n      \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#Manifest\"\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"ShEx validation tests\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"https://www.npmjs.com/package/shex\",\n    \"http://usefulinc.com/ns/doap#name\": [\n      {\n        \"@value\": \"ShEx\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#homepage\": [\n      {\n        \"@id\": \"https://github.com/shexSpec/shex.js\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#developer\": [\n      {\n        \"@id\": \"http://www.w3.org/People/Eric/ericp-foaf#me\"\n      }\n    ],\n    \"http://usefulinc.com/ns/doap#description\": [\n      {\n        \"@value\": \"ShEx.js is an Shape Expression engine for N3.js.\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"@type\": [\n      \"http://usefulinc.com/ns/doap#Project\",\n      \"http://www.w3.org/ns/earl#TestSubject\",\n      \"http://www.w3.org/ns/earl#Software\"\n    ],\n    \"http://usefulinc.com/ns/doap#programming-language\": [\n      {\n        \"@value\": \"Ruby\"\n      }\n    ]\n  }\n]"
  },
  {
    "path": "example-files/star-wars.nq",
    "content": "<http://movies.example.org/StarWarsIV> <http://schema.org/name> \"Star Wars IV\" <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/director> <http://people.example.org/Lucas> <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/actor> <http://people.example.org/Ford> <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/actor> <http://people.example.org/Alec> <http://movies.example.org/StarWarsIV> .\n<http://people.example.org/HarrisonFord> <http://schema.org/name> \"Harrison Ford\" <http://people.example.org/HarrisonFord> .\n<http://people.example.org/AlecGuinness> <http://schema.org/name> \"Alec Guinness\" <http://people.example.org/AlecGuinness> .\n<http://people.example.org/AlecGuinness> <http://schema.org/birthDate> \"1914-04-02\"^^<http://www.w3.org/2001/XMLSchema#date> <http://people.example.org/AlecGuinness> .\n<http://people.example.org/AlecGuinness> <http://schema.org/deathDate> \"2000-08-05\"^^<http://www.w3.org/2001/XMLSchema#date> <http://people.example.org/AlecGuinness> .\n<http://people.example.org/GeorgeLucas> <http://schema.org/name> \"George Lucas\" <http://people.example.org/GeorgeLucas> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/relationships> <http://movies.example.org/StarWarsIV/Lucas> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/relationships> <http://movies.example.org/StarWarsIV/Ford> .\n<http://movies.example.org/StarWarsIV> <http://schema.org/relationships> <http://movies.example.org/StarWarsIV/Alec> .\n<http://movies.example.org/StarWarsIV/Lucas> <http://schema.org/source> <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV/Lucas> <http://schema.org/destination> <http://people.example.org/GeorgeLucas> .\n<http://movies.example.org/StarWarsIV/Ford> <http://schema.org/source> <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV/Ford> <http://schema.org/destination> <http://people.example.org/HarrisonFord> .\n<http://movies.example.org/StarWarsIV/Ford> <http://schema.org/asCharacter> \"Han Solo\" .\n<http://movies.example.org/StarWarsIV/Alec> <http://schema.org/source> <http://movies.example.org/StarWarsIV> .\n<http://movies.example.org/StarWarsIV/Alec> <http://schema.org/destination> <http://people.example.org/AlecGuinness> .\n<http://movies.example.org/StarWarsIV/Alec> <http://schema.org/asCharacter> \"Obi-Wan Kenobi\" .\n"
  },
  {
    "path": "example-files/toRdf-manifest.jsonld",
    "content": "{\n  \"@context\": \"https://json-ld.org/test-suite/context.jsonld\",\n  \"@id\": \"\",\n  \"@type\": \"jld:Manifest\",\n  \"rdfs:comment\": \"JSON-LD to RDF tests generate N-Quads Output\",\n  \"name\": \"toRdf\",\n  \"baseIri\": \"https://json-ld.org/test-suite/tests/\",\n  \"sequence\": [\n    {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Plain literal with URIs\",\n      \"purpose\": \"Tests generation of a triple using full URIs and a plain literal.\",\n      \"input\": \"toRdf-0001-in.jsonld\",\n      \"expect\": \"toRdf-0001-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Plain literal with CURIE from default context\",\n      \"purpose\": \"Tests generation of a triple using a CURIE defined in the default context.\",\n      \"input\": \"toRdf-0002-in.jsonld\",\n      \"expect\": \"toRdf-0002-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Default subject is BNode\",\n      \"purpose\": \"Tests that a BNode is created if no explicit subject is set.\",\n      \"input\": \"toRdf-0003-in.jsonld\",\n      \"expect\": \"toRdf-0003-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Literal with language tag\",\n      \"purpose\": \"Tests that a plain literal is created with a language tag.\",\n      \"input\": \"toRdf-0004-in.jsonld\",\n      \"expect\": \"toRdf-0004-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Extended character set literal\",\n      \"purpose\": \"Tests that a literal may be created using extended characters.\",\n      \"input\": \"toRdf-0005-in.jsonld\",\n      \"expect\": \"toRdf-0005-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Typed literal\",\n      \"purpose\": \"Tests creation of a literal with a datatype.\",\n      \"input\": \"toRdf-0006-in.jsonld\",\n      \"expect\": \"toRdf-0006-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Tests 'a' generates rdf:type and object is implicit IRI\",\n      \"purpose\": \"Verify that 'a' is an alias for rdf:type, and the object is created as an IRI.\",\n      \"input\": \"toRdf-0007-in.jsonld\",\n      \"expect\": \"toRdf-0007-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test prefix defined in @context\",\n      \"purpose\": \"Generate an IRI using a prefix defined within an @context.\",\n      \"input\": \"toRdf-0008-in.jsonld\",\n      \"expect\": \"toRdf-0008-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test using an empty suffix\",\n      \"purpose\": \"An empty suffix may be used.\",\n      \"input\": \"toRdf-0009-in.jsonld\",\n      \"expect\": \"toRdf-0009-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test object processing defines object\",\n      \"purpose\": \"A property referencing an associative array gets object from subject of array.\",\n      \"input\": \"toRdf-0010-in.jsonld\",\n      \"expect\": \"toRdf-0010-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test object processing defines object with implicit BNode\",\n      \"purpose\": \"If no @ is specified, a BNode is created, and will be used as the object of an enclosing property.\",\n      \"input\": \"toRdf-0011-in.jsonld\",\n      \"expect\": \"toRdf-0011-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Multiple Objects for a Single Property\",\n      \"purpose\": \"Tests that Multiple Objects are for a Single Property using array syntax.\",\n      \"input\": \"toRdf-0012-in.jsonld\",\n      \"expect\": \"toRdf-0012-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Creation of an empty list\",\n      \"purpose\": \"Tests that [[]] generates an empty list.\",\n      \"input\": \"toRdf-0013-in.jsonld\",\n      \"expect\": \"toRdf-0013-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Creation of a list with single element\",\n      \"purpose\": \"Tests that [[a]] generates list.\",\n      \"input\": \"toRdf-0014-in.jsonld\",\n      \"expect\": \"toRdf-0014-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Creation of a list with multiple elements\",\n      \"purpose\": \"Tests that list with multiple elements.\",\n      \"input\": \"toRdf-0015-in.jsonld\",\n      \"expect\": \"toRdf-0015-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Empty IRI expands to resource location\",\n      \"purpose\": \"Expanding an empty IRI uses the test file location.\",\n      \"input\": \"toRdf-0016-in.jsonld\",\n      \"expect\": \"toRdf-0016-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Relative IRI expands relative resource location\",\n      \"purpose\": \"Expanding a relative IRI uses the test file location.\",\n      \"input\": \"toRdf-0017-in.jsonld\",\n      \"expect\": \"toRdf-0017-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Frag ID expands relative resource location\",\n      \"purpose\": \"Expanding a fragment uses the test file location.\",\n      \"input\": \"toRdf-0018-in.jsonld\",\n      \"expect\": \"toRdf-0018-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test type coercion to anyURI\",\n      \"purpose\": \"Tests coercion of object to anyURI when specified.\",\n      \"input\": \"toRdf-0019-in.jsonld\",\n      \"expect\": \"toRdf-0019-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test type coercion to typed literal\",\n      \"purpose\": \"Tests coercion of object to a typed literal when specified.\",\n      \"input\": \"toRdf-0020-in.jsonld\",\n      \"expect\": \"toRdf-0020-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test coercion of double value\",\n      \"purpose\": \"Tests that a decimal value generates a xsd:double typed literal;.\",\n      \"input\": \"toRdf-0022-in.jsonld\",\n      \"expect\": \"toRdf-0022-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test coercion of integer value\",\n      \"purpose\": \"Tests that a decimal value generates a xsd:integer typed literal.\",\n      \"input\": \"toRdf-0023-in.jsonld\",\n      \"expect\": \"toRdf-0023-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test coercion of boolean value\",\n      \"purpose\": \"Tests that a decimal value generates a xsd:boolean typed literal.\",\n      \"input\": \"toRdf-0024-in.jsonld\",\n      \"expect\": \"toRdf-0024-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test list coercion with single element\",\n      \"purpose\": \"Tests that an array with a single element on a property with @list coercion creates an RDF Collection.\",\n      \"input\": \"toRdf-0025-in.jsonld\",\n      \"expect\": \"toRdf-0025-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Test creation of multiple types\",\n      \"purpose\": \"Tests that @type with an array of types creates multiple types.\",\n      \"input\": \"toRdf-0026-in.jsonld\",\n      \"expect\": \"toRdf-0026-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Simple named graph (Wikidata)\",\n      \"purpose\": \"Using @graph with other keys places triples in a named graph.\",\n      \"input\": \"toRdf-0027-in.jsonld\",\n      \"expect\": \"toRdf-0027-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Simple named graph\",\n      \"purpose\": \"Signing a graph.\",\n      \"input\": \"toRdf-0028-in.jsonld\",\n      \"expect\": \"toRdf-0028-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"named graph with embedded named graph\",\n      \"purpose\": \"Tests that named graphs containing named graphs flatten to single level of graph naming.\",\n      \"input\": \"toRdf-0029-in.jsonld\",\n      \"expect\": \"toRdf-0029-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"top-level graph with string subject reference\",\n      \"purpose\": \"Tests graphs containing subject references as strings.\",\n      \"input\": \"toRdf-0030-in.jsonld\",\n      \"expect\": \"toRdf-0030-out.nq\"\n    }, {\n      \"@type\": [\"jld:PositiveEvaluationTest\", \"jld:ToRDFTest\"],\n      \"name\": \"Reverse property\",\n      \"purpose\": \"Tests conversion of reverse properties.\",\n      \"input\": \"toRdf-0031-in.jsonld\",\n      \"expect\": \"toRdf-0031-out.nq\"\n    }\n  ]\n}\n"
  },
  {
    "path": "example-files/vc1373-2.jsonld",
    "content": "{\n  \"@context\": [\n    {\n      \"@protected\": true,\n      \"@vocab\": \"https://www.w3.org/ns/credentials/issuer-dependent#\",\n      \"id\": \"@id\",\n      \"type\": \"@type\",\n      \"VerifiablePresentation\": {\n        \"@id\": \"https://www.w3.org/2018/credentials#VerifiablePresentation\",\n        \"@context\": {\n          \"@protected\": true,\n          \"id\": \"@id\",\n          \"type\": \"@type\",\n          \"holder\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#holder\",\n            \"@type\": \"@id\"\n          },\n          \"proof\": {\n            \"@id\": \"https://w3id.org/security#proof\",\n            \"@type\": \"@id\",\n            \"@container\": \"@graph\"\n          },\n          \"verifiableCredential\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#verifiableCredential\",\n            \"@type\": \"@id\",\n            \"@container\": \"@graph\",\n            \"@context\": null\n          },\n          \"termsOfUse\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#termsOfUse\",\n            \"@type\": \"@id\"\n          }\n        }\n      },\n      \"issuer\": {\n        \"@id\": \"https://www.w3.org/2018/credentials#issuer\",\n        \"@type\": \"@id\",\n        \"@context\": {\n          \"@protected\": true,\n\n          \"id\": \"@id\",\n          \"type\": \"@type\",\n\n          \"description\": {\n            \"@id\": \"https://schema.org/description\",\n            \"@context\": {\n              \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n            }\n          },\n          \"name\": {\n            \"@id\": \"https://schema.org/name\",\n            \"@context\": {\n              \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n            }\n          }\n        }\n      }\n    }\n  ],\n  \"type\": \"VerifiablePresentation\",\n  \"verifiableCredential\": [\"http://university.example/credentials/1872\"]\n}"
  },
  {
    "path": "example-files/vc1373.jsonld",
    "content": "{\n  \"@context\": [\n    {\n      \"@protected\": true,\n      \"@vocab\": \"https://www.w3.org/ns/credentials/issuer-dependent#\",\n      \"id\": \"@id\",\n      \"type\": \"@type\",\n      \"VerifiablePresentation\": {\n        \"@id\": \"https://www.w3.org/2018/credentials#VerifiablePresentation\",\n        \"@context\": {\n          \"@protected\": true,\n          \"id\": \"@id\",\n          \"type\": \"@type\",\n          \"holder\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#holder\",\n            \"@type\": \"@id\"\n          },\n          \"proof\": {\n            \"@id\": \"https://w3id.org/security#proof\",\n            \"@type\": \"@id\",\n            \"@container\": \"@graph\"\n          },\n          \"verifiableCredential\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#verifiableCredential\",\n            \"@type\": \"@id\",\n            \"@container\": \"@graph\",\n            \"@context\": null\n          },\n          \"termsOfUse\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#termsOfUse\",\n            \"@type\": \"@id\"\n          }\n        }\n      },\n      \"issuer\": {\n        \"@id\": \"https://www.w3.org/2018/credentials#issuer\",\n        \"@type\": \"@id\",\n        \"@context\": {\n          \"@protected\": true,\n\n          \"id\": \"@id\",\n          \"type\": \"@type\",\n\n          \"description\": {\n            \"@id\": \"https://schema.org/description\",\n            \"@context\": {\n              \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n            }\n          },\n          \"name\": {\n            \"@id\": \"https://schema.org/name\",\n            \"@context\": {\n              \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n            }\n          }\n        }\n      }\n    }\n  ],\n  \"type\": \"VerifiablePresentation\",\n  \"verifiableCredential\": [\n    {\n      \"@context\": [\n        {\n          \"@protected\": true,\n          \"@vocab\": \"https://www.w3.org/ns/credentials/issuer-dependent#\",\n          \"id\": \"@id\",\n          \"type\": \"@type\",\n          \"VerifiablePresentation\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#VerifiablePresentation\",\n            \"@context\": {\n              \"@protected\": true,\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"holder\": {\n                \"@id\": \"https://www.w3.org/2018/credentials#holder\",\n                \"@type\": \"@id\"\n              },\n              \"proof\": {\n                \"@id\": \"https://w3id.org/security#proof\",\n                \"@type\": \"@id\",\n                \"@container\": \"@graph\"\n              },\n              \"verifiableCredential\": {\n                \"@id\": \"https://www.w3.org/2018/credentials#verifiableCredential\",\n                \"@type\": \"@id\",\n                \"@container\": \"@graph\",\n                \"@context\": null\n              },\n              \"termsOfUse\": {\n                \"@id\": \"https://www.w3.org/2018/credentials#termsOfUse\",\n                \"@type\": \"@id\"\n              }\n            }\n          },\n          \"issuer\": {\n            \"@id\": \"https://www.w3.org/2018/credentials#issuer\",\n            \"@type\": \"@id\",\n            \"@context\": {\n              \"@protected\": true,\n\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n\n              \"description\": {\n                \"@id\": \"https://schema.org/description\",\n                \"@context\": {\n                  \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n                }\n              },\n              \"name\": {\n                \"@id\": \"https://schema.org/name\",\n                \"@context\": {\n                  \"value\": \"@value\", \"lang\": \"@language\", \"dir\": \"@direction\"\n                }\n              }\n            }\n          }\n        }\n      ],\n      \"id\": \"http://university.example/credentials/1872\",\n      \"type\": \"VerifiableCredential\",\n      \"issuer\": \"https://university.example/issuers/565049\"\n    }\n  ]\n}"
  },
  {
    "path": "example-files/w3c_events_context.jsonld",
    "content": "{\n    \"@context\": {\n        \"ns\": \"http://example.org/ns/\",\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"s\": \"http://schema.org/\",\n\n        \"id\": \"@id\",\n        \"actor\": {\n            \"@id\": \"s:actor\",\n            \"@context\": {\n                \"id\": null,\n                \"url\": \"@id\",\n                \"login\": \"s:accountId\",\n                \"avatar_url\": \"s:image\"\n            }\n        },\n        \"repo\": {\n            \"@id\": \"ns:onRepository\",\n            \"@context\": {\n                \"id\": null,\n                \"url\": \"@id\",\n                \"name\": \"s:name\"\n            }\n        },\n        \"created_at\": {\n            \"@id\": \"s:startDate\",\n            \"@type\": \"xsd:dateTimeStamp\"\n        },\n        \"payload\": \"@nest\",\n        \"issue\": {\n            \"@id\": \"ns:issue\",\n            \"@context\": {\n                \"id\": null,\n                \"url\": \"@id\",\n                \"title\": \"s:description\",\n                \"user\": {\n                    \"@id\": \"s:creator\",\n                    \"@context\": {\n                        \"login\": \"s:accountId\",\n                        \"avatar_url\": \"s:image\"        \n                    }\n                }\n            }\n        },\n        \"IssueCommentEvent\": \"ns:IssueComment\"\n    }\n}"
  },
  {
    "path": "example-files/w3c_events_excerpt.json",
    "content": "[\n  {\n    \"id\": \"13491242818\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 1122927,\n      \"login\": \"tidoust\",\n      \"display_login\": \"tidoust\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/tidoust\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/1122927?\"\n    },\n    \"repo\": {\n      \"id\": 96079118,\n      \"name\": \"w3c/webref\",\n      \"url\": \"https://api.github.com/repos/w3c/webref\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/webref/issues/58\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/webref\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/webref/issues/58/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/webref/issues/58/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/webref/issues/58/events\",\n        \"html_url\": \"https://github.com/w3c/webref/pull/58\",\n        \"id\": 694046711,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDgwNDkwMjYx\",\n        \"number\": 58,\n        \"title\": \"Fix Travis build URLs (moved to travis-ci.com)\",\n        \"user\": {\n          \"login\": \"foolip\",\n          \"id\": 498917,\n          \"node_id\": \"MDQ6VXNlcjQ5ODkxNw==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/498917?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/foolip\",\n          \"html_url\": \"https://github.com/foolip\",\n          \"followers_url\": \"https://api.github.com/users/foolip/followers\",\n          \"following_url\": \"https://api.github.com/users/foolip/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/foolip/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/foolip/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/foolip/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/foolip/orgs\",\n          \"repos_url\": \"https://api.github.com/users/foolip/repos\",\n          \"events_url\": \"https://api.github.com/users/foolip/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/foolip/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 0,\n        \"created_at\": \"2020-09-05T09:39:00Z\",\n        \"updated_at\": \"2020-09-11T16:12:57Z\",\n        \"closed_at\": null,\n        \"author_association\": \"MEMBER\",\n        \"active_lock_reason\": null,\n        \"pull_request\": {\n          \"url\": \"https://api.github.com/repos/w3c/webref/pulls/58\",\n          \"html_url\": \"https://github.com/w3c/webref/pull/58\",\n          \"diff_url\": \"https://github.com/w3c/webref/pull/58.diff\",\n          \"patch_url\": \"https://github.com/w3c/webref/pull/58.patch\"\n        },\n        \"body\": \"\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/webref/issues/comments/691186074\",\n        \"html_url\": \"https://github.com/w3c/webref/pull/58#issuecomment-691186074\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/webref/issues/58\",\n        \"id\": 691186074,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4NjA3NA==\",\n        \"user\": {\n          \"login\": \"tidoust\",\n          \"id\": 1122927,\n          \"node_id\": \"MDQ6VXNlcjExMjI5Mjc=\",\n          \"avatar_url\": \"https://avatars2.githubusercontent.com/u/1122927?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/tidoust\",\n          \"html_url\": \"https://github.com/tidoust\",\n          \"followers_url\": \"https://api.github.com/users/tidoust/followers\",\n          \"following_url\": \"https://api.github.com/users/tidoust/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/tidoust/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/tidoust/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/tidoust/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/tidoust/orgs\",\n          \"repos_url\": \"https://api.github.com/users/tidoust/repos\",\n          \"events_url\": \"https://api.github.com/users/tidoust/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/tidoust/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:12:57Z\",\n        \"updated_at\": \"2020-09-11T16:12:57Z\",\n        \"author_association\": \"COLLABORATOR\",\n        \"body\": \"Isn't `travis-ci.org` the right domain name to use to reference builds?\\r\\n\\r\\nIf I look at a [recent PR](https://github.com/web-platform-tests/wpt/pull/25485):\\r\\n- https://travis-ci.org/w3c/webref/builds/726263770 correctly takes me to the build page\\r\\n- https://travis-ci.com/w3c/webref/builds/726263770 takes me to a \\\"Oops, we couldn't find that build\\\" page.\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:12:58Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491241477\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 63692741,\n      \"login\": \"dshioham\",\n      \"display_login\": \"dshioham\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/dshioham\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/63692741?\"\n    },\n    \"repo\": {\n      \"id\": 287184581,\n      \"name\": \"w3c/epub-wg\",\n      \"url\": \"https://api.github.com/repos/w3c/epub-wg\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/epub-wg/issues/8\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/epub-wg\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/epub-wg/issues/8/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/epub-wg/issues/8/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/epub-wg/issues/8/events\",\n        \"html_url\": \"https://github.com/w3c/epub-wg/issues/8\",\n        \"id\": 697027576,\n        \"node_id\": \"MDU6SXNzdWU2OTcwMjc1NzY=\",\n        \"number\": 8,\n        \"title\": \"Version of the new EPUB Revision\",\n        \"user\": {\n          \"login\": \"wareid\",\n          \"id\": 8049065,\n          \"node_id\": \"MDQ6VXNlcjgwNDkwNjU=\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/8049065?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/wareid\",\n          \"html_url\": \"https://github.com/wareid\",\n          \"followers_url\": \"https://api.github.com/users/wareid/followers\",\n          \"following_url\": \"https://api.github.com/users/wareid/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/wareid/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/wareid/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/wareid/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/wareid/orgs\",\n          \"repos_url\": \"https://api.github.com/users/wareid/repos\",\n          \"events_url\": \"https://api.github.com/users/wareid/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/wareid/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 2339077317,\n            \"node_id\": \"MDU6TGFiZWwyMzM5MDc3MzE3\",\n            \"url\": \"https://api.github.com/repos/w3c/epub-wg/labels/Agenda\",\n            \"name\": \"Agenda\",\n            \"color\": \"4075ef\",\n            \"default\": false,\n            \"description\": \"For the WG Meeting Agenda\"\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 9,\n        \"created_at\": \"2020-09-09T17:55:26Z\",\n        \"updated_at\": \"2020-09-11T16:12:51Z\",\n        \"closed_at\": null,\n        \"author_association\": \"CONTRIBUTOR\",\n        \"active_lock_reason\": null,\n        \"body\": \"The current version of EPUB is 3.2. \\r\\n\\r\\nFor this upcoming work, we will need a new version number, we've been calling the work EPUB 3.x so far. \",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/epub-wg/issues/comments/691186010\",\n        \"html_url\": \"https://github.com/w3c/epub-wg/issues/8#issuecomment-691186010\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/epub-wg/issues/8\",\n        \"id\": 691186010,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4NjAxMA==\",\n        \"user\": {\n          \"login\": \"dshioham\",\n          \"id\": 63692741,\n          \"node_id\": \"MDQ6VXNlcjYzNjkyNzQx\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/63692741?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/dshioham\",\n          \"html_url\": \"https://github.com/dshioham\",\n          \"followers_url\": \"https://api.github.com/users/dshioham/followers\",\n          \"following_url\": \"https://api.github.com/users/dshioham/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/dshioham/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/dshioham/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/dshioham/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/dshioham/orgs\",\n          \"repos_url\": \"https://api.github.com/users/dshioham/repos\",\n          \"events_url\": \"https://api.github.com/users/dshioham/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/dshioham/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:12:51Z\",\n        \"updated_at\": \"2020-09-11T16:12:51Z\",\n        \"author_association\": \"NONE\",\n        \"body\": \"+1 on 3.3\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:12:51Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491225308\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 7477678,\n      \"login\": \"Loirooriol\",\n      \"display_login\": \"Loirooriol\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/Loirooriol\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/7477678?\"\n    },\n    \"repo\": {\n      \"id\": 9252268,\n      \"name\": \"w3c/csswg-drafts\",\n      \"url\": \"https://api.github.com/repos/w3c/csswg-drafts\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5265\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/csswg-drafts\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5265/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5265/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5265/events\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/5265\",\n        \"id\": 645859351,\n        \"node_id\": \"MDU6SXNzdWU2NDU4NTkzNTE=\",\n        \"number\": 5265,\n        \"title\": \"[css-pseudo][css-lists] Allow counter-* in ::marker\",\n        \"user\": {\n          \"login\": \"Loirooriol\",\n          \"id\": 7477678,\n          \"node_id\": \"MDQ6VXNlcjc0Nzc2Nzg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7477678?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Loirooriol\",\n          \"html_url\": \"https://github.com/Loirooriol\",\n          \"followers_url\": \"https://api.github.com/users/Loirooriol/followers\",\n          \"following_url\": \"https://api.github.com/users/Loirooriol/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Loirooriol/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Loirooriol/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Loirooriol/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Loirooriol/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Loirooriol/repos\",\n          \"events_url\": \"https://api.github.com/users/Loirooriol/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Loirooriol/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 381889417,\n            \"node_id\": \"MDU6TGFiZWwzODE4ODk0MTc=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-lists-3\",\n            \"name\": \"css-lists-3\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 381890920,\n            \"node_id\": \"MDU6TGFiZWwzODE4OTA5MjA=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-pseudo-4\",\n            \"name\": \"css-pseudo-4\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 3,\n        \"created_at\": \"2020-06-25T21:22:46Z\",\n        \"updated_at\": \"2020-09-11T16:11:29Z\",\n        \"closed_at\": null,\n        \"author_association\": \"COLLABORATOR\",\n        \"active_lock_reason\": null,\n        \"body\": \"The ::marker pseudo-element can use\\r\\n\\r\\n```css\\r\\n::marker {\\r\\n  content: counter(my-counter);\\r\\n}\\r\\n```\\r\\n\\r\\nHowever, something like `counter-increment: my-counter` won't work since `counter-increment` doesn't apply to ::marker. Gotcha, it has to be set in the list item instead.\\r\\n\\r\\nSo I think [`counter-increment`](https://drafts.csswg.org/css-lists/#propdef-counter-increment), [`counter-set`](https://drafts.csswg.org/css-lists/#propdef-counter-set) and [`counter-reset`](https://drafts.csswg.org/css-lists/#counter-reset) should just apply. Counters don't affect layout so there doesn't seem to be any problem.\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/comments/691185317\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/5265#issuecomment-691185317\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5265\",\n        \"id\": 691185317,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4NTMxNw==\",\n        \"user\": {\n          \"login\": \"Loirooriol\",\n          \"id\": 7477678,\n          \"node_id\": \"MDQ6VXNlcjc0Nzc2Nzg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7477678?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Loirooriol\",\n          \"html_url\": \"https://github.com/Loirooriol\",\n          \"followers_url\": \"https://api.github.com/users/Loirooriol/followers\",\n          \"following_url\": \"https://api.github.com/users/Loirooriol/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Loirooriol/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Loirooriol/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Loirooriol/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Loirooriol/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Loirooriol/repos\",\n          \"events_url\": \"https://api.github.com/users/Loirooriol/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Loirooriol/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:11:29Z\",\n        \"updated_at\": \"2020-09-11T16:11:29Z\",\n        \"author_association\": \"COLLABORATOR\",\n        \"body\": \"@fantasai I don't know, when using counters in ::before, it's not uncommon for me to increment them in ::before too, this avoids needing an extra rule. So it just seems a bit unexpected to me that I can't do the same for ::marker.\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:11:30Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491206351\",\n    \"type\": \"PushEvent\",\n    \"actor\": {\n      \"id\": 1497,\n      \"login\": \"mikewest\",\n      \"display_login\": \"mikewest\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/mikewest\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/1497?\"\n    },\n    \"repo\": {\n      \"id\": 15536087,\n      \"name\": \"w3c/webappsec\",\n      \"url\": \"https://api.github.com/repos/w3c/webappsec\"\n    },\n    \"payload\": {\n      \"push_id\": 5674739884,\n      \"size\": 1,\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"head\": \"bfb2e1b458307afefe11963d2a2eb6e4e65deea1\",\n      \"before\": \"cc0a5e23c4c7e2ac8f16d6b5ceeddb9de379b004\",\n      \"commits\": [\n        {\n          \"sha\": \"bfb2e1b458307afefe11963d2a2eb6e4e65deea1\",\n          \"author\": {\n            \"email\": \"mkwst@google.com\",\n            \"name\": \"Mike West\"\n          },\n          \"message\": \"Create 2020-09-15-agenda.md\",\n          \"distinct\": true,\n          \"url\": \"https://api.github.com/repos/w3c/webappsec/commits/bfb2e1b458307afefe11963d2a2eb6e4e65deea1\"\n        }\n      ]\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:09:52Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491152043\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 2233088,\n      \"login\": \"eehakkin\",\n      \"display_login\": \"eehakkin\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/eehakkin\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/2233088?\"\n    },\n    \"repo\": {\n      \"id\": 23146519,\n      \"name\": \"w3c/mediacapture-main\",\n      \"url\": \"https://api.github.com/repos/w3c/mediacapture-main\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/722\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/mediacapture-main\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/722/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/722/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/722/events\",\n        \"html_url\": \"https://github.com/w3c/mediacapture-main/pull/722\",\n        \"id\": 697199639,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDgzMTcyMDQ3\",\n        \"number\": 722,\n        \"title\": \"Define the fitness distance for all required constrains.\",\n        \"user\": {\n          \"login\": \"eehakkin\",\n          \"id\": 2233088,\n          \"node_id\": \"MDQ6VXNlcjIyMzMwODg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/2233088?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/eehakkin\",\n          \"html_url\": \"https://github.com/eehakkin\",\n          \"followers_url\": \"https://api.github.com/users/eehakkin/followers\",\n          \"following_url\": \"https://api.github.com/users/eehakkin/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/eehakkin/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/eehakkin/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/eehakkin/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/eehakkin/orgs\",\n          \"repos_url\": \"https://api.github.com/users/eehakkin/repos\",\n          \"events_url\": \"https://api.github.com/users/eehakkin/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/eehakkin/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 6,\n        \"created_at\": \"2020-09-09T22:22:35Z\",\n        \"updated_at\": \"2020-09-11T16:05:15Z\",\n        \"closed_at\": null,\n        \"author_association\": \"NONE\",\n        \"active_lock_reason\": null,\n        \"pull_request\": {\n          \"url\": \"https://api.github.com/repos/w3c/mediacapture-main/pulls/722\",\n          \"html_url\": \"https://github.com/w3c/mediacapture-main/pull/722\",\n          \"diff_url\": \"https://github.com/w3c/mediacapture-main/pull/722.diff\",\n          \"patch_url\": \"https://github.com/w3c/mediacapture-main/pull/722.patch\"\n        },\n        \"body\": \"This CL defines the fitness distance also for required constrains whose\\r\\nvalue contains a member named 'ideal' in addition to members named\\r\\n'exact', 'max' and/or 'min'.\\r\\n\\r\\nLets take a **width** constraint `{ideal: 1920, min: 320}` as an example and lets assume that the browser supports the constraint and that there are settings dictionaries which satisfy the constraint (so fitness distance algorithm steps 1 and 2 can be ignores).\\r\\nThen,\\r\\n* the step 3 does not apply because the constraint is required (has 'min'),\\r\\n* the step 4 does not apply because the ideal value is specified, and\\r\\n* the steps 5 and 6 do not apply because the constraint is not non-required but required,\\r\\n\\r\\nthus the fitness distance is undefined.\\r\\n\\r\\nClearly, the step 5 should apply and the fitness distance should be positive infinity for settings dictionaries with width less than 320, 0 for settings dictionaries with width of 1920 and  |actual - 1920| / max(|actual|, 1920) for other settings dictionaries.\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/comments/691182174\",\n        \"html_url\": \"https://github.com/w3c/mediacapture-main/pull/722#issuecomment-691182174\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/mediacapture-main/issues/722\",\n        \"id\": 691182174,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4MjE3NA==\",\n        \"user\": {\n          \"login\": \"eehakkin\",\n          \"id\": 2233088,\n          \"node_id\": \"MDQ6VXNlcjIyMzMwODg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/2233088?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/eehakkin\",\n          \"html_url\": \"https://github.com/eehakkin\",\n          \"followers_url\": \"https://api.github.com/users/eehakkin/followers\",\n          \"following_url\": \"https://api.github.com/users/eehakkin/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/eehakkin/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/eehakkin/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/eehakkin/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/eehakkin/orgs\",\n          \"repos_url\": \"https://api.github.com/users/eehakkin/repos\",\n          \"events_url\": \"https://api.github.com/users/eehakkin/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/eehakkin/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:05:15Z\",\n        \"updated_at\": \"2020-09-11T16:05:15Z\",\n        \"author_association\": \"NONE\",\n        \"body\": \"> I am pretty sure this is inline with what all implementations are doing but it is worth checking.\\r\\n> Can we write a WPT test checking exactly that something like getUserMedia({ video : { min : 160, ideal : 320 }) actually returns a video track of width 320 (and not 160 or the default 640 that some implementations may use)?\\r\\n\\r\\nDone in https://github.com/web-platform-tests/wpt/pull/25493\\r\\n\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:05:16Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491143897\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 86139,\n      \"login\": \"JanMiksovsky\",\n      \"display_login\": \"JanMiksovsky\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/JanMiksovsky\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/86139?\"\n    },\n    \"repo\": {\n      \"id\": 14291040,\n      \"name\": \"w3c/webcomponents\",\n      \"url\": \"https://api.github.com/repos/w3c/webcomponents\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/webcomponents/issues/872\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/webcomponents\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/webcomponents/issues/872/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/webcomponents/issues/872/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/webcomponents/issues/872/events\",\n        \"html_url\": \"https://github.com/w3c/webcomponents/issues/872\",\n        \"id\": 587370954,\n        \"node_id\": \"MDU6SXNzdWU1ODczNzA5NTQ=\",\n        \"number\": 872,\n        \"title\": \"2020 Virtual F2F for Accessibility and Web Components\",\n        \"user\": {\n          \"login\": \"rniwa\",\n          \"id\": 285965,\n          \"node_id\": \"MDQ6VXNlcjI4NTk2NQ==\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/285965?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/rniwa\",\n          \"html_url\": \"https://github.com/rniwa\",\n          \"followers_url\": \"https://api.github.com/users/rniwa/followers\",\n          \"following_url\": \"https://api.github.com/users/rniwa/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/rniwa/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/rniwa/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/rniwa/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/rniwa/orgs\",\n          \"repos_url\": \"https://api.github.com/users/rniwa/repos\",\n          \"events_url\": \"https://api.github.com/users/rniwa/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/rniwa/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 228779701,\n            \"node_id\": \"MDU6TGFiZWwyMjg3Nzk3MDE=\",\n            \"url\": \"https://api.github.com/repos/w3c/webcomponents/labels/custom-elements\",\n            \"name\": \"custom-elements\",\n            \"color\": \"5319e7\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 217336260,\n            \"node_id\": \"MDU6TGFiZWwyMTczMzYyNjA=\",\n            \"url\": \"https://api.github.com/repos/w3c/webcomponents/labels/shadow-dom\",\n            \"name\": \"shadow-dom\",\n            \"color\": \"207de5\",\n            \"default\": false,\n            \"description\": null\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 28,\n        \"created_at\": \"2020-03-25T01:00:41Z\",\n        \"updated_at\": \"2020-09-11T16:04:34Z\",\n        \"closed_at\": null,\n        \"author_association\": \"CONTRIBUTOR\",\n        \"active_lock_reason\": null,\n        \"body\": \"We had a pretty productive [virtual F2F this week for web components](https://github.com/w3c/webcomponents/issues/855).\\r\\n\\r\\nShould we schedule another virtual conference focused on accessibility topics sometime next month?\\r\\n\\r\\nWe have a few topics for accessibly in web components:\\r\\n - [element reflection](https://github.com/whatwg/html/issues/4925)\\r\\n - [default ARIA role](https://github.com/whatwg/html/pull/4658)\\r\\n - [default tabIndex](https://github.com/w3c/webcomponents/issues/762)\\r\\n\\r\\n**New Agenda**: https://docs.google.com/document/d/1QTcATefkEzUIsmE3xLXb5oDuom4BNCknXiYXpBNhzjQ/edit#\\r\\n\\r\\nVote on [Doodle](https://doodle.com/poll/3udivqy5s554yy8y) to pick the meeting week.\\r\\n**Now vote on [Doodle](https://doodle.com/poll/dkssnvttf5kcrm69) to pick a specific date**.\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/webcomponents/issues/comments/691181828\",\n        \"html_url\": \"https://github.com/w3c/webcomponents/issues/872#issuecomment-691181828\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/webcomponents/issues/872\",\n        \"id\": 691181828,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4MTgyOA==\",\n        \"user\": {\n          \"login\": \"JanMiksovsky\",\n          \"id\": 86139,\n          \"node_id\": \"MDQ6VXNlcjg2MTM5\",\n          \"avatar_url\": \"https://avatars2.githubusercontent.com/u/86139?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/JanMiksovsky\",\n          \"html_url\": \"https://github.com/JanMiksovsky\",\n          \"followers_url\": \"https://api.github.com/users/JanMiksovsky/followers\",\n          \"following_url\": \"https://api.github.com/users/JanMiksovsky/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/JanMiksovsky/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/JanMiksovsky/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/JanMiksovsky/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/JanMiksovsky/orgs\",\n          \"repos_url\": \"https://api.github.com/users/JanMiksovsky/repos\",\n          \"events_url\": \"https://api.github.com/users/JanMiksovsky/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/JanMiksovsky/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:04:34Z\",\n        \"updated_at\": \"2020-09-11T16:04:34Z\",\n        \"author_association\": \"NONE\",\n        \"body\": \"Since Google Meet seemed to generally work well last time, I've created a Google Meet link we can use for the call: https://meet.google.com/nnd-eqbe-fyr.\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:04:34Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491116365\",\n    \"type\": \"WatchEvent\",\n    \"actor\": {\n      \"id\": 24941920,\n      \"login\": \"xerxes3117\",\n      \"display_login\": \"xerxes3117\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/xerxes3117\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/24941920?\"\n    },\n    \"repo\": {\n      \"id\": 9252268,\n      \"name\": \"w3c/csswg-drafts\",\n      \"url\": \"https://api.github.com/repos/w3c/csswg-drafts\"\n    },\n    \"payload\": {\n      \"action\": \"started\"\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:02:17Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491112396\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 7477678,\n      \"login\": \"Loirooriol\",\n      \"display_login\": \"Loirooriol\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/Loirooriol\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/7477678?\"\n    },\n    \"repo\": {\n      \"id\": 9252268,\n      \"name\": \"w3c/csswg-drafts\",\n      \"url\": \"https://api.github.com/repos/w3c/csswg-drafts\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/1097\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/csswg-drafts\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/1097/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/1097/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/1097/events\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/1097\",\n        \"id\": 213627203,\n        \"node_id\": \"MDU6SXNzdWUyMTM2MjcyMDM=\",\n        \"number\": 1097,\n        \"title\": \"[css-cascade][css-pseudo] How does 'inherit' keyword behave in a child of ::first-line?\",\n        \"user\": {\n          \"login\": \"Loirooriol\",\n          \"id\": 7477678,\n          \"node_id\": \"MDQ6VXNlcjc0Nzc2Nzg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7477678?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Loirooriol\",\n          \"html_url\": \"https://github.com/Loirooriol\",\n          \"followers_url\": \"https://api.github.com/users/Loirooriol/followers\",\n          \"following_url\": \"https://api.github.com/users/Loirooriol/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Loirooriol/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Loirooriol/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Loirooriol/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Loirooriol/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Loirooriol/repos\",\n          \"events_url\": \"https://api.github.com/users/Loirooriol/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Loirooriol/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 395785969,\n            \"node_id\": \"MDU6TGFiZWwzOTU3ODU5Njk=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/Closed%20Accepted%20by%20CSSWG%20Resolution\",\n            \"name\": \"Closed Accepted by CSSWG Resolution\",\n            \"color\": \"0e8a16\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 395791224,\n            \"node_id\": \"MDU6TGFiZWwzOTU3OTEyMjQ=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/Commenter%20Response%20Pending\",\n            \"name\": \"Commenter Response Pending\",\n            \"color\": \"fbca04\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 665433501,\n            \"node_id\": \"MDU6TGFiZWw2NjU0MzM1MDE=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/Needs%20Testcase%20(WPT)\",\n            \"name\": \"Needs Testcase (WPT)\",\n            \"color\": \"5319e7\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 381890920,\n            \"node_id\": \"MDU6TGFiZWwzODE4OTA5MjA=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-pseudo-4\",\n            \"name\": \"css-pseudo-4\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 381892279,\n            \"node_id\": \"MDU6TGFiZWwzODE4OTIyNzk=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-variables-1\",\n            \"name\": \"css-variables-1\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 33,\n        \"created_at\": \"2017-03-12T19:26:08Z\",\n        \"updated_at\": \"2020-09-11T16:01:57Z\",\n        \"closed_at\": null,\n        \"author_association\": \"COLLABORATOR\",\n        \"active_lock_reason\": null,\n        \"body\": \"# TL;DR - [see proposal](https://github.com/w3c/csswg-drafts/issues/1097#issuecomment-300553985)\\r\\n\\r\\n---\\r\\n\\r\\n[CSS Cascade](https://drafts.csswg.org/css-cascade-4/#inheriting) says\\r\\n\\r\\n> The inherited value of a property on an element is the computed value of the property on the element’s parent element. [...]\\r\\n> Note: Inheritance follows the document tree and is not intercepted by anonymous boxes\\r\\n\\r\\nIt says \\\"parent element\\\" and \\\"document tree\\\", but both [CSS Selectors](https://drafts.csswg.org/selectors-3/#first-formatted-line) and [CSS Pseudo-elements](https://drafts.csswg.org/css-pseudo-4/#first-line-inheritance) seem to override this for `::first-line`:\\r\\n\\r\\n> During CSS inheritance, the portion of a child element that occurs on the first line only inherits properties applicable to the ::first-line pseudo-element from the ::first-line pseudo-element. For all other properties inheritance is from the non-pseudo-element parent of the first line pseudo element.\\r\\n\\r\\nHowever, browsers do strange things (https://jsfiddle.net/0geoep6t/)\\r\\n\\r\\n```html\\r\\n\\r\\n<div>\\r\\n  <span>ABCDEFGHIJKLMNOPQRSTUVWXYZ</span>\\r\\n</div>\\r\\n\\r\\n```\\r\\n```css\\r\\n\\r\\ndiv {\\r\\n  color: blue;\\r\\n  background: yellow;\\r\\n  border: 10px solid blue;\\r\\n}\\r\\ndiv::first-line {\\r\\n  color: red;             /* Applies and is inherited by default */\\r\\n  background: cyan;       /* Applies and is not inherited by default */\\r\\n  border: 10px solid red; /* Does not apply to ::first-line */\\r\\n}\\r\\nspan {\\r\\n  color: inherit;         /* Firefox, Edge and Chrome inherit from ::first-line */\\r\\n  background: inherit;    /* Firefox and Edge inherit from div, Chrome from ::first-line */\\r\\n  border: inherit;        /* Firefox and Edge inherit from div, Chrome from ::first-line */\\r\\n}\\r\\n\\r\\n```\\r\\n\\r\\nIf I understand correctly, since `background` applies to `::first-line`, `background: inherit` should inherit from the `::first-line`, like Chrome does. And since `border` does not apply to `::first-line`, `border: inherit` should inherit from the `div`, like Firefox and Edge do.\\r\\n\\r\\nAm I right? Consider adding some note to the spec to clarify this.\\r\\n\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/comments/691180387\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/1097#issuecomment-691180387\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/1097\",\n        \"id\": 691180387,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4MDM4Nw==\",\n        \"user\": {\n          \"login\": \"Loirooriol\",\n          \"id\": 7477678,\n          \"node_id\": \"MDQ6VXNlcjc0Nzc2Nzg=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/7477678?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Loirooriol\",\n          \"html_url\": \"https://github.com/Loirooriol\",\n          \"followers_url\": \"https://api.github.com/users/Loirooriol/followers\",\n          \"following_url\": \"https://api.github.com/users/Loirooriol/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Loirooriol/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Loirooriol/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Loirooriol/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Loirooriol/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Loirooriol/repos\",\n          \"events_url\": \"https://api.github.com/users/Loirooriol/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Loirooriol/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:01:57Z\",\n        \"updated_at\": \"2020-09-11T16:01:57Z\",\n        \"author_association\": \"COLLABORATOR\",\n        \"body\": \"Yes, the edit seems according to the resolution and LGTM. What I don't really like is that inheriting from ::first-line means that we have inheritance in the fragment tree, but usually inheritance is in the element tree. So interaction between `display: contents` and `::first-line` is not clear. But that's #1310\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:01:58Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491108976\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 14943186,\n      \"login\": \"llemeurfr\",\n      \"display_login\": \"llemeurfr\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/llemeurfr\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/14943186?\"\n    },\n    \"repo\": {\n      \"id\": 172539253,\n      \"name\": \"w3c/audiobooks\",\n      \"url\": \"https://api.github.com/repos/w3c/audiobooks\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/audiobooks/issues/93\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/audiobooks\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/audiobooks/issues/93/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/audiobooks/issues/93/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/audiobooks/issues/93/events\",\n        \"html_url\": \"https://github.com/w3c/audiobooks/issues/93\",\n        \"id\": 696958792,\n        \"node_id\": \"MDU6SXNzdWU2OTY5NTg3OTI=\",\n        \"number\": 93,\n        \"title\": \"how to determine when a table of contents is necessary?\",\n        \"user\": {\n          \"login\": \"mattgarrish\",\n          \"id\": 1565164,\n          \"node_id\": \"MDQ6VXNlcjE1NjUxNjQ=\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/1565164?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/mattgarrish\",\n          \"html_url\": \"https://github.com/mattgarrish\",\n          \"followers_url\": \"https://api.github.com/users/mattgarrish/followers\",\n          \"following_url\": \"https://api.github.com/users/mattgarrish/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/mattgarrish/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/mattgarrish/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/mattgarrish/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/mattgarrish/orgs\",\n          \"repos_url\": \"https://api.github.com/users/mattgarrish/repos\",\n          \"events_url\": \"https://api.github.com/users/mattgarrish/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/mattgarrish/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 1,\n        \"created_at\": \"2020-09-09T16:25:02Z\",\n        \"updated_at\": \"2020-09-11T16:01:41Z\",\n        \"closed_at\": null,\n        \"author_association\": \"MEMBER\",\n        \"active_lock_reason\": null,\n        \"body\": \"Per https://github.com/w3c/publ-tests/issues/55, the manifest processing algorithm doesn't seem to match the TOC requirements.\\r\\n\\r\\nBut I'm not even sure how we can fix this, as how can a machine detect the presence of a \\\"supplementary resource\\\" when they aren't marked? You can't just scan the resource list for non-audio content, as there's no way to infer intent (i.e., is the resource meaningful to the content or is it just some extra bit added to the PEP). It also can't be determined if text of the PEP contains supplementary content or not.\\r\\n\\r\\nSo should we just remove the rule and not try to determine if/when a TOC should be present? Leave it for real-world implementations to determine when and how they want to enforce this?\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/audiobooks/issues/comments/691180236\",\n        \"html_url\": \"https://github.com/w3c/audiobooks/issues/93#issuecomment-691180236\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/audiobooks/issues/93\",\n        \"id\": 691180236,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE4MDIzNg==\",\n        \"user\": {\n          \"login\": \"llemeurfr\",\n          \"id\": 14943186,\n          \"node_id\": \"MDQ6VXNlcjE0OTQzMTg2\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/14943186?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/llemeurfr\",\n          \"html_url\": \"https://github.com/llemeurfr\",\n          \"followers_url\": \"https://api.github.com/users/llemeurfr/followers\",\n          \"following_url\": \"https://api.github.com/users/llemeurfr/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/llemeurfr/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/llemeurfr/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/llemeurfr/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/llemeurfr/orgs\",\n          \"repos_url\": \"https://api.github.com/users/llemeurfr/repos\",\n          \"events_url\": \"https://api.github.com/users/llemeurfr/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/llemeurfr/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:01:41Z\",\n        \"updated_at\": \"2020-09-11T16:01:41Z\",\n        \"author_association\": \"CONTRIBUTOR\",\n        \"body\": \"The spec only states that there SHOULD be a TOC **if** supplemental content is present. \\r\\nBut reading the [manifest processing](https://w3c.github.io/audiobooks/#audio-manifest-processing), step 1 is clear: the TOC is mandatory (if toc is not true, validation error). Therefore step1 item 3 has to be removed I think. Setting the `toc` variable is still useful.\\r\\nNote: I didn't find in this manifest processing any mention of supplemental content. \\r\\n\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:01:41Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491106574\",\n    \"type\": \"PullRequestReviewCommentEvent\",\n    \"actor\": {\n      \"id\": 294864,\n      \"login\": \"jgraham\",\n      \"display_login\": \"jgraham\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/jgraham\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/294864?\"\n    },\n    \"repo\": {\n      \"id\": 266819102,\n      \"name\": \"w3c/webdriver-bidi\",\n      \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments/487141408\",\n        \"pull_request_review_id\": 486933318,\n        \"id\": 487141408,\n        \"node_id\": \"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDQ4NzE0MTQwOA==\",\n        \"diff_hunk\": \"@@ -258,6 +262,67 @@ occurred on the [=remote end=].\\n     - <code>params</code> which defines a mapping containing event data. The\\n       populated value of this map is the <dfn export for=command>event\\n       parameters</code>.\\n+ - A set of [=remote end steps=] which define how to construct the [=event\\n+   type=] data.\\n+ - An <dfn export for=event>event trigger</dfn> which is a condition on which\",\n        \"path\": \"index.bs\",\n        \"position\": 225,\n        \"original_position\": 26,\n        \"commit_id\": \"92ff0f08240d281f7c208f62be07e166e131028d\",\n        \"original_commit_id\": \"92ff0f08240d281f7c208f62be07e166e131028d\",\n        \"user\": {\n          \"login\": \"jgraham\",\n          \"id\": 294864,\n          \"node_id\": \"MDQ6VXNlcjI5NDg2NA==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/294864?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/jgraham\",\n          \"html_url\": \"https://github.com/jgraham\",\n          \"followers_url\": \"https://api.github.com/users/jgraham/followers\",\n          \"following_url\": \"https://api.github.com/users/jgraham/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/jgraham/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/jgraham/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/jgraham/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/jgraham/orgs\",\n          \"repos_url\": \"https://api.github.com/users/jgraham/repos\",\n          \"events_url\": \"https://api.github.com/users/jgraham/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/jgraham/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": \"Well I don't see how we can make it procedural unless we actually patch every other spec to have hooks that call into WebDriver (aiui that's basically what happens with CDP). For example we want to fire an event when a page is loaded. So we need somewhere to write \\\"when an event named 'load' is fired at a global object\\\". \",\n        \"created_at\": \"2020-09-11T16:01:30Z\",\n        \"updated_at\": \"2020-09-11T16:01:30Z\",\n        \"html_url\": \"https://github.com/w3c/webdriver-bidi/pull/51#discussion_r487141408\",\n        \"pull_request_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\",\n        \"author_association\": \"MEMBER\",\n        \"_links\": {\n          \"self\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments/487141408\"\n          },\n          \"html\": {\n            \"href\": \"https://github.com/w3c/webdriver-bidi/pull/51#discussion_r487141408\"\n          },\n          \"pull_request\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\"\n          }\n        },\n        \"start_line\": null,\n        \"original_start_line\": null,\n        \"start_side\": null,\n        \"line\": 267,\n        \"original_line\": 267,\n        \"side\": \"RIGHT\",\n        \"in_reply_to_id\": 487034099\n      },\n      \"pull_request\": {\n        \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\",\n        \"id\": 477895159,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDc3ODk1MTU5\",\n        \"html_url\": \"https://github.com/w3c/webdriver-bidi/pull/51\",\n        \"diff_url\": \"https://github.com/w3c/webdriver-bidi/pull/51.diff\",\n        \"patch_url\": \"https://github.com/w3c/webdriver-bidi/pull/51.patch\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51\",\n        \"number\": 51,\n        \"state\": \"open\",\n        \"locked\": false,\n        \"title\": \"Add initial support for subscribing to events.\",\n        \"user\": {\n          \"login\": \"jgraham\",\n          \"id\": 294864,\n          \"node_id\": \"MDQ6VXNlcjI5NDg2NA==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/294864?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/jgraham\",\n          \"html_url\": \"https://github.com/jgraham\",\n          \"followers_url\": \"https://api.github.com/users/jgraham/followers\",\n          \"following_url\": \"https://api.github.com/users/jgraham/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/jgraham/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/jgraham/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/jgraham/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/jgraham/orgs\",\n          \"repos_url\": \"https://api.github.com/users/jgraham/repos\",\n          \"events_url\": \"https://api.github.com/users/jgraham/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/jgraham/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": \"This adds session.subscribe and session.unsubscribe commands to\\nsubscribe to specified events for given browsing contexts (realms are\\nnot yet supported).\\n\\nThe current semantics are that if you subscribe to events for a\\nspecified browsing context you also get all events from descendent\\nbrowsing contexts unless you specifically unsubscribe in those scopes.\\n\\nThis only allows a single list of events/contexts per message; the use\\ncases for allowing multiple lists per message with different events in\\ndfferent browsing contexts seems less clear and should probably be\\nsolved with a general batching mecahnism.\\n\\n\\n<!--\\n    This comment and the below content is programatically generated.\\n    You may add a comma-separated list of anchors you'd like a\\n    direct link to below (e.g. #idl-serializers, #idl-sequence):\\n\\n    Don't remove this comment or modify anything below this line.\\n    If you don't want a preview generated for this pull request,\\n    just replace the whole of this comment's content by \\\"no preview\\\"\\n    and remove what's below.\\n-->\\n***\\n<a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/webdriver-bidi/pull/51.html\\\" title=\\\"Last updated on Sep 11, 2020, 1:04 PM UTC (92ff0f0)\\\">Preview</a> | <a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/webdriver-bidi/51/0185f45...92ff0f0.html\\\" title=\\\"Last updated on Sep 11, 2020, 1:04 PM UTC (92ff0f0)\\\">Diff</a>\",\n        \"created_at\": \"2020-09-02T15:19:45Z\",\n        \"updated_at\": \"2020-09-11T16:01:30Z\",\n        \"closed_at\": null,\n        \"merged_at\": null,\n        \"merge_commit_sha\": \"70e41a22e8f064e5440ee359d6235863f2e97c3e\",\n        \"assignee\": null,\n        \"assignees\": [],\n        \"requested_reviewers\": [],\n        \"requested_teams\": [],\n        \"labels\": [],\n        \"milestone\": null,\n        \"draft\": false,\n        \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/commits\",\n        \"review_comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/comments\",\n        \"review_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments{/number}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51/comments\",\n        \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/92ff0f08240d281f7c208f62be07e166e131028d\",\n        \"head\": {\n          \"label\": \"w3c:subscribe\",\n          \"ref\": \"subscribe\",\n          \"sha\": \"92ff0f08240d281f7c208f62be07e166e131028d\",\n          \"user\": {\n            \"login\": \"w3c\",\n            \"id\": 379216,\n            \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n            \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/w3c\",\n            \"html_url\": \"https://github.com/w3c\",\n            \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n            \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n            \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n            \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n            \"type\": \"Organization\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 266819102,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyNjY4MTkxMDI=\",\n            \"name\": \"webdriver-bidi\",\n            \"full_name\": \"w3c/webdriver-bidi\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"w3c\",\n              \"id\": 379216,\n              \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n              \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/w3c\",\n              \"html_url\": \"https://github.com/w3c\",\n              \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n              \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n              \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n              \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n              \"type\": \"Organization\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"description\": \"Bidirectional WebDriver protocol for browser automation\",\n            \"fork\": false,\n            \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\",\n            \"forks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/forks\",\n            \"keys_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/events\",\n            \"assignees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/merges\",\n            \"archive_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/deployments\",\n            \"created_at\": \"2020-05-25T15:48:31Z\",\n            \"updated_at\": \"2020-09-11T13:32:06Z\",\n            \"pushed_at\": \"2020-09-11T15:35:19Z\",\n            \"git_url\": \"git://github.com/w3c/webdriver-bidi.git\",\n            \"ssh_url\": \"git@github.com:w3c/webdriver-bidi.git\",\n            \"clone_url\": \"https://github.com/w3c/webdriver-bidi.git\",\n            \"svn_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"homepage\": \"https://w3c.github.io/webdriver-bidi/\",\n            \"size\": 164,\n            \"stargazers_count\": 15,\n            \"watchers_count\": 15,\n            \"language\": \"HTML\",\n            \"has_issues\": true,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": true,\n            \"forks_count\": 3,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 18,\n            \"license\": null,\n            \"forks\": 3,\n            \"open_issues\": 18,\n            \"watchers\": 15,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"base\": {\n          \"label\": \"w3c:cddl_refactor\",\n          \"ref\": \"cddl_refactor\",\n          \"sha\": \"199dd089895d5851a3118ff4bfd530a29500c10a\",\n          \"user\": {\n            \"login\": \"w3c\",\n            \"id\": 379216,\n            \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n            \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/w3c\",\n            \"html_url\": \"https://github.com/w3c\",\n            \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n            \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n            \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n            \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n            \"type\": \"Organization\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 266819102,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyNjY4MTkxMDI=\",\n            \"name\": \"webdriver-bidi\",\n            \"full_name\": \"w3c/webdriver-bidi\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"w3c\",\n              \"id\": 379216,\n              \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n              \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/w3c\",\n              \"html_url\": \"https://github.com/w3c\",\n              \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n              \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n              \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n              \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n              \"type\": \"Organization\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"description\": \"Bidirectional WebDriver protocol for browser automation\",\n            \"fork\": false,\n            \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\",\n            \"forks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/forks\",\n            \"keys_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/events\",\n            \"assignees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/merges\",\n            \"archive_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/deployments\",\n            \"created_at\": \"2020-05-25T15:48:31Z\",\n            \"updated_at\": \"2020-09-11T13:32:06Z\",\n            \"pushed_at\": \"2020-09-11T15:35:19Z\",\n            \"git_url\": \"git://github.com/w3c/webdriver-bidi.git\",\n            \"ssh_url\": \"git@github.com:w3c/webdriver-bidi.git\",\n            \"clone_url\": \"https://github.com/w3c/webdriver-bidi.git\",\n            \"svn_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"homepage\": \"https://w3c.github.io/webdriver-bidi/\",\n            \"size\": 164,\n            \"stargazers_count\": 15,\n            \"watchers_count\": 15,\n            \"language\": \"HTML\",\n            \"has_issues\": true,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": true,\n            \"forks_count\": 3,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 18,\n            \"license\": null,\n            \"forks\": 3,\n            \"open_issues\": 18,\n            \"watchers\": 15,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"_links\": {\n          \"self\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\"\n          },\n          \"html\": {\n            \"href\": \"https://github.com/w3c/webdriver-bidi/pull/51\"\n          },\n          \"issue\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51\"\n          },\n          \"comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51/comments\"\n          },\n          \"review_comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/comments\"\n          },\n          \"review_comment\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments{/number}\"\n          },\n          \"commits\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/commits\"\n          },\n          \"statuses\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/92ff0f08240d281f7c208f62be07e166e131028d\"\n          }\n        },\n        \"author_association\": \"MEMBER\",\n        \"active_lock_reason\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:01:30Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491106529\",\n    \"type\": \"PullRequestReviewEvent\",\n    \"actor\": {\n      \"id\": 294864,\n      \"login\": \"jgraham\",\n      \"display_login\": \"jgraham\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/jgraham\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/294864?\"\n    },\n    \"repo\": {\n      \"id\": 266819102,\n      \"name\": \"w3c/webdriver-bidi\",\n      \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"review\": {\n        \"id\": 486933318,\n        \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NDg2OTMzMzE4\",\n        \"user\": {\n          \"login\": \"jgraham\",\n          \"id\": 294864,\n          \"node_id\": \"MDQ6VXNlcjI5NDg2NA==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/294864?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/jgraham\",\n          \"html_url\": \"https://github.com/jgraham\",\n          \"followers_url\": \"https://api.github.com/users/jgraham/followers\",\n          \"following_url\": \"https://api.github.com/users/jgraham/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/jgraham/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/jgraham/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/jgraham/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/jgraham/orgs\",\n          \"repos_url\": \"https://api.github.com/users/jgraham/repos\",\n          \"events_url\": \"https://api.github.com/users/jgraham/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/jgraham/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": null,\n        \"commit_id\": \"92ff0f08240d281f7c208f62be07e166e131028d\",\n        \"submitted_at\": \"2020-09-11T16:01:30Z\",\n        \"state\": \"commented\",\n        \"html_url\": \"https://github.com/w3c/webdriver-bidi/pull/51#pullrequestreview-486933318\",\n        \"pull_request_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\",\n        \"author_association\": \"MEMBER\",\n        \"_links\": {\n          \"html\": {\n            \"href\": \"https://github.com/w3c/webdriver-bidi/pull/51#pullrequestreview-486933318\"\n          },\n          \"pull_request\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\"\n          }\n        }\n      },\n      \"pull_request\": {\n        \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\",\n        \"id\": 477895159,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDc3ODk1MTU5\",\n        \"html_url\": \"https://github.com/w3c/webdriver-bidi/pull/51\",\n        \"diff_url\": \"https://github.com/w3c/webdriver-bidi/pull/51.diff\",\n        \"patch_url\": \"https://github.com/w3c/webdriver-bidi/pull/51.patch\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51\",\n        \"number\": 51,\n        \"state\": \"open\",\n        \"locked\": false,\n        \"title\": \"Add initial support for subscribing to events.\",\n        \"user\": {\n          \"login\": \"jgraham\",\n          \"id\": 294864,\n          \"node_id\": \"MDQ6VXNlcjI5NDg2NA==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/294864?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/jgraham\",\n          \"html_url\": \"https://github.com/jgraham\",\n          \"followers_url\": \"https://api.github.com/users/jgraham/followers\",\n          \"following_url\": \"https://api.github.com/users/jgraham/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/jgraham/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/jgraham/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/jgraham/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/jgraham/orgs\",\n          \"repos_url\": \"https://api.github.com/users/jgraham/repos\",\n          \"events_url\": \"https://api.github.com/users/jgraham/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/jgraham/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": \"This adds session.subscribe and session.unsubscribe commands to\\nsubscribe to specified events for given browsing contexts (realms are\\nnot yet supported).\\n\\nThe current semantics are that if you subscribe to events for a\\nspecified browsing context you also get all events from descendent\\nbrowsing contexts unless you specifically unsubscribe in those scopes.\\n\\nThis only allows a single list of events/contexts per message; the use\\ncases for allowing multiple lists per message with different events in\\ndfferent browsing contexts seems less clear and should probably be\\nsolved with a general batching mecahnism.\\n\\n\\n<!--\\n    This comment and the below content is programatically generated.\\n    You may add a comma-separated list of anchors you'd like a\\n    direct link to below (e.g. #idl-serializers, #idl-sequence):\\n\\n    Don't remove this comment or modify anything below this line.\\n    If you don't want a preview generated for this pull request,\\n    just replace the whole of this comment's content by \\\"no preview\\\"\\n    and remove what's below.\\n-->\\n***\\n<a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/webdriver-bidi/pull/51.html\\\" title=\\\"Last updated on Sep 11, 2020, 1:04 PM UTC (92ff0f0)\\\">Preview</a> | <a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/webdriver-bidi/51/0185f45...92ff0f0.html\\\" title=\\\"Last updated on Sep 11, 2020, 1:04 PM UTC (92ff0f0)\\\">Diff</a>\",\n        \"created_at\": \"2020-09-02T15:19:45Z\",\n        \"updated_at\": \"2020-09-11T16:01:30Z\",\n        \"closed_at\": null,\n        \"merged_at\": null,\n        \"merge_commit_sha\": \"70e41a22e8f064e5440ee359d6235863f2e97c3e\",\n        \"assignee\": null,\n        \"assignees\": [],\n        \"requested_reviewers\": [],\n        \"requested_teams\": [],\n        \"labels\": [],\n        \"milestone\": null,\n        \"draft\": false,\n        \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/commits\",\n        \"review_comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/comments\",\n        \"review_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments{/number}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51/comments\",\n        \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/92ff0f08240d281f7c208f62be07e166e131028d\",\n        \"head\": {\n          \"label\": \"w3c:subscribe\",\n          \"ref\": \"subscribe\",\n          \"sha\": \"92ff0f08240d281f7c208f62be07e166e131028d\",\n          \"user\": {\n            \"login\": \"w3c\",\n            \"id\": 379216,\n            \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n            \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/w3c\",\n            \"html_url\": \"https://github.com/w3c\",\n            \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n            \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n            \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n            \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n            \"type\": \"Organization\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 266819102,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyNjY4MTkxMDI=\",\n            \"name\": \"webdriver-bidi\",\n            \"full_name\": \"w3c/webdriver-bidi\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"w3c\",\n              \"id\": 379216,\n              \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n              \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/w3c\",\n              \"html_url\": \"https://github.com/w3c\",\n              \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n              \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n              \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n              \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n              \"type\": \"Organization\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"description\": \"Bidirectional WebDriver protocol for browser automation\",\n            \"fork\": false,\n            \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\",\n            \"forks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/forks\",\n            \"keys_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/events\",\n            \"assignees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/merges\",\n            \"archive_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/deployments\",\n            \"created_at\": \"2020-05-25T15:48:31Z\",\n            \"updated_at\": \"2020-09-11T13:32:06Z\",\n            \"pushed_at\": \"2020-09-11T15:35:19Z\",\n            \"git_url\": \"git://github.com/w3c/webdriver-bidi.git\",\n            \"ssh_url\": \"git@github.com:w3c/webdriver-bidi.git\",\n            \"clone_url\": \"https://github.com/w3c/webdriver-bidi.git\",\n            \"svn_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"homepage\": \"https://w3c.github.io/webdriver-bidi/\",\n            \"size\": 164,\n            \"stargazers_count\": 15,\n            \"watchers_count\": 15,\n            \"language\": \"HTML\",\n            \"has_issues\": true,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": true,\n            \"forks_count\": 3,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 18,\n            \"license\": null,\n            \"forks\": 3,\n            \"open_issues\": 18,\n            \"watchers\": 15,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"base\": {\n          \"label\": \"w3c:cddl_refactor\",\n          \"ref\": \"cddl_refactor\",\n          \"sha\": \"199dd089895d5851a3118ff4bfd530a29500c10a\",\n          \"user\": {\n            \"login\": \"w3c\",\n            \"id\": 379216,\n            \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n            \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/w3c\",\n            \"html_url\": \"https://github.com/w3c\",\n            \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n            \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n            \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n            \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n            \"type\": \"Organization\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 266819102,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyNjY4MTkxMDI=\",\n            \"name\": \"webdriver-bidi\",\n            \"full_name\": \"w3c/webdriver-bidi\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"w3c\",\n              \"id\": 379216,\n              \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n              \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/w3c\",\n              \"html_url\": \"https://github.com/w3c\",\n              \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n              \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n              \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n              \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n              \"type\": \"Organization\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"description\": \"Bidirectional WebDriver protocol for browser automation\",\n            \"fork\": false,\n            \"url\": \"https://api.github.com/repos/w3c/webdriver-bidi\",\n            \"forks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/forks\",\n            \"keys_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/events\",\n            \"assignees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/merges\",\n            \"archive_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/w3c/webdriver-bidi/deployments\",\n            \"created_at\": \"2020-05-25T15:48:31Z\",\n            \"updated_at\": \"2020-09-11T13:32:06Z\",\n            \"pushed_at\": \"2020-09-11T15:35:19Z\",\n            \"git_url\": \"git://github.com/w3c/webdriver-bidi.git\",\n            \"ssh_url\": \"git@github.com:w3c/webdriver-bidi.git\",\n            \"clone_url\": \"https://github.com/w3c/webdriver-bidi.git\",\n            \"svn_url\": \"https://github.com/w3c/webdriver-bidi\",\n            \"homepage\": \"https://w3c.github.io/webdriver-bidi/\",\n            \"size\": 164,\n            \"stargazers_count\": 15,\n            \"watchers_count\": 15,\n            \"language\": \"HTML\",\n            \"has_issues\": true,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": true,\n            \"forks_count\": 3,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 18,\n            \"license\": null,\n            \"forks\": 3,\n            \"open_issues\": 18,\n            \"watchers\": 15,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"_links\": {\n          \"self\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51\"\n          },\n          \"html\": {\n            \"href\": \"https://github.com/w3c/webdriver-bidi/pull/51\"\n          },\n          \"issue\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51\"\n          },\n          \"comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/issues/51/comments\"\n          },\n          \"review_comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/comments\"\n          },\n          \"review_comment\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/comments{/number}\"\n          },\n          \"commits\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/pulls/51/commits\"\n          },\n          \"statuses\": {\n            \"href\": \"https://api.github.com/repos/w3c/webdriver-bidi/statuses/92ff0f08240d281f7c208f62be07e166e131028d\"\n          }\n        },\n        \"author_association\": \"MEMBER\",\n        \"active_lock_reason\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:01:30Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491089350\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 12621691,\n      \"login\": \"Harsha509\",\n      \"display_login\": \"Harsha509\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/Harsha509\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/12621691?\"\n    },\n    \"repo\": {\n      \"id\": 25993378,\n      \"name\": \"w3c/webdriver\",\n      \"url\": \"https://api.github.com/repos/w3c/webdriver\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/webdriver/issues/1541\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/webdriver\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/webdriver/issues/1541/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/webdriver/issues/1541/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/webdriver/issues/1541/events\",\n        \"html_url\": \"https://github.com/w3c/webdriver/pull/1541\",\n        \"id\": 688539690,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDc1NzgxNjMz\",\n        \"number\": 1541,\n        \"title\": \"Modify: SameSite now defaults to Lax\",\n        \"user\": {\n          \"login\": \"Harsha509\",\n          \"id\": 12621691,\n          \"node_id\": \"MDQ6VXNlcjEyNjIxNjkx\",\n          \"avatar_url\": \"https://avatars3.githubusercontent.com/u/12621691?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Harsha509\",\n          \"html_url\": \"https://github.com/Harsha509\",\n          \"followers_url\": \"https://api.github.com/users/Harsha509/followers\",\n          \"following_url\": \"https://api.github.com/users/Harsha509/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Harsha509/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Harsha509/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Harsha509/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Harsha509/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Harsha509/repos\",\n          \"events_url\": \"https://api.github.com/users/Harsha509/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Harsha509/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 2,\n        \"created_at\": \"2020-08-29T14:08:18Z\",\n        \"updated_at\": \"2020-09-11T16:00:09Z\",\n        \"closed_at\": null,\n        \"author_association\": \"CONTRIBUTOR\",\n        \"active_lock_reason\": null,\n        \"pull_request\": {\n          \"url\": \"https://api.github.com/repos/w3c/webdriver/pulls/1541\",\n          \"html_url\": \"https://github.com/w3c/webdriver/pull/1541\",\n          \"diff_url\": \"https://github.com/w3c/webdriver/pull/1541.diff\",\n          \"patch_url\": \"https://github.com/w3c/webdriver/pull/1541.patch\"\n        },\n        \"body\": \"## Previous Behaviour\\n\\nSameSite defaults to `None` and it can be set either `Strict` or `Lax`\\n\\n## New Behaviour\\n\\nFrom the data points provided in https://web.dev/samesite-cookies-explained/#samesitenone-must-be-secure and in https://support.google.com/chrome/a/answer/7679408#84, sameSite now deefaults to Lax and also when set to `None`  must also be marked as `Secure`.\\n\\n\\n<!--\\n    This comment and the below content is programatically generated.\\n    You may add a comma-separated list of anchors you'd like a\\n    direct link to below (e.g. #idl-serializers, #idl-sequence):\\n\\n    Don't remove this comment or modify anything below this line.\\n    If you don't want a preview generated for this pull request,\\n    just replace the whole of this comment's content by \\\"no preview\\\"\\n    and remove what's below.\\n-->\\n***\\n<a href=\\\"https://pr-preview.s3.amazonaws.com/Harsha509/webdriver/pull/1541.html\\\" title=\\\"Last updated on Aug 29, 2020, 2:34 PM UTC (43fe4b4)\\\">Preview</a> | <a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/webdriver/1541/f0c7bdf...Harsha509:43fe4b4.html\\\" title=\\\"Last updated on Aug 29, 2020, 2:34 PM UTC (43fe4b4)\\\">Diff</a>\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/webdriver/issues/comments/691179429\",\n        \"html_url\": \"https://github.com/w3c/webdriver/pull/1541#issuecomment-691179429\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/webdriver/issues/1541\",\n        \"id\": 691179429,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE3OTQyOQ==\",\n        \"user\": {\n          \"login\": \"Harsha509\",\n          \"id\": 12621691,\n          \"node_id\": \"MDQ6VXNlcjEyNjIxNjkx\",\n          \"avatar_url\": \"https://avatars3.githubusercontent.com/u/12621691?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/Harsha509\",\n          \"html_url\": \"https://github.com/Harsha509\",\n          \"followers_url\": \"https://api.github.com/users/Harsha509/followers\",\n          \"following_url\": \"https://api.github.com/users/Harsha509/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/Harsha509/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/Harsha509/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/Harsha509/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/Harsha509/orgs\",\n          \"repos_url\": \"https://api.github.com/users/Harsha509/repos\",\n          \"events_url\": \"https://api.github.com/users/Harsha509/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/Harsha509/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T16:00:09Z\",\n        \"updated_at\": \"2020-09-11T16:00:09Z\",\n        \"author_association\": \"CONTRIBUTOR\",\n        \"body\": \"> So what about backward compatibility with older versions of the browser that don't set `Lax` by default? This change in behavior by browsers is fairly new.\\r\\n> \\r\\n> Also once decided the appropriate WebDriver cookie tests from the [web-platform-tests repository](https://github.com/web-platform-tests/wpt/tree/master/webdriver/tests) would have to be updated with that change.\\r\\n\\r\\nAgreed!\\r\\n\\r\\nAny suggestions on how to modify in doc, because the behaviour `sameSite=None` is specific for few versions of browser( as i know it is introduced in chrome 80 - 83 and from 84 it is `Lax`) and we need to have both behaviours to support backward compatibility in WebDriver.\\r\\n\\r\\nAny suggestions from PLC team please !\\r\\n\\r\\n\\r\\n\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T16:00:09Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13491071751\",\n    \"type\": \"PullRequestReviewEvent\",\n    \"actor\": {\n      \"id\": 168137,\n      \"login\": \"dlongley\",\n      \"display_login\": \"dlongley\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/dlongley\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/168137?\"\n    },\n    \"repo\": {\n      \"id\": 239821927,\n      \"name\": \"w3c/did-spec-registries\",\n      \"url\": \"https://api.github.com/repos/w3c/did-spec-registries\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"review\": {\n        \"id\": 486931177,\n        \"node_id\": \"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NDg2OTMxMTc3\",\n        \"user\": {\n          \"login\": \"dlongley\",\n          \"id\": 168137,\n          \"node_id\": \"MDQ6VXNlcjE2ODEzNw==\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/168137?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/dlongley\",\n          \"html_url\": \"https://github.com/dlongley\",\n          \"followers_url\": \"https://api.github.com/users/dlongley/followers\",\n          \"following_url\": \"https://api.github.com/users/dlongley/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/dlongley/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/dlongley/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/dlongley/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/dlongley/orgs\",\n          \"repos_url\": \"https://api.github.com/users/dlongley/repos\",\n          \"events_url\": \"https://api.github.com/users/dlongley/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/dlongley/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": \"\",\n        \"commit_id\": \"5a258338cbefa8d2672a3c556d45359eabfe2edc\",\n        \"submitted_at\": \"2020-09-11T15:58:42Z\",\n        \"state\": \"approved\",\n        \"html_url\": \"https://github.com/w3c/did-spec-registries/pull/127#pullrequestreview-486931177\",\n        \"pull_request_url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127\",\n        \"author_association\": \"NONE\",\n        \"_links\": {\n          \"html\": {\n            \"href\": \"https://github.com/w3c/did-spec-registries/pull/127#pullrequestreview-486931177\"\n          },\n          \"pull_request\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127\"\n          }\n        }\n      },\n      \"pull_request\": {\n        \"url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127\",\n        \"id\": 483860953,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDgzODYwOTUz\",\n        \"html_url\": \"https://github.com/w3c/did-spec-registries/pull/127\",\n        \"diff_url\": \"https://github.com/w3c/did-spec-registries/pull/127.diff\",\n        \"patch_url\": \"https://github.com/w3c/did-spec-registries/pull/127.patch\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/127\",\n        \"number\": 127,\n        \"state\": \"open\",\n        \"locked\": false,\n        \"title\": \"add a new did method, did:key\",\n        \"user\": {\n          \"login\": \"brentzundel\",\n          \"id\": 10376511,\n          \"node_id\": \"MDQ6VXNlcjEwMzc2NTEx\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/10376511?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/brentzundel\",\n          \"html_url\": \"https://github.com/brentzundel\",\n          \"followers_url\": \"https://api.github.com/users/brentzundel/followers\",\n          \"following_url\": \"https://api.github.com/users/brentzundel/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/brentzundel/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/brentzundel/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/brentzundel/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/brentzundel/orgs\",\n          \"repos_url\": \"https://api.github.com/users/brentzundel/repos\",\n          \"events_url\": \"https://api.github.com/users/brentzundel/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/brentzundel/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"body\": \"Signed-off-by: Brent Zundel <brent.zundel@gmail.com>\\n\\n\\n<!--\\n    This comment and the below content is programatically generated.\\n    You may add a comma-separated list of anchors you'd like a\\n    direct link to below (e.g. #idl-serializers, #idl-sequence):\\n\\n    Don't remove this comment or modify anything below this line.\\n    If you don't want a preview generated for this pull request,\\n    just replace the whole of this comment's content by \\\"no preview\\\"\\n    and remove what's below.\\n-->\\n***\\n<a href=\\\"https://pr-preview.s3.amazonaws.com/brentzundel/did-spec-registries/pull/127.html\\\" title=\\\"Last updated on Sep 11, 2020, 3:56 AM UTC (5a25833)\\\">Preview</a> | <a href=\\\"https://pr-preview.s3.amazonaws.com/w3c/did-spec-registries/127/3e28893...brentzundel:5a25833.html\\\" title=\\\"Last updated on Sep 11, 2020, 3:56 AM UTC (5a25833)\\\">Diff</a>\",\n        \"created_at\": \"2020-09-10T13:33:10Z\",\n        \"updated_at\": \"2020-09-11T15:58:42Z\",\n        \"closed_at\": null,\n        \"merged_at\": null,\n        \"merge_commit_sha\": \"4625bded52c81e04b515fa72e3a12e85c03befe1\",\n        \"assignee\": null,\n        \"assignees\": [],\n        \"requested_reviewers\": [],\n        \"requested_teams\": [],\n        \"labels\": [],\n        \"milestone\": null,\n        \"draft\": false,\n        \"commits_url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127/commits\",\n        \"review_comments_url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127/comments\",\n        \"review_comment_url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/comments{/number}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/127/comments\",\n        \"statuses_url\": \"https://api.github.com/repos/w3c/did-spec-registries/statuses/5a258338cbefa8d2672a3c556d45359eabfe2edc\",\n        \"head\": {\n          \"label\": \"brentzundel:key\",\n          \"ref\": \"key\",\n          \"sha\": \"5a258338cbefa8d2672a3c556d45359eabfe2edc\",\n          \"user\": {\n            \"login\": \"brentzundel\",\n            \"id\": 10376511,\n            \"node_id\": \"MDQ6VXNlcjEwMzc2NTEx\",\n            \"avatar_url\": \"https://avatars0.githubusercontent.com/u/10376511?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/brentzundel\",\n            \"html_url\": \"https://github.com/brentzundel\",\n            \"followers_url\": \"https://api.github.com/users/brentzundel/followers\",\n            \"following_url\": \"https://api.github.com/users/brentzundel/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/brentzundel/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/brentzundel/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/brentzundel/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/brentzundel/orgs\",\n            \"repos_url\": \"https://api.github.com/users/brentzundel/repos\",\n            \"events_url\": \"https://api.github.com/users/brentzundel/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/brentzundel/received_events\",\n            \"type\": \"User\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 294219574,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyOTQyMTk1NzQ=\",\n            \"name\": \"did-spec-registries\",\n            \"full_name\": \"brentzundel/did-spec-registries\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"brentzundel\",\n              \"id\": 10376511,\n              \"node_id\": \"MDQ6VXNlcjEwMzc2NTEx\",\n              \"avatar_url\": \"https://avatars0.githubusercontent.com/u/10376511?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/brentzundel\",\n              \"html_url\": \"https://github.com/brentzundel\",\n              \"followers_url\": \"https://api.github.com/users/brentzundel/followers\",\n              \"following_url\": \"https://api.github.com/users/brentzundel/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/brentzundel/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/brentzundel/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/brentzundel/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/brentzundel/orgs\",\n              \"repos_url\": \"https://api.github.com/users/brentzundel/repos\",\n              \"events_url\": \"https://api.github.com/users/brentzundel/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/brentzundel/received_events\",\n              \"type\": \"User\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/brentzundel/did-spec-registries\",\n            \"description\": \"DID Spec Registry (Note)\",\n            \"fork\": true,\n            \"url\": \"https://api.github.com/repos/brentzundel/did-spec-registries\",\n            \"forks_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/forks\",\n            \"keys_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/events\",\n            \"assignees_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/merges\",\n            \"archive_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/brentzundel/did-spec-registries/deployments\",\n            \"created_at\": \"2020-09-09T20:15:44Z\",\n            \"updated_at\": \"2020-09-09T20:15:46Z\",\n            \"pushed_at\": \"2020-09-11T03:55:55Z\",\n            \"git_url\": \"git://github.com/brentzundel/did-spec-registries.git\",\n            \"ssh_url\": \"git@github.com:brentzundel/did-spec-registries.git\",\n            \"clone_url\": \"https://github.com/brentzundel/did-spec-registries.git\",\n            \"svn_url\": \"https://github.com/brentzundel/did-spec-registries\",\n            \"homepage\": \"https://w3c.github.io/did-spec-registries/\",\n            \"size\": 641,\n            \"stargazers_count\": 0,\n            \"watchers_count\": 0,\n            \"language\": null,\n            \"has_issues\": false,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": false,\n            \"forks_count\": 0,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 0,\n            \"license\": {\n              \"key\": \"other\",\n              \"name\": \"Other\",\n              \"spdx_id\": \"NOASSERTION\",\n              \"url\": null,\n              \"node_id\": \"MDc6TGljZW5zZTA=\"\n            },\n            \"forks\": 0,\n            \"open_issues\": 0,\n            \"watchers\": 0,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"base\": {\n          \"label\": \"w3c:master\",\n          \"ref\": \"master\",\n          \"sha\": \"3e2889390c73b0279af3634e190f4929a0ac8730\",\n          \"user\": {\n            \"login\": \"w3c\",\n            \"id\": 379216,\n            \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n            \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/w3c\",\n            \"html_url\": \"https://github.com/w3c\",\n            \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n            \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n            \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n            \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n            \"type\": \"Organization\",\n            \"site_admin\": false\n          },\n          \"repo\": {\n            \"id\": 239821927,\n            \"node_id\": \"MDEwOlJlcG9zaXRvcnkyMzk4MjE5Mjc=\",\n            \"name\": \"did-spec-registries\",\n            \"full_name\": \"w3c/did-spec-registries\",\n            \"private\": false,\n            \"owner\": {\n              \"login\": \"w3c\",\n              \"id\": 379216,\n              \"node_id\": \"MDEyOk9yZ2FuaXphdGlvbjM3OTIxNg==\",\n              \"avatar_url\": \"https://avatars2.githubusercontent.com/u/379216?v=4\",\n              \"gravatar_id\": \"\",\n              \"url\": \"https://api.github.com/users/w3c\",\n              \"html_url\": \"https://github.com/w3c\",\n              \"followers_url\": \"https://api.github.com/users/w3c/followers\",\n              \"following_url\": \"https://api.github.com/users/w3c/following{/other_user}\",\n              \"gists_url\": \"https://api.github.com/users/w3c/gists{/gist_id}\",\n              \"starred_url\": \"https://api.github.com/users/w3c/starred{/owner}{/repo}\",\n              \"subscriptions_url\": \"https://api.github.com/users/w3c/subscriptions\",\n              \"organizations_url\": \"https://api.github.com/users/w3c/orgs\",\n              \"repos_url\": \"https://api.github.com/users/w3c/repos\",\n              \"events_url\": \"https://api.github.com/users/w3c/events{/privacy}\",\n              \"received_events_url\": \"https://api.github.com/users/w3c/received_events\",\n              \"type\": \"Organization\",\n              \"site_admin\": false\n            },\n            \"html_url\": \"https://github.com/w3c/did-spec-registries\",\n            \"description\": \"DID Spec Registry (Note)\",\n            \"fork\": false,\n            \"url\": \"https://api.github.com/repos/w3c/did-spec-registries\",\n            \"forks_url\": \"https://api.github.com/repos/w3c/did-spec-registries/forks\",\n            \"keys_url\": \"https://api.github.com/repos/w3c/did-spec-registries/keys{/key_id}\",\n            \"collaborators_url\": \"https://api.github.com/repos/w3c/did-spec-registries/collaborators{/collaborator}\",\n            \"teams_url\": \"https://api.github.com/repos/w3c/did-spec-registries/teams\",\n            \"hooks_url\": \"https://api.github.com/repos/w3c/did-spec-registries/hooks\",\n            \"issue_events_url\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/events{/number}\",\n            \"events_url\": \"https://api.github.com/repos/w3c/did-spec-registries/events\",\n            \"assignees_url\": \"https://api.github.com/repos/w3c/did-spec-registries/assignees{/user}\",\n            \"branches_url\": \"https://api.github.com/repos/w3c/did-spec-registries/branches{/branch}\",\n            \"tags_url\": \"https://api.github.com/repos/w3c/did-spec-registries/tags\",\n            \"blobs_url\": \"https://api.github.com/repos/w3c/did-spec-registries/git/blobs{/sha}\",\n            \"git_tags_url\": \"https://api.github.com/repos/w3c/did-spec-registries/git/tags{/sha}\",\n            \"git_refs_url\": \"https://api.github.com/repos/w3c/did-spec-registries/git/refs{/sha}\",\n            \"trees_url\": \"https://api.github.com/repos/w3c/did-spec-registries/git/trees{/sha}\",\n            \"statuses_url\": \"https://api.github.com/repos/w3c/did-spec-registries/statuses/{sha}\",\n            \"languages_url\": \"https://api.github.com/repos/w3c/did-spec-registries/languages\",\n            \"stargazers_url\": \"https://api.github.com/repos/w3c/did-spec-registries/stargazers\",\n            \"contributors_url\": \"https://api.github.com/repos/w3c/did-spec-registries/contributors\",\n            \"subscribers_url\": \"https://api.github.com/repos/w3c/did-spec-registries/subscribers\",\n            \"subscription_url\": \"https://api.github.com/repos/w3c/did-spec-registries/subscription\",\n            \"commits_url\": \"https://api.github.com/repos/w3c/did-spec-registries/commits{/sha}\",\n            \"git_commits_url\": \"https://api.github.com/repos/w3c/did-spec-registries/git/commits{/sha}\",\n            \"comments_url\": \"https://api.github.com/repos/w3c/did-spec-registries/comments{/number}\",\n            \"issue_comment_url\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/comments{/number}\",\n            \"contents_url\": \"https://api.github.com/repos/w3c/did-spec-registries/contents/{+path}\",\n            \"compare_url\": \"https://api.github.com/repos/w3c/did-spec-registries/compare/{base}...{head}\",\n            \"merges_url\": \"https://api.github.com/repos/w3c/did-spec-registries/merges\",\n            \"archive_url\": \"https://api.github.com/repos/w3c/did-spec-registries/{archive_format}{/ref}\",\n            \"downloads_url\": \"https://api.github.com/repos/w3c/did-spec-registries/downloads\",\n            \"issues_url\": \"https://api.github.com/repos/w3c/did-spec-registries/issues{/number}\",\n            \"pulls_url\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls{/number}\",\n            \"milestones_url\": \"https://api.github.com/repos/w3c/did-spec-registries/milestones{/number}\",\n            \"notifications_url\": \"https://api.github.com/repos/w3c/did-spec-registries/notifications{?since,all,participating}\",\n            \"labels_url\": \"https://api.github.com/repos/w3c/did-spec-registries/labels{/name}\",\n            \"releases_url\": \"https://api.github.com/repos/w3c/did-spec-registries/releases{/id}\",\n            \"deployments_url\": \"https://api.github.com/repos/w3c/did-spec-registries/deployments\",\n            \"created_at\": \"2020-02-11T17:25:04Z\",\n            \"updated_at\": \"2020-09-03T21:56:53Z\",\n            \"pushed_at\": \"2020-09-11T03:55:56Z\",\n            \"git_url\": \"git://github.com/w3c/did-spec-registries.git\",\n            \"ssh_url\": \"git@github.com:w3c/did-spec-registries.git\",\n            \"clone_url\": \"https://github.com/w3c/did-spec-registries.git\",\n            \"svn_url\": \"https://github.com/w3c/did-spec-registries\",\n            \"homepage\": \"https://w3c.github.io/did-spec-registries/\",\n            \"size\": 611,\n            \"stargazers_count\": 18,\n            \"watchers_count\": 18,\n            \"language\": \"HTML\",\n            \"has_issues\": true,\n            \"has_projects\": true,\n            \"has_downloads\": true,\n            \"has_wiki\": true,\n            \"has_pages\": true,\n            \"forks_count\": 24,\n            \"mirror_url\": null,\n            \"archived\": false,\n            \"disabled\": false,\n            \"open_issues_count\": 38,\n            \"license\": {\n              \"key\": \"other\",\n              \"name\": \"Other\",\n              \"spdx_id\": \"NOASSERTION\",\n              \"url\": null,\n              \"node_id\": \"MDc6TGljZW5zZTA=\"\n            },\n            \"forks\": 24,\n            \"open_issues\": 38,\n            \"watchers\": 18,\n            \"default_branch\": \"master\"\n          }\n        },\n        \"_links\": {\n          \"self\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127\"\n          },\n          \"html\": {\n            \"href\": \"https://github.com/w3c/did-spec-registries/pull/127\"\n          },\n          \"issue\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/127\"\n          },\n          \"comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/issues/127/comments\"\n          },\n          \"review_comments\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127/comments\"\n          },\n          \"review_comment\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/comments{/number}\"\n          },\n          \"commits\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/pulls/127/commits\"\n          },\n          \"statuses\": {\n            \"href\": \"https://api.github.com/repos/w3c/did-spec-registries/statuses/5a258338cbefa8d2672a3c556d45359eabfe2edc\"\n          }\n        },\n        \"author_association\": \"MEMBER\",\n        \"active_lock_reason\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:58:42Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490998144\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 1380751,\n      \"login\": \"astearns\",\n      \"display_login\": \"astearns\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/astearns\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/1380751?\"\n    },\n    \"repo\": {\n      \"id\": 9252268,\n      \"name\": \"w3c/csswg-drafts\",\n      \"url\": \"https://api.github.com/repos/w3c/csswg-drafts\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5385\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/csswg-drafts\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5385/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5385/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5385/events\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/5385\",\n        \"id\": 672297945,\n        \"node_id\": \"MDU6SXNzdWU2NzIyOTc5NDU=\",\n        \"number\": 5385,\n        \"title\": \"[css-display] math/inline-math\",\n        \"user\": {\n          \"login\": \"bkardell\",\n          \"id\": 870501,\n          \"node_id\": \"MDQ6VXNlcjg3MDUwMQ==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/870501?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/bkardell\",\n          \"html_url\": \"https://github.com/bkardell\",\n          \"followers_url\": \"https://api.github.com/users/bkardell/followers\",\n          \"following_url\": \"https://api.github.com/users/bkardell/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/bkardell/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/bkardell/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/bkardell/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/bkardell/orgs\",\n          \"repos_url\": \"https://api.github.com/users/bkardell/repos\",\n          \"events_url\": \"https://api.github.com/users/bkardell/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/bkardell/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 381888849,\n            \"node_id\": \"MDU6TGFiZWwzODE4ODg4NDk=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-display-3\",\n            \"name\": \"css-display-3\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          },\n          {\n            \"id\": 560791753,\n            \"node_id\": \"MDU6TGFiZWw1NjA3OTE3NTM=\",\n            \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/labels/css-display-4\",\n            \"name\": \"css-display-4\",\n            \"color\": \"c5def5\",\n            \"default\": false,\n            \"description\": null\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 5,\n        \"created_at\": \"2020-08-03T19:37:52Z\",\n        \"updated_at\": \"2020-09-11T15:52:34Z\",\n        \"closed_at\": null,\n        \"author_association\": \"NONE\",\n        \"active_lock_reason\": null,\n        \"body\": \"(Part of #5384 - MathML Core related CSS)\\r\\n\\r\\nMathematical rendering, like other text renderings can happen inline with prose or in the block direction and different elements employ different strategies for layout.  According to common norms, these are treated a little differently.  [MathML Core proposes the introduction of two display types](https://mathml-refresh.github.io/mathml-core/#new-display-math-value):\\r\\n  \\r\\n`display: math` and `display: inline-math`\\r\\n\\r\\nThese control box generation and layout according to their tag name, internally.  It shoud be possible for authors to experiment/extend and provide custom layouts for when authors would like to override.  The figure below illustrates differences in standard treatments of mathematical rendering depending on whether it is inline with text, or has a complete space in the block direction, as illustrated in the figure below. \\r\\n\\r\\n![illustration of an equation rendered inline with prose and again as a block](https://bkardell.com/media/mathml-inline-and-block.png)\\r\\n\\r\\nThese can be overridden and extended with custom layouts.  `display: contents` computes to ``none`.\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/comments/691175544\",\n        \"html_url\": \"https://github.com/w3c/csswg-drafts/issues/5385#issuecomment-691175544\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/csswg-drafts/issues/5385\",\n        \"id\": 691175544,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE3NTU0NA==\",\n        \"user\": {\n          \"login\": \"astearns\",\n          \"id\": 1380751,\n          \"node_id\": \"MDQ6VXNlcjEzODA3NTE=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/1380751?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/astearns\",\n          \"html_url\": \"https://github.com/astearns\",\n          \"followers_url\": \"https://api.github.com/users/astearns/followers\",\n          \"following_url\": \"https://api.github.com/users/astearns/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/astearns/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/astearns/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/astearns/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/astearns/orgs\",\n          \"repos_url\": \"https://api.github.com/users/astearns/repos\",\n          \"events_url\": \"https://api.github.com/users/astearns/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/astearns/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T15:52:34Z\",\n        \"updated_at\": \"2020-09-11T15:52:34Z\",\n        \"author_association\": \"MEMBER\",\n        \"body\": \"My interpretation was that `display-inside:math` is what computes to `flow` outside of a MathML context. So `display: inline math` would compute to `display: inline flow`. But @fantasai was translating what I actually said into what made sense to her as she minuted - is this what you meant me to mean, @fantasai?\\r\\n\\r\\nIf that's correct, then I think it follows that `display:inline-math` computes to `display:inline flow` in that context.\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:52:34Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490996195\",\n    \"type\": \"IssueCommentEvent\",\n    \"actor\": {\n      \"id\": 113268,\n      \"login\": \"frivoal\",\n      \"display_login\": \"frivoal\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/frivoal\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/113268?\"\n    },\n    \"repo\": {\n      \"id\": 88959182,\n      \"name\": \"w3c/w3process\",\n      \"url\": \"https://api.github.com/repos/w3c/w3process\"\n    },\n    \"payload\": {\n      \"action\": \"created\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/w3process/issues/433\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/w3process\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/w3process/issues/433/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/w3process/issues/433/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/w3process/issues/433/events\",\n        \"html_url\": \"https://github.com/w3c/w3process/pull/433\",\n        \"id\": 665554423,\n        \"node_id\": \"MDExOlB1bGxSZXF1ZXN0NDU2NTkzNzM3\",\n        \"number\": 433,\n        \"title\": \"Simplify the text on liaisons\",\n        \"user\": {\n          \"login\": \"frivoal\",\n          \"id\": 113268,\n          \"node_id\": \"MDQ6VXNlcjExMzI2OA==\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/113268?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/frivoal\",\n          \"html_url\": \"https://github.com/frivoal\",\n          \"followers_url\": \"https://api.github.com/users/frivoal/followers\",\n          \"following_url\": \"https://api.github.com/users/frivoal/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/frivoal/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/frivoal/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/frivoal/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/frivoal/orgs\",\n          \"repos_url\": \"https://api.github.com/users/frivoal/repos\",\n          \"events_url\": \"https://api.github.com/users/frivoal/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/frivoal/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [\n          {\n            \"id\": 589753076,\n            \"node_id\": \"MDU6TGFiZWw1ODk3NTMwNzY=\",\n            \"url\": \"https://api.github.com/repos/w3c/w3process/labels/Type:%20editorial%20improvements\",\n            \"name\": \"Type: editorial improvements\",\n            \"color\": \"fef2c0\",\n            \"default\": false,\n            \"description\": \"\"\n          }\n        ],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": {\n          \"login\": \"frivoal\",\n          \"id\": 113268,\n          \"node_id\": \"MDQ6VXNlcjExMzI2OA==\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/113268?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/frivoal\",\n          \"html_url\": \"https://github.com/frivoal\",\n          \"followers_url\": \"https://api.github.com/users/frivoal/followers\",\n          \"following_url\": \"https://api.github.com/users/frivoal/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/frivoal/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/frivoal/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/frivoal/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/frivoal/orgs\",\n          \"repos_url\": \"https://api.github.com/users/frivoal/repos\",\n          \"events_url\": \"https://api.github.com/users/frivoal/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/frivoal/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"assignees\": [\n          {\n            \"login\": \"frivoal\",\n            \"id\": 113268,\n            \"node_id\": \"MDQ6VXNlcjExMzI2OA==\",\n            \"avatar_url\": \"https://avatars0.githubusercontent.com/u/113268?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/frivoal\",\n            \"html_url\": \"https://github.com/frivoal\",\n            \"followers_url\": \"https://api.github.com/users/frivoal/followers\",\n            \"following_url\": \"https://api.github.com/users/frivoal/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/frivoal/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/frivoal/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/frivoal/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/frivoal/orgs\",\n            \"repos_url\": \"https://api.github.com/users/frivoal/repos\",\n            \"events_url\": \"https://api.github.com/users/frivoal/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/frivoal/received_events\",\n            \"type\": \"User\",\n            \"site_admin\": false\n          }\n        ],\n        \"milestone\": {\n          \"url\": \"https://api.github.com/repos/w3c/w3process/milestones/6\",\n          \"html_url\": \"https://github.com/w3c/w3process/milestone/6\",\n          \"labels_url\": \"https://api.github.com/repos/w3c/w3process/milestones/6/labels\",\n          \"id\": 4068135,\n          \"node_id\": \"MDk6TWlsZXN0b25lNDA2ODEzNQ==\",\n          \"number\": 6,\n          \"title\": \"Process 2021\",\n          \"description\": \"Issues intended to be addressed (for the open ones) or addressed (for the closed ones) in the 2021 Process revision cycle.\",\n          \"creator\": {\n            \"login\": \"frivoal\",\n            \"id\": 113268,\n            \"node_id\": \"MDQ6VXNlcjExMzI2OA==\",\n            \"avatar_url\": \"https://avatars0.githubusercontent.com/u/113268?v=4\",\n            \"gravatar_id\": \"\",\n            \"url\": \"https://api.github.com/users/frivoal\",\n            \"html_url\": \"https://github.com/frivoal\",\n            \"followers_url\": \"https://api.github.com/users/frivoal/followers\",\n            \"following_url\": \"https://api.github.com/users/frivoal/following{/other_user}\",\n            \"gists_url\": \"https://api.github.com/users/frivoal/gists{/gist_id}\",\n            \"starred_url\": \"https://api.github.com/users/frivoal/starred{/owner}{/repo}\",\n            \"subscriptions_url\": \"https://api.github.com/users/frivoal/subscriptions\",\n            \"organizations_url\": \"https://api.github.com/users/frivoal/orgs\",\n            \"repos_url\": \"https://api.github.com/users/frivoal/repos\",\n            \"events_url\": \"https://api.github.com/users/frivoal/events{/privacy}\",\n            \"received_events_url\": \"https://api.github.com/users/frivoal/received_events\",\n            \"type\": \"User\",\n            \"site_admin\": false\n          },\n          \"open_issues\": 38,\n          \"closed_issues\": 12,\n          \"state\": \"open\",\n          \"created_at\": \"2019-02-19T03:50:40Z\",\n          \"updated_at\": \"2020-08-14T05:55:01Z\",\n          \"due_on\": null,\n          \"closed_at\": null\n        },\n        \"comments\": 8,\n        \"created_at\": \"2020-07-25T09:42:30Z\",\n        \"updated_at\": \"2020-09-11T15:52:24Z\",\n        \"closed_at\": null,\n        \"author_association\": \"COLLABORATOR\",\n        \"active_lock_reason\": null,\n        \"pull_request\": {\n          \"url\": \"https://api.github.com/repos/w3c/w3process/pulls/433\",\n          \"html_url\": \"https://github.com/w3c/w3process/pull/433\",\n          \"diff_url\": \"https://github.com/w3c/w3process/pull/433.diff\",\n          \"patch_url\": \"https://github.com/w3c/w3process/pull/433.patch\"\n        },\n        \"body\": \"Related to #422\",\n        \"performed_via_github_app\": null\n      },\n      \"comment\": {\n        \"url\": \"https://api.github.com/repos/w3c/w3process/issues/comments/691175474\",\n        \"html_url\": \"https://github.com/w3c/w3process/pull/433#issuecomment-691175474\",\n        \"issue_url\": \"https://api.github.com/repos/w3c/w3process/issues/433\",\n        \"id\": 691175474,\n        \"node_id\": \"MDEyOklzc3VlQ29tbWVudDY5MTE3NTQ3NA==\",\n        \"user\": {\n          \"login\": \"frivoal\",\n          \"id\": 113268,\n          \"node_id\": \"MDQ6VXNlcjExMzI2OA==\",\n          \"avatar_url\": \"https://avatars0.githubusercontent.com/u/113268?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/frivoal\",\n          \"html_url\": \"https://github.com/frivoal\",\n          \"followers_url\": \"https://api.github.com/users/frivoal/followers\",\n          \"following_url\": \"https://api.github.com/users/frivoal/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/frivoal/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/frivoal/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/frivoal/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/frivoal/orgs\",\n          \"repos_url\": \"https://api.github.com/users/frivoal/repos\",\n          \"events_url\": \"https://api.github.com/users/frivoal/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/frivoal/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"created_at\": \"2020-09-11T15:52:24Z\",\n        \"updated_at\": \"2020-09-11T15:52:24Z\",\n        \"author_association\": \"COLLABORATOR\",\n        \"body\": \"> Is this a 'high nail' for this year?\\r\\n\\r\\nWell, there's a stated goal to reduce complexity and page count, to make the hole thing more digestible. This is an isolated chunk, so it doesn't do much for complexity, but if we do want to get the page count down, looking into removing sections that seem to do nothing seems worth a try.\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:52:24Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490976185\",\n    \"type\": \"PushEvent\",\n    \"actor\": {\n      \"id\": 41898282,\n      \"login\": \"github-actions[bot]\",\n      \"display_login\": \"github-actions\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/github-actions[bot]\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/41898282?\"\n    },\n    \"repo\": {\n      \"id\": 51465537,\n      \"name\": \"w3c/wai-website\",\n      \"url\": \"https://api.github.com/repos/w3c/wai-website\"\n    },\n    \"payload\": {\n      \"push_id\": 5674633332,\n      \"size\": 1,\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/gh-pages\",\n      \"head\": \"bf502271976edbaa7c7ec64fa64ec38e396999d0\",\n      \"before\": \"0c423c28ce956c9ca62e901b85df91e1ac226338\",\n      \"commits\": [\n        {\n          \"sha\": \"bf502271976edbaa7c7ec64fa64ec38e396999d0\",\n          \"author\": {\n            \"email\": \"slhenry@users.noreply.github.com\",\n            \"name\": \"slhenry\"\n          },\n          \"message\": \"deploy: 6614b8618f96c501acdaf74e756cbbe315aae1a5\",\n          \"distinct\": true,\n          \"url\": \"https://api.github.com/repos/w3c/wai-website/commits/bf502271976edbaa7c7ec64fa64ec38e396999d0\"\n        }\n      ]\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:50:42Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490961320\",\n    \"type\": \"IssuesEvent\",\n    \"actor\": {\n      \"id\": 716405,\n      \"login\": \"simevidas\",\n      \"display_login\": \"simevidas\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/simevidas\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/716405?\"\n    },\n    \"repo\": {\n      \"id\": 9549221,\n      \"name\": \"w3c/manifest\",\n      \"url\": \"https://api.github.com/repos/w3c/manifest\"\n    },\n    \"payload\": {\n      \"action\": \"opened\",\n      \"issue\": {\n        \"url\": \"https://api.github.com/repos/w3c/manifest/issues/934\",\n        \"repository_url\": \"https://api.github.com/repos/w3c/manifest\",\n        \"labels_url\": \"https://api.github.com/repos/w3c/manifest/issues/934/labels{/name}\",\n        \"comments_url\": \"https://api.github.com/repos/w3c/manifest/issues/934/comments\",\n        \"events_url\": \"https://api.github.com/repos/w3c/manifest/issues/934/events\",\n        \"html_url\": \"https://github.com/w3c/manifest/issues/934\",\n        \"id\": 699472536,\n        \"node_id\": \"MDU6SXNzdWU2OTk0NzI1MzY=\",\n        \"number\": 934,\n        \"title\": \"Could you review Chrome/Firefox implementation regarding `fullscreen` display mode on Mac?\",\n        \"user\": {\n          \"login\": \"simevidas\",\n          \"id\": 716405,\n          \"node_id\": \"MDQ6VXNlcjcxNjQwNQ==\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/716405?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/simevidas\",\n          \"html_url\": \"https://github.com/simevidas\",\n          \"followers_url\": \"https://api.github.com/users/simevidas/followers\",\n          \"following_url\": \"https://api.github.com/users/simevidas/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/simevidas/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/simevidas/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/simevidas/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/simevidas/orgs\",\n          \"repos_url\": \"https://api.github.com/users/simevidas/repos\",\n          \"events_url\": \"https://api.github.com/users/simevidas/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/simevidas/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"labels\": [],\n        \"state\": \"open\",\n        \"locked\": false,\n        \"assignee\": null,\n        \"assignees\": [],\n        \"milestone\": null,\n        \"comments\": 0,\n        \"created_at\": \"2020-09-11T15:49:27Z\",\n        \"updated_at\": \"2020-09-11T15:49:27Z\",\n        \"closed_at\": null,\n        \"author_association\": \"NONE\",\n        \"active_lock_reason\": null,\n        \"body\": \"The `fullscreen` display mode is defined as follows:\\r\\n\\r\\n> Opens the web application without any user agent chrome and takes up the entirety of the available display area. \\r\\n\\r\\nhttps://w3c.github.io/manifest/#dom-displaymodetype-fullscreen\\r\\n\\r\\nDesktop browsers can enter full screen. On Windows, a browser in full screen does not show any UI, i.e., the web content takes up the entire screen. However on Mac, even when a browser “enters full screen,” the browser’s UI is still fully shown.\\r\\n\\r\\n![ndfiXy-gmEt-syJC](https://user-images.githubusercontent.com/716405/92946328-cbb19880-f456-11ea-9881-c7b68babf8a6.gif)\\r\\n\\r\\nConsidering the above “without any user agent chrome” definition, it seems to me that Mac browsers in full screen should not match the `fullscreen` display mode.\\r\\n\\r\\nChrome and Firefox do. Safari doesn’t. Which one is correct?\",\n        \"performed_via_github_app\": null\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:49:28Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490921617\",\n    \"type\": \"PushEvent\",\n    \"actor\": {\n      \"id\": 41898282,\n      \"login\": \"github-actions[bot]\",\n      \"display_login\": \"github-actions\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/github-actions[bot]\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/41898282?\"\n    },\n    \"repo\": {\n      \"id\": 51465537,\n      \"name\": \"w3c/wai-website\",\n      \"url\": \"https://api.github.com/repos/w3c/wai-website\"\n    },\n    \"payload\": {\n      \"push_id\": 5674608074,\n      \"size\": 1,\n      \"distinct_size\": 1,\n      \"ref\": \"refs/heads/master\",\n      \"head\": \"bb9f91daa88b45790468d0a0fc8eb829f2a9c80d\",\n      \"before\": \"6614b8618f96c501acdaf74e756cbbe315aae1a5\",\n      \"commits\": [\n        {\n          \"sha\": \"bb9f91daa88b45790468d0a0fc8eb829f2a9c80d\",\n          \"author\": {\n            \"email\": \"slhenry@users.noreply.github.com\",\n            \"name\": \"slhenry\"\n          },\n          \"message\": \"Apply automatic changes\",\n          \"distinct\": true,\n          \"url\": \"https://api.github.com/repos/w3c/wai-website/commits/bb9f91daa88b45790468d0a0fc8eb829f2a9c80d\"\n        }\n      ]\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:46:07Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490905355\",\n    \"type\": \"CreateEvent\",\n    \"actor\": {\n      \"id\": 6991814,\n      \"login\": \"slhenry\",\n      \"display_login\": \"slhenry\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/slhenry\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/6991814?\"\n    },\n    \"repo\": {\n      \"id\": 51465537,\n      \"name\": \"w3c/wai-website\",\n      \"url\": \"https://api.github.com/repos/w3c/wai-website\"\n    },\n    \"payload\": {\n      \"ref\": \"2020/09/11-1\",\n      \"ref_type\": \"tag\",\n      \"master_branch\": \"master\",\n      \"description\": \"This is a repository hosts the new WAI Website.\",\n      \"pusher_type\": \"user\"\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:44:47Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  },\n  {\n    \"id\": \"13490905268\",\n    \"type\": \"ReleaseEvent\",\n    \"actor\": {\n      \"id\": 6991814,\n      \"login\": \"slhenry\",\n      \"display_login\": \"slhenry\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/users/slhenry\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/6991814?\"\n    },\n    \"repo\": {\n      \"id\": 51465537,\n      \"name\": \"w3c/wai-website\",\n      \"url\": \"https://api.github.com/repos/w3c/wai-website\"\n    },\n    \"payload\": {\n      \"action\": \"published\",\n      \"release\": {\n        \"url\": \"https://api.github.com/repos/w3c/wai-website/releases/31136552\",\n        \"assets_url\": \"https://api.github.com/repos/w3c/wai-website/releases/31136552/assets\",\n        \"upload_url\": \"https://uploads.github.com/repos/w3c/wai-website/releases/31136552/assets{?name,label}\",\n        \"html_url\": \"https://github.com/w3c/wai-website/releases/tag/2020/09/11-1\",\n        \"id\": 31136552,\n        \"node_id\": \"MDc6UmVsZWFzZTMxMTM2NTUy\",\n        \"tag_name\": \"2020/09/11-1\",\n        \"target_commitish\": \"master\",\n        \"name\": \"FR update\",\n        \"draft\": false,\n        \"author\": {\n          \"login\": \"slhenry\",\n          \"id\": 6991814,\n          \"node_id\": \"MDQ6VXNlcjY5OTE4MTQ=\",\n          \"avatar_url\": \"https://avatars1.githubusercontent.com/u/6991814?v=4\",\n          \"gravatar_id\": \"\",\n          \"url\": \"https://api.github.com/users/slhenry\",\n          \"html_url\": \"https://github.com/slhenry\",\n          \"followers_url\": \"https://api.github.com/users/slhenry/followers\",\n          \"following_url\": \"https://api.github.com/users/slhenry/following{/other_user}\",\n          \"gists_url\": \"https://api.github.com/users/slhenry/gists{/gist_id}\",\n          \"starred_url\": \"https://api.github.com/users/slhenry/starred{/owner}{/repo}\",\n          \"subscriptions_url\": \"https://api.github.com/users/slhenry/subscriptions\",\n          \"organizations_url\": \"https://api.github.com/users/slhenry/orgs\",\n          \"repos_url\": \"https://api.github.com/users/slhenry/repos\",\n          \"events_url\": \"https://api.github.com/users/slhenry/events{/privacy}\",\n          \"received_events_url\": \"https://api.github.com/users/slhenry/received_events\",\n          \"type\": \"User\",\n          \"site_admin\": false\n        },\n        \"prerelease\": false,\n        \"created_at\": \"2020-09-11T09:07:08Z\",\n        \"published_at\": \"2020-09-11T15:44:46Z\",\n        \"assets\": [],\n        \"tarball_url\": \"https://api.github.com/repos/w3c/wai-website/tarball/2020/09/11-1\",\n        \"zipball_url\": \"https://api.github.com/repos/w3c/wai-website/zipball/2020/09/11-1\",\n        \"body\": \"\"\n      }\n    },\n    \"public\": true,\n    \"created_at\": \"2020-09-11T15:44:46Z\",\n    \"org\": {\n      \"id\": 379216,\n      \"login\": \"w3c\",\n      \"gravatar_id\": \"\",\n      \"url\": \"https://api.github.com/orgs/w3c\",\n      \"avatar_url\": \"https://avatars.githubusercontent.com/u/379216?\"\n    }\n  }\n]\n"
  },
  {
    "path": "example-files/wikia-CoD.jsonld",
    "content": "{\n  \"@context\": {\n    \"@comment\":      \"Generic terms for describing Video Games in RDF and JSON/LD\",\n    \"wikia\":        \"http://data.wikia.com/terms#\",\n    \"xsd\":          \"http://www.w3.org/2001/XMLSchema#\",\n    \"@vocab\":       \"http://schema.org/\",\n    \"@language\":    \"en\",\n\n    \"birthDate\":    {\"@type\": \"xsd:date\"},\n    \"dateCreated\":  {\"@type\": \"xsd:dateTime\"},\n    \"dateModified\": {\"@type\": \"xsd:dateTime\"},\n    \"datePublished\":{\"@type\": \"xsd:dateTime\"},\n    \"event\":        {\"@id\": \"wikia:event\", \"@container\": \"@list\"},\n    \"eventIn\":      {\"@id\": \"wikia:eventIn\", \"@type\": \"@id\"},\n    \"fingerprint\":  {\"@id\": \"wikia:fingerprint\", \"@language\": null},\n    \"game\":         {\"@id\": \"wikia:game\", \"@type\": \"@id\"},\n    \"height\":       {\"@type\": \"xsd:integer\"},\n    \"map\":          {\"@type\": \"@id\", \"@container\": \"@set\"},\n    \"next\":         {\"@id\": \"wikia:next\", \"@type\": \"@id\"},\n    \"objective\":    {\"@id\": \"wikia:objective\", \"@container\": \"@list\"},\n    \"objectiveIn\":  {\"@id\": \"wikia:objectiveIn\", \"@type\": \"@id\"},\n    \"previous\":     {\"@id\": \"wikia:previous\", \"@type\": \"@id\"},\n    \"startDate\":    {\"@type\": \"xsd:dateTime\"},\n    \"width\":        {\"@type\": \"xsd:integer\"}\n  },\n  \"@id\": \"500f1a1b6e7f1827ba000001\",\n  \"@type\": \"wikia:VideoGame\",\n  \"contentRating\": [\n    \"ESRB: Mature (DS version is Teen)\",\n    \"PEGI: 18+ (DS version is 16+) \",\n    \"USK: 18 CERO: Z OFLC: MA15+ (DS version is M)\"\n  ],\n  \"datePublished\": \"2011-11-09\",\n  \"description\": \"Primary game entry point\",\n  \"genre\": [\"First-person shooter\"],\n  \"name\": \"Call of Duty: Black Ops\",\n  \"publisher\": [\n    {\"@id\": \"501067246e7f184553000001\"},\n    {\"@id\": \"5010675a6e7f18464d000001\"}\n  ],\n  \"wikia:event\": [\n    {\"@id\": \"500f28856e7f187196000001\"},\n    {\"@id\": \"500f44556e7f18f7ef000001\"},\n    {\"@id\": \"500f449e6e7f18f94b000001\"},\n    {\"@id\": \"500f44e26e7f18fa75000001\"}\n  ],\n  \"wikia:platform\": [\"Xbox 360\",\"PS3\",\"PC\",\"Wii\",\"DS\"]\n}\n"
  },
  {
    "path": "example-files/wikia.owl",
    "content": "<?xml version=\"1.0\"?>\n\n\n<!DOCTYPE rdf:RDF [\n    <!ENTITY schema \"http://schema.org/\" >\n    <!ENTITY owl \"http://www.w3.org/2002/07/owl#\" >\n    <!ENTITY terms \"http://data.wikia.com/terms.owl#\" >\n    <!ENTITY xsd \"http://www.w3.org/2001/XMLSchema#\" >\n    <!ENTITY rdfs \"http://www.w3.org/2000/01/rdf-schema#\" >\n    <!ENTITY rdf \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\" >\n]>\n\n\n<rdf:RDF xmlns=\"http://data.wikia.com/terms#\"\n     xml:base=\"http://data.wikia.com/terms\"\n     xmlns:schema=\"http://schema.org/\"\n     xmlns:rdfs=\"http://www.w3.org/2000/01/rdf-schema#\"\n     xmlns:terms=\"http://data.wikia.com/terms.owl#\"\n     xmlns:owl=\"http://www.w3.org/2002/07/owl#\"\n     xmlns:xsd=\"http://www.w3.org/2001/XMLSchema#\"\n     xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n\n    <owl:Class rdf:about=\"http://data.wikia.com/terms#Character\">\n        <rdfs:subClassOf>\n            <owl:Restriction>\n                <owl:onProperty rdf:resource=\"http://data.wikia.com/terms#characterIn\"/>\n                <owl:onClass rdf:resource=\"http://data.wikia.com/terms#Element\"/>\n                <owl:minQualifiedCardinality rdf:datatype=\"&xsd;nonNegativeInteger\">1</owl:minQualifiedCardinality>\n            </owl:Restriction>\n        </rdfs:subClassOf>\n    </owl:Class>\n</rdf:RDF>\n\n\n\n<!-- Generated by the OWL API (version 3.2.3.1824) http://owlapi.sourceforge.net -->\n\n"
  },
  {
    "path": "example-files/wikidata.jsonld",
    "content": "{\n  \"@context\": {\n    \"titles\": \"http://purl.org/dc/terms/title\",\n    \"description\": \"http://purl.org/dc/terms/description\",\n    \"label\": \"http://www.w3.org/2000/01/rdf-schema#label\",\n    \"en\": \"http://meta.wikimedia.org/language#en\",\n    \"de\": \"http://meta.wikimedia.org/language#de\",\n    \"value\": \"@value\",\n    \"entity\": \"@id\"\n  },\n  \"entity\" : \"q7\",\n  \"titles\" : {\n    \"en\" : {\n      \"@language\" : \"en\",\n      \"value\" : \"Georgia_(country)\"\n    },\n    \"de\" : {\n      \"@language\" : \"de\",\n      \"value\" : \"Georgien\"\n    }\n  },\n  \"label\" : {\n    \"en\" : {\n      \"@language\" : \"en\",\n      \"value\" : \"Georgia\"\n    },\n    \"de\" : {\n      \"@language\" : \"de\",\n      \"value\" : \"Georgien\"\n    }\n  },\n  \"description\" : {\n    \"en\" : {\n      \"@language\" : \"en\",\n      \"value\" : \"A central-asian country\"\n    },\n    \"de\" : {\n      \"@language\" : \"de\",\n      \"value\" : \"Land im Kaukasus\"\n    }\n  }\n}\n"
  },
  {
    "path": "example-files/workergnome-issue-35.rb",
    "content": "require 'linkeddata'\n\ngraph = RDF::Graph.new\ngraph << [RDF::URI(\"http://www.museum.com/fish\"), \n          RDF.type, \n          RDF::URI(\"http://www.cidoc-crm.org/cidoc-crm/E55_Type\")]\n\nunframed_json = JSON::LD::API::fromRdf(graph)\n\n\n# Using this frame:\nframe = {\n  \"@context\"=> [\n    \"https://linked.art/ns/context/1/full.jsonld\",\n    {\"crm\" => \"http://www.cidoc-crm.org/cidoc-crm/\"}\n  ]\n}\n\n# This works\nputs JSON::LD::API.frame(unframed_json, frame, base: \"http://www.example.com\")\n\n# But this doesn't.\nbegin\n  puts JSON::LD::API.frame(unframed_json, frame)\nrescue JSON::LD::JsonLdError::InvalidBaseIRI => e\n  puts \"This doesn't work: #{e}\"\nend\n\n\n# But using this frame:\nframe = {\n  \"@context\"=> [\n    {\"crm\" => \"http://www.cidoc-crm.org/cidoc-crm/\"}\n  ]\n}\n# Both of these work\nputs JSON::LD::API.frame(unframed_json, frame, base: \"http://www.example.com\")\nputs JSON::LD::API.frame(unframed_json, frame)\n"
  },
  {
    "path": "json-ld.gemspec",
    "content": "#!/usr/bin/env ruby -rubygems\n# frozen_string_literal: true\n\nis_java = RUBY_PLATFORM == 'java'\n\nGem::Specification.new do |gem|\n  gem.version               = File.read('VERSION').chomp\n\n  gem.name                  = \"json-ld\"\n  gem.homepage              = \"https://github.com/ruby-rdf/json-ld\"\n  gem.license               = 'Unlicense'\n  gem.summary               = \"JSON-LD reader/writer for Ruby.\"\n  gem.description           = \"JSON::LD parses and serializes JSON-LD into RDF and implements expansion, compaction and framing API interfaces for the Ruby RDF.rb library suite.\"\n  gem.metadata = {\n    \"documentation_uri\" => \"https://ruby-rdf.github.io/json-ld\",\n    \"bug_tracker_uri\" => \"https://github.com/ruby-rdf/json-ld/issues\",\n    \"homepage_uri\" => \"https://github.com/ruby-rdf/json-ld\",\n    \"mailing_list_uri\" => \"https://lists.w3.org/Archives/Public/public-rdf-ruby/\",\n    \"source_code_uri\" => \"https://github.com/ruby-rdf/json-ld\",\n    'rubygems_mfa_required' => 'true'\n  }\n\n  gem.authors               = ['Gregg Kellogg']\n  gem.email                 = 'public-linked-json@w3.org'\n\n  gem.platform              = Gem::Platform::RUBY\n  gem.files                 = %w[AUTHORS README.md UNLICENSE VERSION] + Dir.glob('lib/**/*.rb')\n  gem.bindir               = 'bin'\n  gem.executables          = %w[jsonld]\n  gem.require_paths         = %w[lib]\n\n  gem.required_ruby_version = '>= 3.0'\n  gem.requirements          = []\n  gem.add_runtime_dependency     'htmlentities', '~> 4.3'\n  gem.add_runtime_dependency     'json-canonicalization', '~> 1.0'\n  gem.add_runtime_dependency     'link_header', '~> 0.0', '>= 0.0.8'\n  gem.add_runtime_dependency     'multi_json',      '~> 1.15'\n  gem.add_runtime_dependency     \"rack\",            '>= 2.2', '< 4'\n  gem.add_runtime_dependency     'rdf',             '~> 3.3'\n  gem.add_runtime_dependency     'rexml',           '~> 3.4'\n  gem.add_development_dependency 'getoptlong',      '~> 0.2'\n  gem.add_development_dependency 'jsonlint',        '~> 0.4'  unless is_java\n  gem.add_development_dependency 'oj',              '~> 3.15' unless is_java\n  gem.add_development_dependency 'rack-test',       '~> 2.1'\n  gem.add_development_dependency 'rdf-isomorphic',  '~> 3.3'\n  gem.add_development_dependency 'rdf-spec',        '~> 3.3'\n  gem.add_development_dependency 'rdf-trig',        '~> 3.3'\n  gem.add_development_dependency 'rdf-turtle',      '~> 3.3'\n  gem.add_development_dependency 'rdf-vocab',       '~> 3.3'\n  gem.add_development_dependency 'rdf-xsd',         '~> 3.3'\n  gem.add_development_dependency 'rspec',           '~> 3.12'\n  gem.add_development_dependency 'rspec-its',       '~> 1.3'\n  gem.add_development_dependency 'yajl-ruby',       '~> 1.4' unless is_java\n  gem.add_development_dependency 'yard', '~> 0.9'\n\n  gem.post_install_message = nil\nend\n"
  },
  {
    "path": "lib/json/ld/api.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'English'\n\nrequire 'openssl'\nrequire 'cgi'\nrequire 'json/ld/expand'\nrequire 'json/ld/compact'\nrequire 'json/ld/flatten'\nrequire 'json/ld/frame'\nrequire 'json/ld/to_rdf'\nrequire 'json/ld/from_rdf'\n\nbegin\n  require 'jsonlint'\nrescue LoadError\nend\n\nmodule JSON\n  module LD\n    ##\n    # A JSON-LD processor based on the JsonLdProcessor interface.\n    #\n    # This API provides a clean mechanism that enables developers to convert JSON-LD data into a a variety of output formats that are easier to work with in various programming languages. If a JSON-LD API is provided in a programming environment, the entirety of the following API must be implemented.\n    #\n    # Note that the API method signatures are somewhat different than what is specified, as the use of Futures and explicit callback parameters is not as relevant for Ruby-based interfaces.\n    #\n    # @see https://www.w3.org/TR/json-ld11-api/#the-application-programming-interface\n    # @author [Gregg Kellogg](http://greggkellogg.net/)\n    class API\n      include Expand\n      include Compact\n      include ToRDF\n      include Flatten\n      include FromRDF\n      include Frame\n      include RDF::Util::Logger\n\n      # Options used for open_file\n      OPEN_OPTS = {\n        headers: { \"Accept\" => \"application/ld+json, text/html;q=0.8, application/xhtml+xml;q=0.8, application/json;q=0.5\" }\n      }\n\n      # The following constants are used to reduce object allocations\n      LINK_REL_CONTEXT = %w[rel http://www.w3.org/ns/json-ld#context].freeze\n      LINK_REL_ALTERNATE = %w[rel alternate].freeze\n      LINK_TYPE_JSONLD = %w[type application/ld+json].freeze\n      JSON_LD_PROCESSING_MODES = %w[json-ld-1.0 json-ld-1.1].freeze\n\n      # Current input\n      # @!attribute [rw] input\n      # @return [String, #read, Hash, Array]\n      attr_accessor :value\n\n      # Input evaluation context\n      # @!attribute [rw] context\n      # @return [JSON::LD::Context]\n      attr_accessor :context\n\n      # Current Blank Node Namer\n      # @!attribute [r] namer\n      # @return [JSON::LD::BlankNodeNamer]\n      attr_reader :namer\n\n      ##\n      # Initialize the API, reading in any document and setting global options\n      #\n      # @param [String, #read, Hash, Array] input\n      # @param [String, #read, Hash, Array, JSON::LD::Context] context\n      #   An external context to use additionally to the context embedded in input when expanding the input.\n      # @param  [Hash{Symbol => Object}] options\n      # @option options [Symbol] :adapter used with MultiJson\n      # @option options [RDF::URI, String, #to_s] :base\n      #   The Base IRI to use when expanding the document. This overrides the value of `input` if it is a _IRI_. If not specified and `input` is not an _IRI_, the base IRI defaults to the current document IRI if in a browser context, or the empty string if there is no document context. If not specified, and a base IRI is found from `input`, options[:base] will be modified with this value.\n      # @option options [Boolean] :compactArrays (true)\n      #   If set to `true`, the JSON-LD processor replaces arrays with just one element with that element during compaction. If set to `false`, all arrays will remain arrays even if they have just one element.\n      # @option options [Boolean] :compactToRelative (true)\n      #   Creates document relative IRIs when compacting, if `true`, otherwise leaves expanded.\n      # @option options [Proc] :documentLoader\n      #   The callback of the loader to be used to retrieve remote documents and contexts. If specified, it must be used to retrieve remote documents and contexts; otherwise, if not specified, the processor's built-in loader must be used. See {documentLoader} for the method signature.\n      # @option options [String, #read, Hash, Array, JSON::LD::Context] :expandContext\n      #   A context that is used to initialize the active context when expanding a document.\n      # @option options [Boolean] :extendedRepresentation (false)\n      #   Use the extended internal representation.\n      # @option options [Boolean] :extractAllScripts\n      #   If set, when given an HTML input without a fragment identifier, extracts all `script` elements with type `application/ld+json` into an array during expansion.\n      # @option options [Boolean, String, RDF::URI] :flatten\n      #   If set to a value that is not `false`, the JSON-LD processor must modify the output of the Compaction Algorithm or the Expansion Algorithm by coalescing all properties associated with each subject via the Flattening Algorithm. The value of `flatten must` be either an _IRI_ value representing the name of the graph to flatten, or `true`. If the value is `true`, then the first graph encountered in the input document is selected and flattened.\n      # @option options [String] :language\n      #   When set, this has the effect of inserting a context definition with `@language` set to the associated value, creating a default language for interpreting string values.\n      # @option options [Symbol] :library\n      #   One of :nokogiri or :rexml. If nil/unspecified uses :nokogiri if available, :rexml otherwise.\n      # @option options [Boolean] :lowercaseLanguage\n      #   By default, language tags are left as is. To normalize to lowercase, set this option to `true`.\n      # @option options [Boolean] :ordered (true)\n      #   Order traversal of dictionary members by key when performing algorithms.\n      # @option options [String] :processingMode\n      #   Processing mode, json-ld-1.0 or json-ld-1.1.\n      # @option options [Boolean] :rdfstar      (false)\n      #   support parsing JSON-LD-star statement resources.\n      # @option options [Boolean] :rename_bnodes (true)\n      #   Rename bnodes as part of expansion, or keep them the same.\n      # @option options [Boolean]  :unique_bnodes   (false)\n      #   Use unique bnode identifiers, defaults to using the identifier which the node was originally initialized with (if any).\n      # @option options [Boolean] :validate Validate input, if a string or readable object.\n      # @yield [api]\n      # @yieldparam [API]\n      # @raise [JsonLdError]\n      def initialize(input, context, **options, &block)\n        @options = {\n          compactArrays: true,\n          ordered: false,\n          extractAllScripts: false,\n          rename_bnodes: true,\n          unique_bnodes: false\n        }.merge(options)\n        @namer = if @options[:unique_bnodes]\n          BlankNodeUniqer.new\n        else\n          (@options[:rename_bnodes] ? BlankNodeNamer.new(\"b\") : BlankNodeMapper.new)\n        end\n\n        @options[:base] = RDF::URI(@options[:base]) if @options[:base] && !@options[:base].is_a?(RDF::URI)\n        # For context via Link header\n        _ = nil\n        context_ref = nil\n\n        @value = case input\n        when Array, Hash then input.dup\n        when IO, StringIO, String\n          remote_doc = self.class.loadRemoteDocument(input, **@options)\n\n          context_ref = remote_doc.contextUrl\n          @options[:base] = RDF::URI(remote_doc.documentUrl) if remote_doc.documentUrl && !@options[:no_default_base]\n\n          case remote_doc.document\n          when String\n            mj_opts = options.keep_if { |k, v| k != :adapter || MUTLI_JSON_ADAPTERS.include?(v) }\n            MultiJson.load(remote_doc.document, **mj_opts)\n          else\n            # Already parsed\n            remote_doc.document\n          end\n        end\n\n        # If not provided, first use context from document, or from a Link header\n        context ||= context_ref || {}\n        @context = Context.parse(context, **@options)\n\n        return unless block\n\n        case block.arity\n        when 0, -1 then instance_eval(&block)\n        else yield(self)\n        end\n      end\n\n      # This is used internally only\n      private :initialize\n\n      ##\n      # Expands the given input according to the steps in the Expansion Algorithm. The input must be copied, expanded and returned if there are no errors. If the expansion fails, an appropriate exception must be thrown.\n      #\n      # The resulting `Array` either returned or yielded\n      #\n      # @param [String, #read, Hash, Array] input\n      #   The JSON-LD object to copy and perform the expansion upon.\n      # @param [Proc] serializer (nil)\n      #   A Serializer method used for generating the JSON serialization of the result. If absent, the internal Ruby objects are returned, which can be transformed to JSON externally via `#to_json`.\n      #   See {JSON::LD::API.serializer}.\n      # @param  [Hash{Symbol => Object}] options\n      # @option options (see #initialize)\n      # @raise [JsonLdError]\n      # @yield jsonld, base_iri\n      # @yieldparam [Array<Hash>] jsonld\n      #   The expanded JSON-LD document\n      # @yieldparam [RDF::URI] base_iri\n      #   The document base as determined during expansion\n      # @yieldreturn [Object] returned object\n      # @return [Object, Array<Hash>]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the expanded JSON-LD document\n      # @see https://www.w3.org/TR/json-ld11-api/#expansion-algorithm\n      def self.expand(input, framing: false, serializer: nil, **options, &block)\n        result = doc_base = nil\n        API.new(input, options[:expandContext], **options) do\n          result = expand(value, nil, context,\n            framing: framing)\n          doc_base = @options[:base]\n        end\n\n        # If, after the algorithm outlined above is run, the resulting element is an JSON object with just a @graph property, element is set to the value of @graph's value.\n        result = result['@graph'] if result.is_a?(Hash) && result.length == 1 && result.key?('@graph')\n\n        # Finally, if element is a JSON object, it is wrapped into an array.\n        result = [result].compact unless result.is_a?(Array)\n        result = serializer.call(result, **options) if serializer\n\n        if block\n          case block.arity\n          when 1 then yield(result)\n          when 2 then yield(result, doc_base)\n          else\n            raise \"Unexpected number of yield parameters to expand\"\n          end\n        else\n          result\n        end\n      end\n\n      ##\n      # Compacts the given input according to the steps in the Compaction Algorithm. The input must be copied, compacted and returned if there are no errors. If the compaction fails, an appropirate exception must be thrown.\n      #\n      # If no context is provided, the input document is compacted using the top-level context of the document\n      #\n      # The resulting `Hash` is either returned or yielded, if a block is given.\n      #\n      # @param [String, #read, Hash, Array] input\n      #   The JSON-LD object to copy and perform the compaction upon.\n      # @param [String, #read, Hash, Array, JSON::LD::Context] context\n      #   The base context to use when compacting the input.\n      # @param [Proc] serializer (nil)\n      #   A Serializer instance used for generating the JSON serialization of the result. If absent, the internal Ruby objects are returned, which can be transformed to JSON externally via `#to_json`.\n      #   See {JSON::LD::API.serializer}.\n      # @param [Boolean] expanded (false) Input is already expanded\n      # @param  [Hash{Symbol => Object}] options\n      # @option options (see #initialize)\n      # @yield jsonld\n      # @yieldparam [Hash] jsonld\n      #   The compacted JSON-LD document\n      # @yieldreturn [Object] returned object\n      # @return [Object, Hash]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the compacted JSON-LD document\n      # @raise [JsonLdError]\n      # @see https://www.w3.org/TR/json-ld11-api/#compaction-algorithm\n      def self.compact(input, context, expanded: false, serializer: nil, **options)\n        result = nil\n        options = { compactToRelative: true }.merge(options)\n\n        # 1) Perform the Expansion Algorithm on the JSON-LD input.\n        #    This removes any existing context to allow the given context to be cleanly applied.\n        expanded_input = if expanded\n          input\n        else\n          API.expand(input, ordered: false, **options) do |res, base_iri|\n            options[:base] ||= RDF::URI(base_iri) if base_iri && options[:compactToRelative]\n            res\n          end\n        end\n\n        API.new(expanded_input, context, no_default_base: true, **options) do\n          # log_debug(\".compact\") {\"expanded input: #{expanded_input.to_json(JSON_STATE) rescue 'malformed json'}\"}\n          result = compact(value)\n\n          # xxx) Add the given context to the output\n          ctx = self.context.serialize(provided_context: context)\n          if result.is_a?(Array)\n            kwgraph = self.context.compact_iri('@graph', vocab: true)\n            result = result.empty? ? {} : { kwgraph => result }\n          end\n          result = ctx.merge(result) unless ctx.fetch('@context', {}).empty?\n        end\n        result = serializer.call(result, **options) if serializer\n        block_given? ? yield(result) : result\n      end\n\n      ##\n      # This algorithm flattens an expanded JSON-LD document by collecting all properties of a node in a single JSON object and labeling all blank nodes with blank node identifiers. This resulting uniform shape of the document, may drastically simplify the code required to process JSON-LD data in certain applications.\n      #\n      # The resulting `Array` is either returned, or yielded if a block is given.\n      #\n      # @param [String, #read, Hash, Array] input\n      #   The JSON-LD object or array of JSON-LD objects to flatten or an IRI referencing the JSON-LD document to flatten.\n      # @param [String, #read, Hash, Array, JSON::LD::EvaluationContext] context\n      #   An optional external context to use additionally to the context embedded in input when expanding the input.\n      # @param [Boolean] expanded (false) Input is already expanded\n      # @param [Proc] serializer (nil)\n      #   A Serializer instance used for generating the JSON serialization of the result. If absent, the internal Ruby objects are returned, which can be transformed to JSON externally via `#to_json`.\n      #   See {JSON::LD::API.serializer}.\n      # @param  [Hash{Symbol => Object}] options\n      # @option options (see #initialize)\n      # @option options [Boolean] :createAnnotations\n      #   Unfold embedded nodes which can be represented using `@annotation`.\n      # @yield jsonld\n      # @yieldparam [Hash] jsonld\n      #   The flattened JSON-LD document\n      # @yieldreturn [Object] returned object\n      # @return [Object, Hash]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the flattened JSON-LD document\n      # @see https://www.w3.org/TR/json-ld11-api/#framing-algorithm\n      def self.flatten(input, context, expanded: false, serializer: nil, **options)\n        flattened = []\n        options = {\n          compactToRelative: true\n        }.merge(options)\n\n        # Expand input to simplify processing\n        expanded_input = if expanded\n          input\n        else\n          API.expand(input, **options) do |result, base_iri|\n            options[:base] ||= RDF::URI(base_iri) if base_iri && options[:compactToRelative]\n            result\n          end\n        end\n\n        # Initialize input using\n        API.new(expanded_input, context, no_default_base: true, **options) do\n          # log_debug(\".flatten\") {\"expanded input: #{value.to_json(JSON_STATE) rescue 'malformed json'}\"}\n\n          # Rename blank nodes recusively. Note that this does not create new blank node identifiers where none exist, which is performed in the node map generation algorithm.\n          @value = rename_bnodes(@value) if @options[:rename_bnodes]\n\n          # Initialize node map to a JSON object consisting of a single member whose key is @default and whose value is an empty JSON object.\n          graph_maps = { '@default' => {} }\n          create_node_map(value, graph_maps)\n\n          # If create annotations flag is set, then update each node map in graph maps with the result of calling the create annotations algorithm.\n          if options[:createAnnotations]\n            graph_maps.each_value do |node_map|\n              create_annotations(node_map)\n            end\n          end\n\n          default_graph = graph_maps['@default']\n          graph_maps.keys.opt_sort(ordered: @options[:ordered]).each do |graph_name|\n            next if graph_name == '@default'\n\n            graph = graph_maps[graph_name]\n            entry = default_graph[graph_name] ||= { '@id' => graph_name }\n            nodes = entry['@graph'] ||= []\n            graph.keys.opt_sort(ordered: @options[:ordered]).each do |id|\n              nodes << graph[id] unless node_reference?(graph[id])\n            end\n          end\n          default_graph.keys.opt_sort(ordered: @options[:ordered]).each do |id|\n            flattened << default_graph[id] unless node_reference?(default_graph[id])\n          end\n\n          if context && !flattened.empty?\n            # Otherwise, return the result of compacting flattened according the Compaction algorithm passing context ensuring that the compaction result uses the @graph keyword (or its alias) at the top-level, even if the context is empty or if there is only one element to put in the @graph array. This ensures that the returned document has a deterministic structure.\n            compacted = as_array(compact(flattened))\n            kwgraph = self.context.compact_iri('@graph', vocab: true)\n            flattened = self.context\n              .serialize(provided_context: context)\n              .merge(kwgraph => compacted)\n          end\n        end\n\n        flattened = serializer.call(flattened, **options) if serializer\n        block_given? ? yield(flattened) : flattened\n      end\n\n      ##\n      # Frames the given input using the frame according to the steps in the Framing Algorithm. The input is used to build the framed output and is returned if there are no errors. If there are no matches for the frame, null must be returned. Exceptions must be thrown if there are errors.\n      #\n      # The resulting `Array` is either returned, or yielded if a block is given.\n      #\n      # @param [String, #read, Hash, Array] input\n      #   The JSON-LD object to copy and perform the framing on.\n      # @param [String, #read, Hash, Array] frame\n      #   The frame to use when re-arranging the data.\n      # @param [Boolean] expanded (false) Input is already expanded\n      # @option options (see #initialize)\n      # @option options ['@always', '@link', '@once', '@never'] :embed ('@once')\n      #   a flag specifying that objects should be directly embedded in the output, instead of being referred to by their IRI.\n      # @option options [Boolean] :explicit (false)\n      #   a flag specifying that for properties to be included in the output, they must be explicitly declared in the framing context.\n      # @option options [Boolean] :requireAll (false)\n      #   A flag specifying that all properties present in the input frame must either have a default value or be present in the JSON-LD input for the frame to match.\n      # @option options [Boolean] :omitDefault (false)\n      #   a flag specifying that properties that are missing from the JSON-LD input should be omitted from the output.\n      # @option options [Boolean] :pruneBlankNodeIdentifiers (true) removes blank node identifiers that are only used once.\n      # @option options [Boolean] :omitGraph does not use `@graph` at top level unless necessary to describe multiple objects, defaults to `true` if processingMode is 1.1, otherwise `false`.\n      # @yield jsonld\n      # @yieldparam [Hash] jsonld\n      #   The framed JSON-LD document\n      # @yieldreturn [Object] returned object\n      # @return [Object, Hash]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the framed JSON-LD document\n      # @raise [InvalidFrame]\n      # @see https://www.w3.org/TR/json-ld11-api/#framing-algorithm\n      def self.frame(input, frame, expanded: false, serializer: nil, **options)\n        result = nil\n        options = {\n          base: (RDF::URI(input) if input.is_a?(String)),\n          compactArrays: true,\n          compactToRelative: true,\n          embed: '@once',\n          explicit: false,\n          requireAll: false,\n          omitDefault: false\n        }.merge(options)\n\n        framing_state = {\n          graphMap: {},\n          graphStack: [],\n          subjectStack: [],\n          link: {},\n          embedded: false # False at the top-level\n        }\n\n        # de-reference frame to create the framing object\n        frame = case frame\n        when Hash then frame.dup\n        when IO, StringIO, String\n          remote_doc = loadRemoteDocument(frame,\n            profile: 'http://www.w3.org/ns/json-ld#frame',\n            requestProfile: 'http://www.w3.org/ns/json-ld#frame',\n                                          **options)\n          if remote_doc.document.is_a?(String)\n            mj_opts = options.keep_if { |k, v| k != :adapter || MUTLI_JSON_ADAPTERS.include?(v) }\n            MultiJson.load(remote_doc.document, **mj_opts)\n          else\n            remote_doc.document\n          end\n        end\n\n        # Expand input to simplify processing\n        expanded_input = if expanded\n          input\n        else\n          API.expand(input, ordered: false, **options) do |res, base_iri|\n            options[:base] ||= RDF::URI(base_iri) if base_iri && options[:compactToRelative]\n            res\n          end\n        end\n\n        # Expand frame to simplify processing\n        expanded_frame = API.expand(frame, framing: true, ordered: false, **options)\n\n        # Initialize input using frame as context\n        API.new(expanded_input, frame['@context'], no_default_base: true, **options) do\n          # log_debug(\".frame\") {\"expanded input: #{expanded_input.to_json(JSON_STATE) rescue 'malformed json'}\"}\n          # log_debug(\".frame\") {\"expanded frame: #{expanded_frame.to_json(JSON_STATE) rescue 'malformed json'}\"}\n\n          if %w[@first @last].include?(options[:embed]) && context.processingMode('json-ld-1.1')\n            if @options[:validate]\n              raise JSON::LD::JsonLdError::InvalidEmbedValue,\n                \"#{options[:embed]} is not a valid value of @embed in 1.1 mode\"\n            end\n\n            warn \"[DEPRECATION] #{options[:embed]}  is not a valid value of @embed in 1.1 mode.\\n\"\n          end\n\n          # Set omitGraph option, if not present, based on processingMode\n          options[:omitGraph] = context.processingMode('json-ld-1.1') unless options.key?(:omitGraph)\n\n          # Rename blank nodes recusively. Note that this does not create new blank node identifiers where none exist, which is performed in the node map generation algorithm.\n          @value = rename_bnodes(@value)\n\n          # Get framing nodes from expanded input, replacing Blank Node identifiers as necessary\n          create_node_map(value, framing_state[:graphMap], active_graph: '@default')\n\n          frame_keys = frame.keys.map { |k| context.expand_iri(k, vocab: true) }\n          if frame_keys.include?('@graph')\n            # If frame contains @graph, it matches the default graph.\n            framing_state[:graph] = '@default'\n          else\n            # If frame does not contain @graph used the merged graph.\n            framing_state[:graph] = '@merged'\n            framing_state[:link]['@merged'] = {}\n            framing_state[:graphMap]['@merged'] = merge_node_map_graphs(framing_state[:graphMap])\n          end\n\n          framing_state[:subjects] = framing_state[:graphMap][framing_state[:graph]]\n\n          result = []\n          frame(framing_state, framing_state[:subjects].keys.opt_sort(ordered: @options[:ordered]),\n            (expanded_frame.first || {}), parent: result, **options)\n\n          # Default to based on processinMode\n          unless options.key?(:pruneBlankNodeIdentifiers)\n            options[:pruneBlankNodeIdentifiers] = context.processingMode('json-ld-1.1')\n          end\n\n          # Count blank node identifiers used in the document, if pruning\n          if options[:pruneBlankNodeIdentifiers]\n            bnodes_to_clear = count_blank_node_identifiers(result).collect { |k, v| k if v == 1 }.compact\n            result = prune_bnodes(result, bnodes_to_clear)\n          end\n\n          # Replace values with `@preserve` with the content of its entry.\n          result = cleanup_preserve(result)\n          # log_debug(\".frame\") {\"expanded result: #{result.to_json(JSON_STATE) rescue 'malformed json'}\"}\n\n          # Compact result\n          compacted = compact(result)\n\n          # @replace `@null` with nil, compacting arrays\n          compacted = cleanup_null(compacted)\n          compacted = [compacted] unless options[:omitGraph] || compacted.is_a?(Array)\n\n          # Add the given context to the output\n          result = if compacted.is_a?(Array)\n            kwgraph = context.compact_iri('@graph', vocab: true)\n            { kwgraph => compacted }\n          else\n            compacted\n          end\n          # Only add context if one was provided\n          result = context.serialize(provided_context: frame).merge(result) if frame['@context']\n\n          # log_debug(\".frame\") {\"after compact: #{result.to_json(JSON_STATE) rescue 'malformed json'}\"}\n          result\n        end\n\n        result = serializer.call(result, **options) if serializer\n        block_given? ? yield(result) : result\n      end\n\n      ##\n      # Processes the input according to the RDF Conversion Algorithm, calling the provided callback for each triple generated.\n      #\n      # @param [String, #read, Hash, Array] input\n      #   The JSON-LD object to process when outputting statements.\n      # @param [Boolean] expanded (false) Input is already expanded\n      # @option options (see #initialize)\n      # @option options [Boolean] :produceGeneralizedRdf (false)\n      #   If true, output will include statements having blank node predicates, otherwise they are dropped.\n      # @option options [Boolean] :extractAllScripts (true)\n      #   If set, when given an HTML input without a fragment identifier, extracts all `script` elements with type `application/ld+json` into an array during expansion.\n      # @raise [JsonLdError]\n      # @yield statement\n      # @yieldparam [RDF::Statement] statement\n      # @return [RDF::Enumerable] set of statements, unless a block is given.\n      def self.toRdf(input, expanded: false, **options)\n        unless block_given?\n          results = []\n          results.extend(RDF::Enumerable)\n          toRdf(input, expanded: expanded, **options) do |stmt|\n            results << stmt\n          end\n          return results\n        end\n\n        options = {\n          extractAllScripts: true\n        }.merge(options)\n\n        # Flatten input to simplify processing\n        flattened_input = API.flatten(input, nil, expanded: expanded, ordered: false, **options)\n\n        API.new(flattened_input, nil, **options) do\n          # 1) Perform the Expansion Algorithm on the JSON-LD input.\n          #    This removes any existing context to allow the given context to be cleanly applied.\n          # log_debug(\".toRdf\") {\"flattened input: #{flattened_input.to_json(JSON_STATE) rescue 'malformed json'}\"}\n\n          # Recurse through input\n          flattened_input.each do |node|\n            item_to_rdf(node) do |statement|\n              next if statement.predicate.node? && !options[:produceGeneralizedRdf]\n\n              # Drop invalid statements (other than IRIs)\n              unless statement.valid_extended?\n                # log_debug(\".toRdf\") {\"drop invalid statement: #{statement.to_nquads}\"}\n                next\n              end\n\n              yield statement\n            end\n          end\n        end\n      end\n\n      ##\n      # Take an ordered list of RDF::Statements and turn them into a JSON-LD document.\n      #\n      # The resulting `Array` is either returned or yielded, if a block is given.\n      #\n      # @param [RDF::Enumerable] input\n      # @param [Boolean] useRdfType (false)\n      #   If set to `true`, the JSON-LD processor will treat `rdf:type` like a normal property instead of using `@type`.\n      # @param [Boolean] useNativeTypes (false) use native representations\n      # @param [Proc] serializer (nil)\n      #   A Serializer instance used for generating the JSON serialization of the result. If absent, the internal Ruby objects are returned, which can be transformed to JSON externally via `#to_json`.\n      #   See {JSON::LD::API.serializer}.\n      # @param  [Hash{Symbol => Object}] options\n      # @option options (see #initialize)\n      # @yield jsonld\n      # @yieldparam [Hash] jsonld\n      #   The JSON-LD document in expanded form\n      # @yieldreturn [Object] returned object\n      # @return [Object, Hash]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the expanded JSON-LD document\n      def self.fromRdf(input, useRdfType: false, useNativeTypes: false, serializer: nil, **options)\n        result = nil\n\n        API.new(nil, nil, **options) do\n          result = from_statements(input,\n            extendedRepresentation: options[:extendedRepresentation],\n            useRdfType: useRdfType,\n            useNativeTypes: useNativeTypes)\n        end\n\n        result = serializer.call(result, **options) if serializer\n        block_given? ? yield(result) : result\n      end\n\n      ##\n      # Uses built-in or provided documentLoader to retrieve a parsed document.\n      #\n      # @param [RDF::URI, String] url\n      # @param [Regexp] allowed_content_types\n      #   A regular expression matching other content types allowed\n      #   beyond types for JSON and HTML.\n      # @param [String, RDF::URI] base\n      #   Location to use as documentUrl instead of `url`.\n      # @option options [Proc] :documentLoader\n      #   The callback of the loader to be used to retrieve remote documents and contexts.\n      # @param [Boolean] extractAllScripts\n      #   If set to `true`, when extracting JSON-LD script elements from HTML, unless a specific fragment identifier is targeted, extracts all encountered JSON-LD script elements using an array form, if necessary.\n      # @param [String] profile\n      #   When the resulting `contentType` is `text/html` or `application/xhtml+xml`, this option determines the profile to use for selecting a JSON-LD script elements.\n      # @param [String] requestProfile\n      #   One or more IRIs to use in the request as a profile parameter.\n      # @param [Boolean] validate (false)\n      #   Allow only appropriate content types\n      # @param [Hash<Symbol => Object>] options\n      # @yield remote_document\n      # @yieldparam [RemoteDocumentRemoteDocument, RDF::Util::File::RemoteDocument] remote_document\n      # @yieldreturn [Object] returned object\n      # @return [Object, RemoteDocument]\n      #   If a block is given, the result of evaluating the block is returned, otherwise, the retrieved remote document and context information unless block given\n      # @raise [JsonLdError]\n      def self.loadRemoteDocument(url,\n                                  allowed_content_types: nil,\n                                  base: nil,\n                                  documentLoader: nil,\n                                  extractAllScripts: false,\n                                  profile: nil,\n                                  requestProfile: nil,\n                                  validate: false,\n                                  **options)\n        documentLoader ||= method(:documentLoader)\n        options = OPEN_OPTS.merge(options)\n        if requestProfile\n          # Add any request profile\n          options[:headers]['Accept'] =\n            options[:headers]['Accept'].sub('application/ld+json,',\n              \"application/ld+json;profile=#{requestProfile}, application/ld+json;q=0.9,\")\n        end\n        documentLoader.call(url, extractAllScripts: extractAllScripts, **options) do |remote_doc|\n          case remote_doc\n          when RDF::Util::File::RemoteDocument\n            # Convert to RemoteDocument\n            context_url = if remote_doc.content_type != 'application/ld+json' &&\n                             (remote_doc.content_type == 'application/json' ||\n                              remote_doc.content_type.to_s.match?(%r{application/\\w+\\+json}))\n              # Get context link(s)\n              # Note, we can't simply use #find_link, as we need to detect multiple\n              links = remote_doc.links.links.select do |link|\n                link.attr_pairs.include?(LINK_REL_CONTEXT)\n              end\n              if links.length > 1\n                raise JSON::LD::JsonLdError::MultipleContextLinkHeaders,\n                  \"expected at most 1 Link header with rel=jsonld:context, got #{links.length}\"\n              end\n              Array(links.first).first\n            end\n\n            # If content-type is not application/ld+json, nor any other +json and a link with rel=alternate and type='application/ld+json' is found, use that instead\n            alternate = !remote_doc.content_type.match?(%r{application/(\\w*\\+)?json}) && remote_doc.links.links.detect do |link|\n              link.attr_pairs.include?(LINK_REL_ALTERNATE) &&\n                link.attr_pairs.include?(LINK_TYPE_JSONLD)\n            end\n\n            remote_doc = if alternate\n              # Load alternate relative to URL\n              loadRemoteDocument(RDF::URI(url).join(alternate.href),\n                extractAllScripts: extractAllScripts,\n                profile: profile,\n                requestProfile: requestProfile,\n                validate: validate,\n                base: base,\n                  **options)\n            else\n              RemoteDocument.new(remote_doc.read,\n                documentUrl: remote_doc.base_uri,\n                contentType: remote_doc.content_type,\n                contextUrl: context_url)\n            end\n          when RemoteDocument\n            # Pass through\n          else\n            raise JSON::LD::JsonLdError::LoadingDocumentFailed,\n              \"unknown result from documentLoader: #{remote_doc.class}\"\n          end\n\n          # Use specified document location\n          remote_doc.documentUrl = base if base\n\n          # Parse any HTML\n          if remote_doc.document.is_a?(String)\n            remote_doc.document = case remote_doc.contentType\n            when 'text/html', 'application/xhtml+xml'\n              load_html(remote_doc.document,\n                url: remote_doc.documentUrl,\n                extractAllScripts: extractAllScripts,\n                profile: profile,\n                        **options) do |base|\n                remote_doc.documentUrl = base\n              end\n            else\n              validate_input(remote_doc.document, url: remote_doc.documentUrl) if validate\n              mj_opts = options.keep_if { |k, v| k != :adapter || MUTLI_JSON_ADAPTERS.include?(v) }\n              MultiJson.load(remote_doc.document, **mj_opts)\n            end\n          end\n\n          if remote_doc.contentType && validate && !(remote_doc.contentType.match?(%r{application/(.+\\+)?json|text/html|application/xhtml\\+xml}) ||\n              (allowed_content_types && remote_doc.contentType.match?(allowed_content_types)))\n            raise IOError, \"url: #{url}, contentType: #{remote_doc.contentType}\"\n          end\n\n          block_given? ? yield(remote_doc) : remote_doc\n        end\n      rescue IOError, MultiJson::ParseError => e\n        raise JSON::LD::JsonLdError::LoadingDocumentFailed, e.message\n      end\n\n      ##\n      # Default document loader.\n      # @param [RDF::URI, String] url\n      # @param [Boolean] extractAllScripts\n      #   If set to `true`, when extracting JSON-LD script elements from HTML, unless a specific fragment identifier is targeted, extracts all encountered JSON-LD script elements using an array form, if necessary.\n      # @param [String] profile\n      #   When the resulting `contentType` is `text/html` or `application/xhtml+xml`, this option determines the profile to use for selecting a JSON-LD script elements.\n      # @param [String] requestProfile\n      #   One or more IRIs to use in the request as a profile parameter.\n      # @param [Hash<Symbol => Object>] options\n      # @yield remote_document\n      # @yieldparam [RemoteDocument, RDF::Util::File::RemoteDocument] remote_document\n      # @raise [IOError]\n      def self.documentLoader(url, extractAllScripts: false, profile: nil, requestProfile: nil, **options, &block)\n        case url\n        when IO, StringIO\n          base_uri = options[:base]\n          base_uri ||= url.base_uri if url.respond_to?(:base_uri)\n          content_type = options[:content_type]\n          content_type ||= url.content_type if url.respond_to?(:content_type)\n          context_url = if url.respond_to?(:links) && url.links &&\n                           (content_type == 'application/json' || content_type.match?(%r{application/(^ld)+json}))\n            link = url.links.find_link(LINK_REL_CONTEXT)\n            link&.href\n          end\n\n          yield(RemoteDocument.new(url.read,\n            documentUrl: base_uri,\n            contentType: content_type,\n            contextUrl: context_url))\n        else\n          RDF::Util::File.open_file(url, **options, &block)\n        end\n      end\n\n      # Add class method aliases for backwards compatibility\n      class << self\n        alias toRDF toRdf\n        alias fromRDF fromRdf\n      end\n\n      ##\n      # Hash of recognized script types and the loaders that decode them\n      # into a hash or array of hashes.\n      #\n      # @return Hash{type, Proc}\n      SCRIPT_LOADERS = {\n        'application/ld+json' => ->(content, url:, **options) do\n            validate_input(content, url: url) if options[:validate]\n            mj_opts = options.keep_if { |k, v| k != :adapter || MUTLI_JSON_ADAPTERS.include?(v) }\n            MultiJson.load(content, **mj_opts)\n          end\n      }\n\n      ##\n      # Adds a loader for some specific content type\n      #\n      # @param [String] type\n      # @param [Proc] loader\n      def self.add_script_loader(type, loader)\n        SCRIPT_LOADERS[type] = loader\n      end\n\n      ##\n      # Load one or more script tags from an HTML source.\n      # Unescapes and uncomments input, returns the internal representation\n      # Yields document base\n      # @param [String] input\n      # @param [String] url   Original URL\n      # @param [:nokogiri, :rexml] library (nil)\n      # @param [Boolean] extractAllScripts (false)\n      # @param [Boolean] profile (nil) Optional priortized profile when loading a single script by type.\n      # @param [Hash{Symbol => Object}] options\n      def self.load_html(input, url:,\n                         library: nil,\n                         extractAllScripts: false,\n                         profile: nil,\n                         **options)\n\n        if input.is_a?(String)\n          library ||= begin\n            require 'nokogiri'\n            :nokogiri\n          rescue LoadError\n            :rexml\n          end\n          require \"json/ld/html/#{library}\"\n\n          # Parse HTML using the appropriate library\n          implementation = case library\n          when :nokogiri then Nokogiri\n          when :rexml then REXML\n          end\n          extend(implementation)\n\n          input = begin\n            send(\"initialize_html_#{library}\".to_sym, input, **options)\n          rescue StandardError\n            raise JSON::LD::JsonLdError::LoadingDocumentFailed, \"Malformed HTML document: #{$ERROR_INFO.message}\"\n          end\n\n          # Potentially update options[:base]\n          if (html_base = input.at_xpath(\"/html/head/base/@href\"))\n            base = RDF::URI(url) if url\n            html_base = RDF::URI(html_base)\n            html_base = base.join(html_base) if base\n            yield html_base\n          end\n        end\n\n        url = RDF::URI.parse(url)\n        if url.fragment\n          id = CGI.unescape(url.fragment)\n          # Find script with an ID based on that fragment.\n          element = input.at_xpath(\"//script[@id='#{id}']\")\n          raise JSON::LD::JsonLdError::LoadingDocumentFailed, \"No script tag found with id=#{id}\" unless element\n\n          script_type = SCRIPT_LOADERS.keys.detect {|type| element.attributes['type'].to_s.start_with?(type)}\n          unless script_type\n            raise JSON::LD::JsonLdError::LoadingDocumentFailed,\n              \"Script tag has type=#{element.attributes['type']}\"\n          end\n\n          loader = SCRIPT_LOADERS[script_type]\n          loader.call(element.inner_html, url: url, **options)\n        elsif extractAllScripts\n          res = []\n\n          SCRIPT_LOADERS.each do |type, loader|\n            elements = if profile\n              es = input.xpath(\"//script[starts-with(@type, '#{type};profile=#{profile}')]\")\n              # If no profile script, just take a single script without profile\n              es = [input.at_xpath(\"//script[starts-with(@type, '#{type}')]\")].compact if es.empty?\n              es\n            else\n              input.xpath(\"//script[starts-with(@type, '#{type}')]\")\n            end\n            elements.each do |element|\n              content = element.inner_html\n              r = loader.call(content, url: url, extractAllScripts: true, **options)\n              if r.is_a?(Hash)\n                res << r\n              elsif r.is_a?(Array)\n                res.concat(r)\n              end\n            end\n          end\n          res\n        else\n          # Find the first script with a known type\n          script_type, element = nil, nil\n          SCRIPT_LOADERS.keys.each do |type|\n            next if script_type # already found the type\n            element = input.at_xpath(\"//script[starts-with(@type, '#{type};profile=#{profile}')]\") if profile\n            element ||= input.at_xpath(\"//script[starts-with(@type, '#{type}')]\")\n            script_type = type if element\n          end\n          unless script_type\n            raise JSON::LD::JsonLdError::LoadingDocumentFailed, \"No script tag found\" unless element\n          end\n\n          content = element.inner_html\n          SCRIPT_LOADERS[script_type].call(content, url: url, **options)\n        end\n      rescue MultiJson::ParseError => e\n        raise JSON::LD::JsonLdError::InvalidScriptElement, e.message\n      end\n\n      ##\n      # The default serializer for serialzing Ruby Objects to JSON.\n      #\n      # Defaults to `MultiJson.dump`\n      #\n      # @param [Object] object\n      # @param [Array<Object>] args\n      #   other arguments that may be passed for some specific implementation.\n      # @param [Hash<Symbol, Object>] options\n      #   options passed from the invoking context.\n      # @option options [Object] :serializer_opts (JSON_STATE)\n      def self.serializer(object, *_args, **options)\n        serializer_opts = options.fetch(:serializer_opts, JSON_STATE)\n        MultiJson.dump(object, serializer_opts)\n      end\n\n      ##\n      # Validate JSON using JsonLint, if loaded\n\n      def self.validate_input(input, url:)\n        return unless defined?(JsonLint)\n\n        jsonlint = JsonLint::Linter.new\n        input = StringIO.new(input) unless input.respond_to?(:read)\n        unless jsonlint.check_stream(input)\n          raise JsonLdError::LoadingDocumentFailed, \"url: #{url}\\n\" + jsonlint.errors[''].join(\"\\n\")\n        end\n\n        input.rewind\n      end\n\n      ##\n      # A {RemoteDocument} is returned from a {documentLoader}.\n      class RemoteDocument\n        # The final URL of the loaded document. This is important to handle HTTP redirects properly.\n        # @return [String]\n        attr_accessor :documentUrl\n\n        # The Content-Type of the loaded document, exclusive of any optional parameters.\n        # @return [String]\n        attr_reader :contentType\n\n        # @return [String]\n        #   The URL of a remote context as specified by an HTTP Link header with rel=`http://www.w3.org/ns/json-ld#context`\n        attr_accessor :contextUrl\n\n        # The parsed retrieved document.\n        # @return [Array<Hash>, Hash]\n        attr_accessor :document\n\n        # The value of any profile parameter retrieved as part of the original contentType.\n        # @return [String]\n        attr_accessor :profile\n\n        # @param [RDF::Util::File::RemoteDocument] document\n        # @param [String] documentUrl\n        #   The final URL of the loaded document. This is important to handle HTTP redirects properly.\n        # @param [String] contentType\n        #   The Content-Type of the loaded document, exclusive of any optional parameters.\n        # @param [String] contextUrl\n        #   The URL of a remote context as specified by an HTTP Link header with rel=`http://www.w3.org/ns/json-ld#context`\n        # @param [String] profile\n        #   The value of any profile parameter retrieved as part of the original contentType.\n        # @option options [Hash{Symbol => Object}] options\n        def initialize(document, documentUrl: nil, contentType: nil, contextUrl: nil, profile: nil, **options)\n          @document = document\n          @documentUrl = documentUrl || options[:base_uri]\n          @contentType = contentType || options[:content_type]\n          @contextUrl = contextUrl\n          @profile = profile\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/compact.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    module Compact\n      include Utils\n\n      # The following constant is used to reduce object allocations in #compact below\n      CONTAINER_MAPPING_LANGUAGE_INDEX_ID_TYPE = Set.new(%w[@language @index @id @type]).freeze\n      EXPANDED_PROPERTY_DIRECTION_INDEX_LANGUAGE_VALUE = %w[@direction @index @language @value].freeze\n\n      ##\n      # This algorithm compacts a JSON-LD document, such that the given context is applied. This must result in shortening any applicable IRIs to terms or compact IRIs, any applicable keywords to keyword aliases, and any applicable JSON-LD values expressed in expanded form to simple values such as strings or numbers.\n      #\n      # @param [Array, Hash] element\n      # @param [String, RDF::URI] base (nil)\n      #   Ensure output objects have keys ordered properly\n      # @param [String] property (nil)\n      #   Extra validatation\n      # @return [Array, Hash]\n      def compact(element,\n                  base: nil,\n                  property: nil,\n                  log_depth: nil)\n        # log_debug(\"compact\", depth: log_depth.to_i) {\"element: #{element.inspect}, ec: #{context.inspect}\"}\n\n        # If the term definition for active property itself contains a context, use that for compacting values.\n        input_context = context\n\n        case element\n        when Array\n          # log_debug(\"\") {\"Array #{element.inspect}\"}\n          result = element.map do |item|\n            compact(item, base: base, property: property, log_depth: log_depth.to_i + 1)\n          end.compact\n\n          # If element has a single member and the active property has no\n          # @container mapping to @list or @set, the compacted value is that\n          # member; otherwise the compacted value is element\n          if result.length == 1 &&\n             !context.as_array?(property) && @options[:compactArrays]\n            # log_debug(\"=> extract single element\", depth: log_depth.to_i) {result.first.inspect}\n            result.first\n          else\n            # log_debug(\"=> array result\", depth: log_depth.to_i) {result.inspect}\n            result\n          end\n        when Hash\n          # Otherwise element is a JSON object.\n\n          # @null objects are used in framing\n          return nil if element.key?('@null')\n\n          # Revert any previously type-scoped (non-preserved) context\n          if context.previous_context && !element.key?('@value') && element.keys != %w[@id]\n            # log_debug(\"revert ec\", depth: log_depth.to_i) {\"previous context: #{context.previous_context.inspect}\"}\n            self.context = context.previous_context\n          end\n\n          # Look up term definintions from property using the original type-scoped context, if it exists, but apply them to the now current previous context\n          td = input_context.term_definitions[property] if property\n          if td && !td.context.nil?\n            self.context = context.parse(td.context,\n              override_protected: true)\n            # log_debug(\"prop-scoped\", depth: log_depth.to_i) {\"context: #{self.context.inspect}\"}\n          end\n\n          if (element.key?('@id') || element.key?('@value')) && !element.key?('@annotation')\n            result = context.compact_value(property, element, base: @options[:base])\n            if !result.is_a?(Hash) || context.coerce(property) == '@json'\n              # log_debug(\"\", depth: log_depth.to_i) {\"=> scalar result: #{result.inspect}\"}\n              return result\n            end\n          end\n\n          # If expanded property is @list and we're contained within a list container, recursively compact this item to an array\n          if list?(element) && context.container(property).include?('@list')\n            return compact(element['@list'], base: base,\n              property: property,\n              log_depth: log_depth.to_i + 1)\n          end\n\n          inside_reverse = property == '@reverse'\n          result = {}\n          nest_result = nil\n\n          # Apply any context defined on an alias of @type\n          # If key is @type and any compacted value is a term having a local context, overlay that context.\n          Array(element['@type'])\n            .map { |expanded_type| context.compact_iri(expanded_type, vocab: true) }\n            .sort\n            .each do |term|\n            term_context = input_context.term_definitions[term].context if input_context.term_definitions[term]\n            self.context = context.parse(term_context, propagate: false) unless term_context.nil?\n            # log_debug(\"type-scoped\", depth: log_depth.to_i) {\"context: #{self.context.inspect}\"}\n          end\n\n          element.keys.opt_sort(ordered: @options[:ordered]).each do |expanded_property|\n            expanded_value = element[expanded_property]\n            # log_debug(\"\", depth: log_depth.to_i) {\"#{expanded_property}: #{expanded_value.inspect}\"}\n\n            if expanded_property == '@id'\n              compacted_value = as_array(expanded_value).map do |expanded_id|\n                if node?(expanded_id) && @options[:rdfstar]\n                  # This can only really happen for valid RDF-star\n                  compact(expanded_id, base: base,\n                    property: '@id',\n                    log_depth: log_depth.to_i + 1)\n                else\n                  context.compact_iri(expanded_id, base: @options[:base])\n                end\n              end\n\n              kw_alias = context.compact_iri('@id', vocab: true)\n              as_array = compacted_value.length > 1\n              compacted_value = compacted_value.first unless as_array\n              result[kw_alias] = compacted_value\n              next\n            end\n\n            if expanded_property == '@type'\n              compacted_value = Array(expanded_value).map do |expanded_type|\n                input_context.compact_iri(expanded_type, vocab: true)\n              end\n\n              kw_alias = context.compact_iri('@type', vocab: true)\n              as_array = compacted_value.length > 1 ||\n                         (context.as_array?(kw_alias) &&\n                          !value?(element) &&\n                          context.processingMode('json-ld-1.1'))\n              add_value(result, kw_alias, compacted_value, property_is_array: as_array)\n              next\n            end\n\n            if expanded_property == '@reverse'\n              compacted_value = compact(expanded_value, base: base,\n                property: '@reverse',\n                log_depth: log_depth.to_i + 1)\n              # log_debug(\"@reverse\", depth: log_depth.to_i) {\"compacted_value: #{compacted_value.inspect}\"}\n              # handle double-reversed properties\n              compacted_value.each do |prop, value|\n                next unless context.reverse?(prop)\n\n                add_value(result, prop, value,\n                  property_is_array: context.as_array?(prop) || !@options[:compactArrays])\n                compacted_value.delete(prop)\n              end\n\n              unless compacted_value.empty?\n                al = context.compact_iri('@reverse', vocab: true)\n                # log_debug(\"\", depth: log_depth.to_i) {\"remainder: #{al} => #{compacted_value.inspect}\"}\n                result[al] = compacted_value\n              end\n              next\n            end\n\n            if expanded_property == '@preserve'\n              # Compact using `property`\n              compacted_value = compact(expanded_value, base: base,\n                property: property,\n                log_depth: log_depth.to_i + 1)\n              # log_debug(\"@preserve\", depth: log_depth.to_i) {\"compacted_value: #{compacted_value.inspect}\"}\n\n              result['@preserve'] = compacted_value unless compacted_value.is_a?(Array) && compacted_value.empty?\n              next\n            end\n\n            if expanded_property == '@index' && context.container(property).include?('@index')\n              # log_debug(\"@index\", depth: log_depth.to_i) {\"drop @index\"}\n              next\n            end\n\n            # Otherwise, if expanded property is @direction, @index, @value, or @language:\n            if EXPANDED_PROPERTY_DIRECTION_INDEX_LANGUAGE_VALUE.include?(expanded_property)\n              al = context.compact_iri(expanded_property, vocab: true)\n              # log_debug(expanded_property, depth: log_depth.to_i) {\"#{al} => #{expanded_value.inspect}\"}\n              result[al] = expanded_value\n              next\n            end\n\n            if expanded_value.empty?\n              item_active_property =\n                context.compact_iri(expanded_property,\n                  value: expanded_value,\n                  vocab: true,\n                  reverse: inside_reverse)\n\n              if (nest_prop = context.nest(item_active_property))\n                result[nest_prop] ||= {}\n                add_value(result[nest_prop], item_active_property, [],\n                  property_is_array: true)\n              else\n                add_value(result, item_active_property, [],\n                  property_is_array: true)\n              end\n            end\n\n            # At this point, expanded value must be an array due to the Expansion algorithm.\n            expanded_value.each do |expanded_item|\n              item_active_property =\n                context.compact_iri(expanded_property,\n                  value: expanded_item,\n                  vocab: true,\n                  reverse: inside_reverse)\n\n              nest_result = if (nest_prop = context.nest(item_active_property))\n                # FIXME??: It's possible that nest_prop will be used both for nesting, and for values of @nest\n                result[nest_prop] ||= {}\n              else\n                result\n              end\n\n              container = context.container(item_active_property)\n              as_array = !@options[:compactArrays] || context.as_array?(item_active_property)\n\n              value = if list?(expanded_item)\n                expanded_item['@list']\n              elsif graph?(expanded_item)\n                expanded_item['@graph']\n              else\n                expanded_item\n              end\n\n              compacted_item = compact(value, base: base,\n                property: item_active_property,\n                log_depth: log_depth.to_i + 1)\n              # log_debug(\"\", depth: log_depth.to_i) {\" => compacted key: #{item_active_property.inspect} for #{compacted_item.inspect}\"}\n\n              # handle @list\n              if list?(expanded_item)\n                compacted_item = as_array(compacted_item)\n                if container.include?('@list')\n                  add_value(nest_result, item_active_property, compacted_item,\n                    value_is_array: true, allow_duplicate: true)\n                  next\n                else\n                  al = context.compact_iri('@list', vocab: true)\n                  compacted_item = { al => compacted_item }\n                  if expanded_item.key?('@index')\n                    key = context.compact_iri('@index', vocab: true)\n                    compacted_item[key] = expanded_item['@index']\n                  end\n                end\n              end\n\n              # Graph object compaction cases:\n              if graph?(expanded_item)\n                if container.include?('@graph') &&\n                   (container.include?('@id') || (container.include?('@index') && simple_graph?(expanded_item)))\n                  # container includes @graph and @id\n                  map_object = nest_result[item_active_property] ||= {}\n                  # If there is no @id, create a blank node identifier to use as an index\n                  map_key = if container.include?('@id') && expanded_item['@id']\n                    context.compact_iri(expanded_item['@id'], base: @options[:base])\n                  elsif container.include?('@index') && expanded_item['@index']\n                    context.compact_iri(expanded_item['@index'], vocab: true)\n                  else\n                    context.compact_iri('@none', vocab: true)\n                  end\n                  add_value(map_object, map_key, compacted_item,\n                    property_is_array: as_array)\n                elsif container.include?('@graph') && simple_graph?(expanded_item)\n                  # container includes @graph but not @id or @index and value is a simple graph object\n                  if compacted_item.is_a?(Array) && compacted_item.length > 1\n                    # Mutple objects in the same graph can't be represented directly, as they would be interpreted as two different graphs. Need to wrap in @included.\n                    included_key = context.compact_iri('@included', vocab: true)\n                    compacted_item = { included_key => compacted_item }\n                  end\n                  # Drop through, where compacted_item will be added\n                  add_value(nest_result, item_active_property, compacted_item,\n                    property_is_array: as_array)\n                else\n                  # container does not include @graph or otherwise does not match one of the previous cases, redo compacted_item\n                  al = context.compact_iri('@graph', vocab: true)\n                  compacted_item = { al => compacted_item }\n                  if expanded_item['@id']\n                    al = context.compact_iri('@id', vocab: true)\n                    compacted_item[al] = context.compact_iri(expanded_item['@id'], vocab: false)\n                  end\n                  if expanded_item.key?('@index')\n                    key = context.compact_iri('@index', vocab: true)\n                    compacted_item[key] = expanded_item['@index']\n                  end\n                  add_value(nest_result, item_active_property, compacted_item,\n                    property_is_array: as_array)\n                end\n              elsif container.intersect?(CONTAINER_MAPPING_LANGUAGE_INDEX_ID_TYPE) && !container.include?('@graph')\n                map_object = nest_result[item_active_property] ||= {}\n                c = container.first\n                container_key = context.compact_iri(c, vocab: true)\n                compacted_item = if container.include?('@id')\n                  map_key = compacted_item[container_key]\n                  compacted_item.delete(container_key)\n                  compacted_item\n                elsif container.include?('@index')\n                  index_key = context.term_definitions[item_active_property].index || '@index'\n                  if index_key == '@index'\n                    map_key = expanded_item['@index']\n                  else\n                    index_key = context.expand_iri(index_key, vocab: true)\n                    container_key = context.compact_iri(index_key, vocab: true)\n                    map_key, *others = Array(compacted_item.is_a?(Hash) && compacted_item[container_key])\n                    if map_key.is_a?(String)\n                      case others.length\n                      when 0 then compacted_item.delete(container_key) if compacted_item.is_a?(Hash)\n                      when 1 then compacted_item[container_key] = others.first\n                      else        compacted_item[container_key] = others\n                      end\n                    else\n                      map_key = context.compact_iri('@none', vocab: true)\n                    end\n                  end\n                  # Note, if compacted_item is a node reference and key is @id-valued, then this could be compacted further.\n                  compacted_item\n                elsif container.include?('@language')\n                  map_key = expanded_item['@language']\n                  value?(expanded_item) ? expanded_item['@value'] : compacted_item\n                elsif container.include?('@type')\n                  map_key, *types = Array(compacted_item.is_a?(Hash) && compacted_item[container_key])\n                  case types.length\n                  when 0 then compacted_item.delete(container_key) if compacted_item.is_a?(Hash)\n                  when 1 then compacted_item[container_key] = types.first\n                  else        compacted_item[container_key] = types\n                  end\n\n                  # if compacted_item contains a single entry who's key maps to @id, then recompact the item without @type\n                  if compacted_item.is_a?(Hash) && compacted_item.keys.length == 1 && expanded_item.key?('@id')\n                    compacted_item = compact({ '@id' => expanded_item['@id'] },\n                      base: base,\n                      property: item_active_property,\n                      log_depth: log_depth.to_i + 1)\n                  end\n                  compacted_item\n                end\n                map_key ||= context.compact_iri('@none', vocab: true)\n                add_value(map_object, map_key, compacted_item,\n                  property_is_array: as_array)\n              else\n                add_value(nest_result, item_active_property, compacted_item,\n                  property_is_array: as_array)\n              end\n            end\n          end\n\n          result\n        else\n          # For other types, the compacted value is the element value\n          # log_debug(\"compact\", depth: log_depth.to_i) {element.class.to_s}\n          element\n        end\n      ensure\n        self.context = input_context\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/conneg.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'English'\n\nrequire 'rack'\nrequire 'link_header'\n\nmodule JSON\n  module LD\n    ##\n    # Rack middleware for JSON-LD content negotiation.\n    #\n    # Uses HTTP Content Negotiation to serialize `Array` and `Hash` results as JSON-LD using 'profile' accept-params to invoke appropriate JSON-LD API methods.\n    #\n    # Allows black-listing and white-listing of two-part profiles where the second part denotes a URL of a _context_ or _frame_. (See {JSON::LD::Writer.accept?})\n    #\n    # Works along with `rack-linkeddata` for serializing data which is not in the form of an `RDF::Repository`.\n    #\n    #\n    # @example\n    #     use JSON::LD::Rack\n    #\n    # @see https://www.w3.org/TR/json-ld11/#iana-considerations\n    # @see https://www.rubydoc.info/github/rack/rack/master/file/SPEC\n    class ContentNegotiation\n      VARY = { 'Vary' => 'Accept' }.freeze\n\n      # @return [#call]\n      attr_reader :app\n\n      ##\n      # * Registers JSON::LD::Rack, suitable for Sinatra application\n      # * adds helpers\n      #\n      # @param  [Sinatra::Base] app\n      # @return [void]\n      def self.registered(app)\n        options = {}\n        app.use(JSON::LD::Rack, **options)\n      end\n\n      def initialize(app)\n        @app = app\n      end\n\n      ##\n      # Handles a Rack protocol request.\n      # Parses Accept header to find appropriate mime-type and sets content_type accordingly.\n      #\n      # @param  [Hash{String => String}] env\n      # @return [Array(Integer, Hash, #each)] Status, Headers and Body\n      # @see    https://rubydoc.info/github/rack/rack/file/SPEC\n      def call(env)\n        response = app.call(env)\n        body = response[2].respond_to?(:body) ? response[2].body : response[2]\n        case body\n        when Array, Hash\n          response[2] = body # Put it back in the response, it might have been a proxy\n          serialize(env, *response)\n        else response\n        end\n      end\n\n      ##\n      # Serializes objects as JSON-LD. Defaults to expanded form, other forms\n      # determined by presense of `profile` in accept-parms.\n      #\n      # @param  [Hash{String => String}] env\n      # @param  [Integer]                status\n      # @param  [Hash{String => Object}] headers\n      # @param  [RDF::Enumerable]        body\n      # @return [Array(Integer, Hash, #each)] Status, Headers and Body\n      def serialize(env, status, headers, body)\n        # This will only return json-ld content types, possibly with parameters\n        content_types = parse_accept_header(env['HTTP_ACCEPT'] || 'application/ld+json')\n        content_types = content_types.select do |content_type|\n          _, *params = content_type.split(';').map(&:strip)\n          accept_params = params.inject({}) do |memo, pv|\n            p, v = pv.split('=').map(&:strip)\n            memo.merge(p.downcase.to_sym => v.sub(/^[\"']?([^\"']*)[\"']?$/, '\\1'))\n          end\n          JSON::LD::Writer.accept?(accept_params)\n        end\n        if content_types.empty?\n          not_acceptable(\"No appropriate combinaion of media-type and parameters found\")\n        else\n          ct, *params = content_types.first.split(';').map(&:strip)\n          accept_params = params.inject({}) do |memo, pv|\n            p, v = pv.split('=').map(&:strip)\n            memo.merge(p.downcase.to_sym => v.sub(/^[\"']?([^\"']*)[\"']?$/, '\\1'))\n          end\n\n          # Determine API method from profile\n          profile = accept_params[:profile].to_s.split\n\n          # Get context from Link header\n          links = LinkHeader.parse(env['HTTP_LINK'])\n          context = begin\n            links.find_link(['rel', JSON_LD_NS + \"context\"]).href\n          rescue StandardError\n            nil\n          end\n          frame = begin\n            links.find_link(['rel', JSON_LD_NS + \"frame\"]).href\n          rescue StandardError\n            nil\n          end\n\n          if profile.include?(JSON_LD_NS + \"framed\") && frame.nil?\n            return not_acceptable(\"framed profile without a frame\")\n          end\n\n          # accept? already determined that there are appropriate contexts\n          # If profile also includes a URI which is not a namespace, use it for compaction.\n          context ||= Writer.default_context if profile.include?(JSON_LD_NS + \"compacted\")\n\n          result = if profile.include?(JSON_LD_NS + \"flattened\")\n            API.flatten(body, context)\n          elsif profile.include?(JSON_LD_NS + \"framed\")\n            API.frame(body, frame)\n          elsif context\n            API.compact(body, context)\n          elsif profile.include?(JSON_LD_NS + \"expanded\")\n            API.expand(body)\n          else\n            body\n          end\n\n          headers = headers.merge(VARY).merge('Content-Type' => ct)\n          [status, headers, [result.to_json]]\n        end\n      rescue StandardError\n        http_error(500, $ERROR_INFO.message)\n      end\n\n      protected\n\n      ##\n      # Parses an HTTP `Accept` header, returning an array of MIME content\n      # types ordered by the precedence rules defined in HTTP/1.1 §14.1.\n      #\n      # @param  [String, #to_s] header\n      # @return [Array<String>]\n      # @see    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1\n      def parse_accept_header(header)\n        entries = header.to_s.split(',')\n        entries = entries\n          .map { |e| accept_entry(e) }\n          .sort_by(&:last)\n          .map(&:first)\n        entries.map { |e| find_content_type_for_media_range(e) }.compact\n      end\n\n      # Returns an array of quality, number of '*' in content-type, and number of non-'q' parameters\n      def accept_entry(entry)\n        type, *options = entry.split(';').map(&:strip)\n        quality = 0 # we sort smallest first\n        options.delete_if { |e| quality = 1 - e[2..].to_f if e.start_with? 'q=' }\n        [options.unshift(type).join(';'), [quality, type.count('*'), 1 - options.size]]\n      end\n\n      ##\n      # Returns a content type appropriate for the given `media_range`,\n      # returns `nil` if `media_range` contains a wildcard subtype\n      # that is not mapped.\n      #\n      # @param  [String, #to_s] media_range\n      # @return [String, nil]\n      def find_content_type_for_media_range(media_range)\n        media_range = media_range.sub('*/*', 'application/ld+json') if media_range.to_s.start_with?('*/*')\n        if media_range.to_s.start_with?('application/*')\n          media_range = media_range.sub('application/*',\n            'application/ld+json')\n        end\n        if media_range.to_s.start_with?('application/json')\n          media_range = media_range.sub('application/json',\n            'application/ld+json')\n        end\n\n        media_range.start_with?('application/ld+json') ? media_range : nil\n      end\n\n      ##\n      # Outputs an HTTP `406 Not Acceptable` response.\n      #\n      # @param  [String, #to_s] message\n      # @return [Array(Integer, Hash, #each)]\n      def not_acceptable(message = nil)\n        http_error(406, message, VARY)\n      end\n\n      ##\n      # Outputs an HTTP `4xx` or `5xx` response.\n      #\n      # @param  [Integer, #to_i]         code\n      # @param  [String, #to_s]          message\n      # @param  [Hash{String => String}] headers\n      # @return [Array(Integer, Hash, #each)]\n      def http_error(code, message = nil, headers = {})\n        message = [code, Rack::Utils::HTTP_STATUS_CODES[code]].join(' ') +\n                  (message.nil? ? \"\\n\" : \" (#{message})\\n\")\n        [code, { 'Content-Type' => \"text/plain\" }.merge(headers), [message]]\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/context.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'json'\nrequire 'bigdecimal'\nrequire 'set'\nrequire 'rdf/util/cache'\n\nmodule JSON\n  module LD\n    class Context\n      include Utils\n      include RDF::Util::Logger\n\n      ##\n      # Preloaded contexts.\n      # To avoid runtime context parsing and downloading, contexts may be pre-loaded by implementations.\n      # @return [Hash{Symbol => Context}]\n      PRELOADED = {}\n\n      # Initial contexts, defined on first access\n      INITIAL_CONTEXTS = {}\n\n      ##\n      # Defines the maximum number of interned URI references that can be held\n      # cached in memory at any one time.\n      CACHE_SIZE = 100 # unlimited by default\n\n      class << self\n        ##\n        # Add preloaded context. In the block form, the context is lazy evaulated on first use.\n        # @param [String, RDF::URI] url\n        # @param [Context] context (nil)\n        # @yieldreturn [Context]\n        def add_preloaded(url, context = nil, &block)\n          PRELOADED[url.to_s.freeze] = context || block\n        end\n\n        ##\n        # Alias a previousliy loaded context\n        # @param [String, RDF::URI] a\n        # @param [String, RDF::URI] url\n        def alias_preloaded(a, url)\n          PRELOADED[a.to_s.freeze] = PRELOADED[url.to_s.freeze]\n        end\n      end\n\n      begin\n        # Attempt to load this to avoid unnecessary context fetches\n        require 'json/ld/preloaded'\n      rescue LoadError\n        # Silently allow this to fail\n      end\n\n      # The base.\n      #\n      # @return [RDF::URI] Current base IRI, used for expanding relative IRIs.\n      attr_reader :base\n\n      # @return [RDF::URI] base IRI of the context, if loaded remotely.\n      attr_accessor :context_base\n\n      # Term definitions\n      # @return [Hash{String => TermDefinition}]\n      attr_reader :term_definitions\n\n      # @return [Hash{RDF::URI => String}] Reverse mappings from IRI to term only for terms, not CURIEs XXX\n      attr_accessor :iri_to_term\n\n      # Previous definition for this context. This is used for rolling back type-scoped contexts.\n      # @return [Context]\n      attr_accessor :previous_context\n\n      # Context is property-scoped\n      # @return [Boolean]\n      attr_accessor :property_scoped\n\n      # Default language\n      #\n      # This adds a language to plain strings that aren't otherwise coerced\n      # @return [String]\n      attr_reader :default_language\n\n      # Default direction\n      #\n      # This adds a direction to plain strings that aren't otherwise coerced\n      # @return [\"lrt\", \"rtl\"]\n      attr_reader :default_direction\n\n      # Default vocabulary\n      #\n      # Sets the default vocabulary used for expanding terms which\n      # aren't otherwise absolute IRIs\n      # @return [RDF::URI]\n      attr_reader :vocab\n\n      # @return [Hash{Symbol => Object}] Global options used in generating IRIs\n      attr_accessor :options\n\n      # @return [BlankNodeNamer]\n      attr_accessor :namer\n\n      ##\n      # Create a new context by parsing a context.\n      #\n      # @see #initialize\n      # @see #parse\n      # @param [String, #read, Array, Hash, Context] local_context\n      # @param [String, #to_s] base (nil)\n      #   The Base IRI to use when expanding the document. This overrides the value of `input` if it is a _IRI_. If not specified and `input` is not an _IRI_, the base IRI defaults to the current document IRI if in a browser context, or the empty string if there is no document context.\n      # @param [Boolean] override_protected (false)\n      #   Protected terms may be cleared.\n      # @param [Boolean] propagate (true)\n      #   If false, retains any previously defined term, which can be rolled back when the descending into a new node object changes.\n      # @raise [JsonLdError]\n      #   on a remote context load error, syntax error, or a reference to a term which is not defined.\n      # @return [Context]\n      def self.parse(local_context,\n                     base: nil,\n                     override_protected: false,\n                     propagate: true,\n                     **options)\n        c = new(**options)\n        if local_context.respond_to?(:empty?) && local_context.empty?\n          c\n        else\n          c.parse(local_context,\n            base: base,\n            override_protected: override_protected,\n            propagate: propagate)\n        end\n      end\n\n      ##\n      # Class-level cache used for retaining parsed remote contexts.\n      #\n      # @return [RDF::Util::Cache]\n      # @private\n      def self.cache\n        @cache ||= RDF::Util::Cache.new(CACHE_SIZE)\n      end\n\n      ##\n      # Class-level cache inverse contexts.\n      #\n      # @return [RDF::Util::Cache]\n      # @private\n      def self.inverse_cache\n        @inverse_cache ||= RDF::Util::Cache.new(CACHE_SIZE)\n      end\n\n      ##\n      # @private\n      # Allow caching of well-known contexts\n      def self.new(**options)\n        if (options.keys - %i[\n          compactArrays\n          documentLoader\n          extractAllScripts\n          ordered\n          processingMode\n          validate\n        ]).empty?\n          # allow caching\n          key = options.hash\n          INITIAL_CONTEXTS[key] ||= begin\n            context = JSON::LD::Context.allocate\n            context.send(:initialize, **options)\n            context.freeze\n            context.term_definitions.freeze\n            context\n          end\n        else\n          # Don't try to cache\n          context = JSON::LD::Context.allocate\n          context.send(:initialize, **options)\n          context\n        end\n      end\n\n      ##\n      # Create new evaluation context\n      # @param [Hash] options\n      # @option options [Hash{Symbol => String}] :prefixes\n      #   See `RDF::Reader#initialize`\n      # @option options [String, #to_s] :vocab\n      #   Initial value for @vocab\n      # @option options [String, #to_s] :language\n      #   Initial value for @langauge\n      # @yield [ec]\n      # @yieldparam [Context]\n      # @return [Context]\n      def initialize(**options)\n        @processingMode = 'json-ld-1.0' if options[:processingMode] == 'json-ld-1.0'\n        @term_definitions = {}\n        @iri_to_term = {\n          RDF.to_uri.to_s => \"rdf\",\n          RDF::XSD.to_uri.to_s => \"xsd\"\n        }\n        @namer = BlankNodeMapper.new(\"t\")\n\n        @options = options\n\n        # Load any defined prefixes\n        (options[:prefixes] || {}).each_pair do |k, v|\n          next if k.nil?\n\n          @iri_to_term[v.to_s] = k\n          @term_definitions[k.to_s] = TermDefinition.new(k, id: v.to_s, simple: true, prefix: true)\n        end\n\n        self.vocab = options[:vocab] if options[:vocab]\n        self.default_language = options[:language] if /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(options[:language])\n        @term_definitions = options[:term_definitions] if options[:term_definitions]\n\n        # log_debug(\"init\") {\"iri_to_term: #{iri_to_term.inspect}\"}\n\n        yield(self) if block_given?\n      end\n\n      # Create an Evaluation Context\n      #\n      # When processing a JSON-LD data structure, each processing rule is applied using information provided by the active context. This section describes how to produce an active context.\n      #\n      # The active context contains the active term definitions which specify how properties and values have to be interpreted as well as the current base IRI, the vocabulary mapping and the default language. Each term definition consists of an IRI mapping, a boolean flag reverse property, an optional type mapping or language mapping, and an optional container mapping. A term definition can not only be used to map a term to an IRI, but also to map a term to a keyword, in which case it is referred to as a keyword alias.\n      #\n      # When processing, the active context is initialized without any term definitions, vocabulary mapping, or default language. If a local context is encountered during processing, a new active context is created by cloning the existing active context. Then the information from the local context is merged into the new active context. Given that local contexts may contain references to remote contexts, this includes their retrieval.\n      #\n      #\n      # @param [String, #read, Array, Hash, Context] local_context\n      # @param [String, #to_s] base\n      #   The Base IRI to use when expanding the document. This overrides the value of `input` if it is a _IRI_. If not specified and `input` is not an _IRI_, the base IRI defaults to the current document IRI if in a browser context, or the empty string if there is no document context.\n      # @param [Boolean] override_protected Protected terms may be cleared.\n      # @param [Boolean] propagate (true)\n      #   If false, retains any previously defined term, which can be rolled back when the descending into a new node object changes.\n      # @param [Array<String>] remote_contexts ([])\n      # @param [Boolean] validate_scoped (true).\n      #   Validate scoped context, loading if necessary.\n      #   If false, do not load scoped contexts.\n      # @raise [JsonLdError]\n      #   on a remote context load error, syntax error, or a reference to a term which is not defined.\n      # @return [Context]\n      # @see https://www.w3.org/TR/json-ld11-api/index.html#context-processing-algorithm\n      def parse(local_context,\n                base: nil,\n                override_protected: false,\n                propagate: true,\n                remote_contexts: [],\n                validate_scoped: true)\n        result = dup\n        # Early check for @propagate, which can only appear in a local context\n        propagate = local_context.is_a?(Hash) ? local_context.fetch('@propagate', propagate) : propagate\n        result.previous_context ||= result.dup unless propagate\n\n        local_context = as_array(local_context)\n\n        log_depth do\n          local_context.each do |context|\n            case context\n            when nil, false\n              # 3.1 If the `override_protected` is  false, and the active context contains protected terms, an error is raised.\n              if override_protected || result.term_definitions.values.none?(&:protected?)\n                null_context = Context.new(**options)\n                null_context.previous_context = result unless propagate\n                result = null_context\n              else\n                raise JSON::LD::JsonLdError::InvalidContextNullification,\n                  \"Attempt to clear a context with protected terms\"\n              end\n            when Context\n              # log_debug(\"parse\") {\"context: #{context.inspect}\"}\n              result = result.merge(context)\n            when IO, StringIO\n              # log_debug(\"parse\") {\"io: #{context}\"}\n              # Load context document, if it is an open file\n              begin\n                ctx = load_context(context, **@options)\n                if @options[:validate] && ctx['@context'].nil?\n                  raise JSON::LD::JsonLdError::InvalidRemoteContext,\n                    \"Context missing @context key\"\n                end\n\n                result = result.parse(ctx[\"@context\"] || {})\n              rescue JSON::ParserError => e\n                log_info(\"parse\") { \"Failed to parse @context from remote document at #{context}: #{e.message}\" }\n                if @options[:validate]\n                  raise JSON::LD::JsonLdError::InvalidRemoteContext,\n                    \"Failed to parse remote context at #{context}: #{e.message}\"\n                end\n\n                self\n              end\n            when String, RDF::URI\n              # log_debug(\"parse\") {\"remote: #{context}, base: #{result.context_base || result.base}\"}\n\n              # 3.2.1) Set context to the result of resolving value against the base IRI which is established as specified in section 5.1 Establishing a Base URI of [RFC3986]. Only the basic algorithm in section 5.2 of [RFC3986] is used; neither Syntax-Based Normalization nor Scheme-Based Normalization are performed. Characters additionally allowed in IRI references are treated in the same way that unreserved characters are treated in URI references, per section 6.5 of [RFC3987].\n              context = RDF::URI(result.context_base || base).join(context)\n              context_canon = context.canonicalize\n              context_canon.scheme = 'http' if context_canon.scheme == 'https'\n\n              # If validating a scoped context which has already been loaded, skip to the next one\n              next if !validate_scoped && remote_contexts.include?(context.to_s)\n\n              remote_contexts << context.to_s\n              raise JsonLdError::ContextOverflow, context.to_s if remote_contexts.length >= MAX_CONTEXTS_LOADED\n\n              cached_context = if PRELOADED[context_canon.to_s]\n                # If we have a cached context, merge it into the current context (result) and use as the new context\n                # log_debug(\"parse\") {\"=> cached_context: #{context_canon.to_s.inspect}\"}\n\n                # If this is a Proc, then replace the entry with the result of running the Proc\n                if PRELOADED[context_canon.to_s].respond_to?(:call)\n                  # log_debug(\"parse\") {\"=> (call)\"}\n                  PRELOADED[context_canon.to_s] = PRELOADED[context_canon.to_s].call\n                end\n                PRELOADED[context_canon.to_s].context_base ||= context_canon.to_s\n                PRELOADED[context_canon.to_s]\n              else\n                # Load context document, if it is a string\n                Context.cache[context_canon.to_s] ||= begin\n                  context_opts = @options.merge(\n                    profile: 'http://www.w3.org/ns/json-ld#context',\n                    requestProfile: 'http://www.w3.org/ns/json-ld#context',\n                    base: nil\n                  )\n                  # context_opts.delete(:headers)\n                  JSON::LD::API.loadRemoteDocument(context.to_s, **context_opts) do |remote_doc|\n                    # 3.2.5) Dereference context. If the dereferenced document has no top-level JSON object with an @context member, an invalid remote context has been detected and processing is aborted; otherwise, set context to the value of that member.\n                    unless remote_doc.document.is_a?(Hash) && remote_doc.document.key?('@context')\n                      raise JsonLdError::InvalidRemoteContext,\n                        context.to_s\n                    end\n\n                    # Parse stand-alone\n                    ctx = Context.new(unfrozen: true, **options).dup\n                    ctx.context_base = context.to_s\n                    ctx = ctx.parse(remote_doc.document['@context'], remote_contexts: remote_contexts.dup)\n                    ctx.context_base = context.to_s # In case it was altered\n                    ctx.instance_variable_set(:@base, nil)\n                    ctx\n                  end\n                rescue JsonLdError::LoadingDocumentFailed => e\n                  log_info(\"parse\") do\n                    \"Failed to retrieve @context from remote document at #{context_canon.inspect}: #{e.message}\"\n                  end\n                  raise JsonLdError::LoadingRemoteContextFailed, \"#{context}: #{e.message}\", e.backtrace\n                rescue JsonLdError\n                  raise\n                rescue StandardError => e\n                  log_info(\"parse\") do\n                    \"Failed to retrieve @context from remote document at #{context_canon.inspect}: #{e.message}\"\n                  end\n                  raise JsonLdError::LoadingRemoteContextFailed, \"#{context}: #{e.message}\", e.backtrace\n                end\n              end\n\n              # Merge loaded context noting protected term overriding\n              context = result.merge(cached_context, override_protected: override_protected)\n\n              context.previous_context = self unless propagate\n              result = context\n            when Hash\n              context = context.dup # keep from modifying a hash passed as a param\n\n              # This counts on hash elements being processed in order\n              {\n                '@version' => :processingMode=,\n                '@import' => nil,\n                '@base' => :base=,\n                '@direction' => :default_direction=,\n                '@language' => :default_language=,\n                '@propagate' => :propagate=,\n                '@vocab' => :vocab=\n              }.each do |key, setter|\n                next unless context.key?(key)\n\n                if key == '@import'\n                  # Retrieve remote context and merge the remaining context object into the result.\n                  if result.processingMode(\"json-ld-1.0\")\n                    raise JsonLdError::InvalidContextEntry,\n                      \"@import may only be used in 1.1 mode}\"\n                  end\n                  unless context['@import'].is_a?(String)\n                    raise JsonLdError::InvalidImportValue,\n                      \"@import must be a string: #{context['@import'].inspect}\"\n                  end\n\n                  import_loc = RDF::URI(result.context_base || base).join(context['@import'])\n                  begin\n                    context_opts = @options.merge(\n                      profile: 'http://www.w3.org/ns/json-ld#context',\n                      requestProfile: 'http://www.w3.org/ns/json-ld#context',\n                      base: nil\n                    )\n                    context_opts.delete(:headers)\n                    # FIXME: should cache this, but ContextCache is for parsed contexts\n                    JSON::LD::API.loadRemoteDocument(import_loc, **context_opts) do |remote_doc|\n                      # Dereference import_loc. If the dereferenced document has no top-level JSON object with an @context member, an invalid remote context has been detected and processing is aborted; otherwise, set context to the value of that member.\n                      unless remote_doc.document.is_a?(Hash) && remote_doc.document.key?('@context')\n                        raise JsonLdError::InvalidRemoteContext,\n                          import_loc.to_s\n                      end\n\n                      import_context = remote_doc.document['@context']\n                      import_context.delete('@base')\n                      unless import_context.is_a?(Hash)\n                        raise JsonLdError::InvalidRemoteContext,\n                          \"#{import_context.to_json} must be an object\"\n                      end\n                      if import_context.key?('@import')\n                        raise JsonLdError::InvalidContextEntry,\n                          \"#{import_context.to_json} must not include @import entry\"\n                      end\n\n                      context.delete(key)\n                      context = import_context.merge(context)\n                    end\n                  rescue JsonLdError::LoadingDocumentFailed => e\n                    raise JsonLdError::LoadingRemoteContextFailed, \"#{import_loc}: #{e.message}\", e.backtrace\n                  rescue JsonLdError\n                    raise\n                  rescue StandardError => e\n                    raise JsonLdError::LoadingRemoteContextFailed, \"#{import_loc}: #{e.message}\", e.backtrace\n                  end\n                else\n                  result.send(setter, context[key], remote_contexts: remote_contexts)\n                end\n                context.delete(key)\n              end\n\n              defined = {}\n\n              # For each key-value pair in context invoke the Create Term Definition subalgorithm, passing result for active context, context for local context, key, and defined\n              context.each_key do |key|\n                # ... where key is not @base, @vocab, @language, or @version\n                next if NON_TERMDEF_KEYS.include?(key)\n\n                result.create_term_definition(context, key, defined,\n                  base: base,\n                  override_protected: override_protected,\n                  protected: context['@protected'],\n                  remote_contexts: remote_contexts.dup,\n                  validate_scoped: validate_scoped)\n              end\n            else\n              # 3.3) If context is not a JSON object, an invalid local context error has been detected and processing is aborted.\n              raise JsonLdError::InvalidLocalContext, \"must be a URL, JSON object or array of same: #{context.inspect}\"\n            end\n          end\n        end\n        result\n      end\n\n      ##\n      # Merge in a context, creating a new context with updates from `context`\n      #\n      # @param [Context] context\n      # @param [Boolean] override_protected Allow or disallow protected terms to be changed\n      # @return [Context]\n      def merge(context, override_protected: false)\n        ctx = Context.new(term_definitions: term_definitions, standard_prefixes: options[:standard_prefixes])\n        ctx.context_base = context.context_base || context_base\n        ctx.default_language = context.default_language || default_language\n        ctx.default_direction = context.default_direction || default_direction\n        ctx.vocab = context.vocab || vocab\n        ctx.base = base unless base.nil?\n        unless override_protected\n          ctx.term_definitions.each do |term, definition|\n            next unless definition.protected? && (other = context.term_definitions[term])\n            unless definition == other\n              raise JSON::LD::JsonLdError::ProtectedTermRedefinition, \"Attempt to redefine protected term #{term}\"\n            end\n          end\n        end\n\n        # Add term definitions\n        context.term_definitions.each do |term, definition|\n          ctx.term_definitions[term] = definition\n        end\n        ctx\n      end\n\n      # The following constants are used to reduce object allocations in #create_term_definition below\n      ID_NULL_OBJECT = { '@id' => nil }.freeze\n      NON_TERMDEF_KEYS = Set.new(%w[@base @direction @language @protected @version @vocab]).freeze\n      JSON_LD_10_EXPECTED_KEYS = Set.new(%w[@container @id @language @reverse @type]).freeze\n      JSON_LD_11_EXPECTED_KEYS = Set.new(%w[@context @direction @index @nest @prefix @protected]).freeze\n      JSON_LD_EXPECTED_KEYS = (JSON_LD_10_EXPECTED_KEYS + JSON_LD_11_EXPECTED_KEYS).freeze\n      JSON_LD_10_TYPE_VALUES = Set.new(%w[@id @vocab]).freeze\n      JSON_LD_11_TYPE_VALUES = Set.new(%w[@json @none]).freeze\n      PREFIX_URI_ENDINGS = Set.new(%w(: / ? # [ ] @)).freeze\n\n      ##\n      # Create Term Definition\n      #\n      # Term definitions are created by parsing the information in the given local context for the given term. If the given term is a compact IRI, it may omit an IRI mapping by depending on its prefix having its own term definition. If the prefix is a key in the local context, then its term definition must first be created, through recursion, before continuing. Because a term definition can depend on other term definitions, a mechanism must be used to detect cyclical dependencies. The solution employed here uses a map, defined, that keeps track of whether or not a term has been defined or is currently in the process of being defined. This map is checked before any recursion is attempted.\n      #\n      # After all dependencies for a term have been defined, the rest of the information in the local context for the given term is taken into account, creating the appropriate IRI mapping, container mapping, and type mapping or language mapping for the term.\n      #\n      # @param [Hash] local_context\n      # @param [String] term\n      # @param [Hash] defined\n      # @param [String, RDF::URI] base for resolving document-relative IRIs\n      # @param [Boolean] protected if true, causes all terms to be marked protected\n      # @param [Boolean] override_protected Protected terms may be cleared.\n      # @param [Array<String>] remote_contexts\n      # @param [Boolean] validate_scoped (true).\n      #   Validate scoped context, loading if necessary.\n      #   If false, do not load scoped contexts.\n      # @raise [JsonLdError]\n      #   Represents a cyclical term dependency\n      # @see https://www.w3.org/TR/json-ld11-api/index.html#create-term-definition\n      def create_term_definition(local_context, term, defined,\n                                 base: nil,\n                                 override_protected: false,\n                                 protected: nil,\n                                 remote_contexts: [],\n                                 validate_scoped: true)\n        # Expand a string value, unless it matches a keyword\n        # log_debug(\"create_term_definition\") {\"term = #{term.inspect}\"}\n\n        # If defined contains the key term, then the associated value must be true, indicating that the term definition has already been created, so return. Otherwise, a cyclical term definition has been detected, which is an error.\n        case defined[term]\n        when TrueClass then return\n        when nil\n          defined[term] = false\n        else\n          raise JsonLdError::CyclicIRIMapping, \"Cyclical term dependency found: #{term.inspect}\"\n        end\n\n        # Initialize value to a the value associated with the key term in local context.\n        value = local_context.fetch(term, false)\n        simple_term = value.is_a?(String) || value.nil?\n\n        # Since keywords cannot be overridden, term must not be a keyword. Otherwise, an invalid value has been detected, which is an error.\n        if term == '@type' &&\n           value.is_a?(Hash) &&\n           !value.empty? &&\n           processingMode(\"json-ld-1.1\") &&\n           (value.keys - %w[@container @protected]).empty? &&\n           value.fetch('@container', '@set') == '@set'\n          # thes are the only cases were redefining a keyword is allowed\n        elsif KEYWORDS.include?(term) # TODO: anything that looks like a keyword\n          raise JsonLdError::KeywordRedefinition, \"term must not be a keyword: #{term.inspect}\" if\n            @options[:validate]\n        elsif term.to_s.match?(/^@[a-zA-Z]+$/) && @options[:validate]\n          warn \"Terms beginning with '@' are reserved for future use and ignored: #{term}.\"\n          return\n        elsif !term_valid?(term) && @options[:validate]\n          raise JsonLdError::InvalidTermDefinition, \"term is invalid: #{term.inspect}\"\n        end\n\n        value = { '@id' => value } if simple_term\n\n        # Remove any existing term definition for term in active context.\n        previous_definition = term_definitions[term]\n        if previous_definition&.protected? && !override_protected\n          # Check later to detect identical redefinition\n        elsif previous_definition\n          term_definitions.delete(term)\n        end\n\n        unless value.is_a?(Hash)\n          raise JsonLdError::InvalidTermDefinition,\n            \"Term definition for #{term.inspect} is an #{value.class} on term #{term.inspect}\"\n        end\n\n        # log_debug(\"\") {\"Hash[#{term.inspect}] = #{value.inspect}\"}\n        definition = TermDefinition.new(term)\n        definition.simple = simple_term\n\n        expected_keys = case processingMode\n        when \"json-ld-1.0\" then JSON_LD_10_EXPECTED_KEYS\n        else JSON_LD_EXPECTED_KEYS\n        end\n\n        # Any of these keys cause us to process as json-ld-1.1, unless otherwise set\n        if processingMode.nil? && value.any? { |key, _| !JSON_LD_11_EXPECTED_KEYS.include?(key) }\n          processingMode('json-ld-11')\n        end\n\n        if value.any? { |key, _| !expected_keys.include?(key) }\n          extra_keys = value.keys - expected_keys.to_a\n          raise JsonLdError::InvalidTermDefinition,\n            \"Term definition for #{term.inspect} has unexpected keys: #{extra_keys.join(', ')}\"\n        end\n\n        # Potentially note that the term is protected\n        definition.protected = value.fetch('@protected', protected)\n\n        if value.key?('@type')\n          type = value['@type']\n          # SPEC FIXME: @type may be nil\n          type = case type\n          when nil\n            type\n          when String\n            begin\n              expand_iri(type, vocab: true, documentRelative: false, local_context: local_context, defined: defined)\n            rescue JsonLdError::InvalidIRIMapping\n              raise JsonLdError::InvalidTypeMapping,\n                \"invalid mapping for '@type': #{type.inspect} on term #{term.inspect}\"\n            end\n          else\n            :error\n          end\n          if JSON_LD_11_TYPE_VALUES.include?(type) && processingMode('json-ld-1.1')\n            # This is okay and used in compaction in 1.1\n          elsif !JSON_LD_10_TYPE_VALUES.include?(type) && !(type.is_a?(RDF::URI) && type.absolute?)\n            raise JsonLdError::InvalidTypeMapping,\n              \"unknown mapping for '@type': #{type.inspect} on term #{term.inspect}\"\n          end\n          # log_debug(\"\") {\"type_mapping: #{type.inspect}\"}\n          definition.type_mapping = type\n        end\n\n        if value.key?('@reverse')\n          raise JsonLdError::InvalidReverseProperty, \"unexpected key in #{value.inspect} on term #{term.inspect}\" if\n            value.key?('@id') || value.key?('@nest')\n\n          unless value['@reverse'].is_a?(String)\n            raise JsonLdError::InvalidIRIMapping,\n              \"expected value of @reverse to be a string: #{value['@reverse'].inspect} on term #{term.inspect}\"\n          end\n\n          if value['@reverse'].to_s.match?(/^@[a-zA-Z]+$/) && @options[:validate]\n            warn \"Values beginning with '@' are reserved for future use and ignored: #{value['@reverse']}.\"\n            return\n          end\n\n          # Otherwise, set the IRI mapping of definition to the result of using the IRI Expansion algorithm, passing active context, the value associated with the @reverse key for value, true for vocab, true for document relative, local context, and defined. If the result is not an absolute IRI, i.e., it contains no colon (:), an invalid IRI mapping error has been detected and processing is aborted.\n          definition.id = expand_iri(value['@reverse'],\n            vocab: true,\n            local_context: local_context,\n            defined: defined)\n          unless definition.id.is_a?(RDF::Node) || (definition.id.is_a?(RDF::URI) && definition.id.absolute?)\n            raise JsonLdError::InvalidIRIMapping,\n              \"non-absolute @reverse IRI: #{definition.id} on term #{term.inspect}\"\n          end\n\n          if term[1..].to_s.include?(':') && (term_iri = expand_iri(term)) != definition.id\n            raise JsonLdError::InvalidIRIMapping, \"term #{term} expands to #{definition.id}, not #{term_iri}\"\n          end\n\n          if @options[:validate] && processingMode('json-ld-1.1') && definition.id.to_s.start_with?(\"_:\")\n            warn \"[DEPRECATION] Blank Node terms deprecated in JSON-LD 1.1.\"\n          end\n\n          # If value contains an @container member, set the container mapping of definition to its value; if its value is neither @set, @index, @type, @id, an absolute IRI nor null, an invalid reverse property error has been detected (reverse properties only support set- and index-containers) and processing is aborted.\n          if value.key?('@container')\n            container = value['@container']\n            unless container.is_a?(String) && ['@set', '@index'].include?(container)\n              raise JsonLdError::InvalidReverseProperty,\n                \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n            end\n            definition.container_mapping = check_container(container, local_context, defined, term)\n          end\n          definition.reverse_property = true\n        elsif value.key?('@id') && value['@id'].nil?\n          # Allowed to reserve a null term, which may be protected\n        elsif value.key?('@id') && value['@id'] != term\n          unless value['@id'].is_a?(String)\n            raise JsonLdError::InvalidIRIMapping,\n              \"expected value of @id to be a string: #{value['@id'].inspect} on term #{term.inspect}\"\n          end\n\n          if !KEYWORDS.include?(value['@id'].to_s) && value['@id'].to_s.match?(/^@[a-zA-Z]+$/) && @options[:validate]\n            warn \"Values beginning with '@' are reserved for future use and ignored: #{value['@id']}.\"\n            return\n          end\n\n          definition.id = expand_iri(value['@id'],\n            vocab: true,\n            local_context: local_context,\n            defined: defined)\n          raise JsonLdError::InvalidKeywordAlias, \"expected value of @id to not be @context on term #{term.inspect}\" if\n            definition.id == '@context'\n\n          if term.match?(%r{(?::[^:])|/})\n            term_iri = expand_iri(term,\n              vocab: true,\n              local_context: local_context,\n              defined: defined.merge(term => true))\n            if term_iri != definition.id\n              raise JsonLdError::InvalidIRIMapping, \"term #{term} expands to #{definition.id}, not #{term_iri}\"\n            end\n          end\n\n          if @options[:validate] && processingMode('json-ld-1.1') && definition.id.to_s.start_with?(\"_:\")\n            warn \"[DEPRECATION] Blank Node terms deprecated in JSON-LD 1.1.\"\n          end\n\n          # If id ends with a gen-delim, it may be used as a prefix for simple terms\n          definition.prefix = true if !term.include?(':') &&\n                                      simple_term &&\n                                      (definition.id.to_s.end_with?(':', '/', '?', '#', '[', ']',\n                                        '@') || definition.id.to_s.start_with?('_:'))\n        elsif term[1..].include?(':')\n          # If term is a compact IRI with a prefix that is a key in local context then a dependency has been found. Use this algorithm recursively passing active context, local context, the prefix as term, and defined.\n          prefix, suffix = term.split(':', 2)\n          create_term_definition(local_context, prefix, defined, protected: protected) if local_context.key?(prefix)\n\n          definition.id = if (td = term_definitions[prefix])\n            # If term's prefix has a term definition in active context, set the IRI mapping for definition to the result of concatenating the value associated with the prefix's IRI mapping and the term's suffix.\n            td.id + suffix\n          else\n            # Otherwise, term is an absolute IRI. Set the IRI mapping for definition to term\n            term\n          end\n          # log_debug(\"\") {\"=> #{definition.id}\"}\n        elsif term.include?('/')\n          # If term is a relative IRI\n          definition.id = expand_iri(term, vocab: true)\n          raise JsonLdError::InvalidKeywordAlias, \"expected term to expand to an absolute IRI #{term.inspect}\" unless\n            definition.id.absolute?\n        elsif KEYWORDS.include?(term)\n          # This should only happen for @type when @container is @set\n          definition.id = term\n        else\n          # Otherwise, active context must have a vocabulary mapping, otherwise an invalid value has been detected, which is an error. Set the IRI mapping for definition to the result of concatenating the value associated with the vocabulary mapping and term.\n          unless vocab\n            raise JsonLdError::InvalidIRIMapping,\n              \"relative term definition without vocab: #{term} on term #{term.inspect}\"\n          end\n\n          definition.id = vocab + term\n          # log_debug(\"\") {\"=> #{definition.id}\"}\n        end\n\n        @iri_to_term[definition.id] = term if simple_term && definition.id\n\n        if value.key?('@container')\n          # log_debug(\"\") {\"container_mapping: #{value['@container'].inspect}\"}\n          definition.container_mapping = check_container(value['@container'], local_context, defined, term)\n\n          # If @container includes @type\n          if definition.container_mapping.include?('@type')\n            # If definition does not have @type, set @type to @id\n            definition.type_mapping ||= '@id'\n            # If definition includes @type with a value other than @id or @vocab, an illegal type mapping error has been detected\n            unless CONTEXT_TYPE_ID_VOCAB.include?(definition.type_mapping)\n              raise JsonLdError::InvalidTypeMapping, \"@container: @type requires @type to be @id or @vocab\"\n            end\n          end\n        end\n\n        if value.key?('@index')\n          # property-based indexing\n          unless definition.container_mapping.include?('@index')\n            raise JsonLdError::InvalidTermDefinition,\n              \"@index without @index in @container: #{value['@index']} on term #{term.inspect}\"\n          end\n          unless value['@index'].is_a?(String) && !value['@index'].start_with?('@')\n            raise JsonLdError::InvalidTermDefinition,\n              \"@index must expand to an IRI: #{value['@index']} on term #{term.inspect}\"\n          end\n\n          definition.index = value['@index'].to_s\n        end\n\n        if value.key?('@context')\n          begin\n            new_ctx = parse(value['@context'],\n              base: base,\n              override_protected: true,\n              remote_contexts: remote_contexts,\n              validate_scoped: false)\n            # Record null context in array form\n            definition.context = case value['@context']\n            when String then new_ctx.context_base\n            when nil then [nil]\n            else value['@context']\n            end\n            # log_debug(\"\") {\"context: #{definition.context.inspect}\"}\n          rescue JsonLdError => e\n            raise JsonLdError::InvalidScopedContext,\n              \"Term definition for #{term.inspect} contains illegal value for @context: #{e.message}\"\n          end\n        end\n\n        if value.key?('@language')\n          language = value['@language']\n          language = case value['@language']\n          when String\n            # Warn on an invalid language tag, unless :validate is true, in which case it's an error\n            unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(value['@language'])\n              warn \"@language must be valid BCP47: #{value['@language'].inspect}\"\n            end\n            options[:lowercaseLanguage] ? value['@language'].downcase : value['@language']\n          when nil\n            nil\n          else\n            raise JsonLdError::InvalidLanguageMapping,\n              \"language must be null or a string, was #{value['@language'].inspect}} on term #{term.inspect}\"\n          end\n          # log_debug(\"\") {\"language_mapping: #{language.inspect}\"}\n          definition.language_mapping = language || false\n        end\n\n        if value.key?('@direction')\n          direction = value['@direction']\n          unless direction.nil? || %w[\n            ltr rtl\n          ].include?(direction)\n            raise JsonLdError::InvalidBaseDirection,\n              \"direction must be null, 'ltr', or 'rtl', was #{language.inspect}} on term #{term.inspect}\"\n          end\n\n          # log_debug(\"\") {\"direction_mapping: #{direction.inspect}\"}\n          definition.direction_mapping = direction || false\n        end\n\n        if value.key?('@nest')\n          nest = value['@nest']\n          unless nest.is_a?(String)\n            raise JsonLdError::InvalidNestValue,\n              \"nest must be a string, was #{nest.inspect}} on term #{term.inspect}\"\n          end\n          if nest.match?(/^@[a-zA-Z]+$/) && nest != '@nest'\n            raise JsonLdError::InvalidNestValue,\n              \"nest must not be a keyword other than @nest, was #{nest.inspect}} on term #{term.inspect}\"\n          end\n\n          # log_debug(\"\") {\"nest: #{nest.inspect}\"}\n          definition.nest = nest\n        end\n\n        if value.key?('@prefix')\n          if term.match?(%r{:|/})\n            raise JsonLdError::InvalidTermDefinition,\n              \"@prefix used on compact or relative IRI term #{term.inspect}\"\n          end\n\n          case pfx = value['@prefix']\n          when TrueClass, FalseClass\n            definition.prefix = pfx\n          else\n            raise JsonLdError::InvalidPrefixValue, \"unknown value for '@prefix': #{pfx.inspect} on term #{term.inspect}\"\n          end\n\n          if pfx && KEYWORDS.include?(definition.id.to_s)\n            raise JsonLdError::InvalidTermDefinition,\n              \"keywords may not be used as prefixes\"\n          end\n        end\n\n        if !override_protected && previous_definition&.protected?\n          if definition != previous_definition\n            raise JSON::LD::JsonLdError::ProtectedTermRedefinition, \"Attempt to redefine protected term #{term}\"\n          end\n          definition = previous_definition\n        end\n\n        term_definitions[term] = definition\n        defined[term] = true\n      end\n\n      ##\n      # Initial context, without mappings, vocab or default language\n      #\n      # @return [Boolean]\n      def empty?\n        @term_definitions.empty? && vocab.nil? && default_language.nil?\n      end\n\n      # @param [String] value must be an absolute IRI\n      def base=(value, **_options)\n        if value\n          unless value.is_a?(String) || value.is_a?(RDF::URI)\n            raise JsonLdError::InvalidBaseIRI,\n              \"@base must be a string: #{value.inspect}\"\n          end\n\n          value = RDF::URI(value)\n          value = @base.join(value) if @base && value.relative?\n          # still might be relative to document\n          @base = value\n        else\n          @base = false\n        end\n      end\n\n      # @param [String] value\n      def default_language=(value, **options)\n        @default_language = case value\n        when String\n          # Warn on an invalid language tag, unless :validate is true, in which case it's an error\n          unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(value)\n            warn \"@language must be valid BCP47: #{value.inspect}\"\n          end\n          options[:lowercaseLanguage] ? value.downcase : value\n        when nil\n          nil\n        else\n          raise JsonLdError::InvalidDefaultLanguage, \"@language must be a string: #{value.inspect}\"\n        end\n      end\n\n      # @param [String] value\n      def default_direction=(value, **_options)\n        @default_direction = if value\n          unless %w[\n            ltr rtl\n          ].include?(value)\n            raise JsonLdError::InvalidBaseDirection,\n              \"@direction must be one or 'ltr', or 'rtl': #{value.inspect}\"\n          end\n\n          value\n        end\n      end\n\n      ##\n      # Retrieve, or check processing mode.\n      #\n      # * With no arguments, retrieves the current set processingMode.\n      # * With an argument, verifies that the processingMode is at least that provided, either as an integer, or a string of the form \"json-ld-1.x\"\n      # * If expecting 1.1, and not set, it has the side-effect of setting mode to json-ld-1.1.\n      #\n      # @param [String, Number] expected (nil)\n      # @return [String]\n      def processingMode(expected = nil)\n        case expected\n        when 1.0, 'json-ld-1.0'\n          @processingMode == 'json-ld-1.0'\n        when 1.1, 'json-ld-1.1'\n          @processingMode.nil? || @processingMode == 'json-ld-1.1'\n        when nil\n          @processingMode || 'json-ld-1.1'\n        else\n          false\n        end\n      end\n\n      ##\n      # Set processing mode.\n      #\n      # * With an argument, verifies that the processingMode is at least that provided, either as an integer, or a string of the form \"json-ld-1.x\"\n      #\n      # If contex has a @version member, it's value MUST be 1.1, otherwise an \"invalid @version value\" has been detected, and processing is aborted.\n      # If processingMode has been set, and it is not \"json-ld-1.1\", a \"processing mode conflict\" has been detecting, and processing is aborted.\n      #\n      # @param [String, Number] value\n      # @return [String]\n      # @raise [JsonLdError::ProcessingModeConflict]\n      def processingMode=(value = nil, **_options)\n        value = \"json-ld-1.1\" if value == 1.1\n        case value\n        when \"json-ld-1.0\", \"json-ld-1.1\"\n          if @processingMode && @processingMode != value\n            raise JsonLdError::ProcessingModeConflict, \"#{value} not compatible with #{@processingMode}\"\n          end\n\n          @processingMode = value\n        else\n          raise JsonLdError::InvalidVersionValue, value.inspect\n        end\n      end\n\n      # If context has a @vocab member: if its value is not a valid absolute IRI or null trigger an INVALID_VOCAB_MAPPING error; otherwise set the active context's vocabulary mapping to its value and remove the @vocab member from context.\n      # @param [String] value must be an absolute IRI\n      def vocab=(value, **_options)\n        @vocab = case value\n        when /_:/\n          # BNode vocab is deprecated\n          if @options[:validate] && processingMode(\"json-ld-1.1\")\n            warn \"[DEPRECATION] Blank Node vocabularies deprecated in JSON-LD 1.1.\"\n          end\n          value\n        when String, RDF::URI\n          if RDF::URI(value.to_s).relative? && processingMode(\"json-ld-1.0\")\n            raise JsonLdError::InvalidVocabMapping, \"@vocab must be an absolute IRI in 1.0 mode: #{value.inspect}\"\n          end\n\n          expand_iri(value.to_s, vocab: true, documentRelative: true)\n        when nil\n          nil\n        else\n          raise JsonLdError::InvalidVocabMapping, \"@vocab must be an IRI: #{value.inspect}\"\n        end\n      end\n\n      # Set propagation\n      # @note: by the time this is called, the work has already been done.\n      #\n      # @param [Boolean] value\n      def propagate=(value, **_options)\n        if processingMode(\"json-ld-1.0\")\n          raise JsonLdError::InvalidContextEntry,\n            \"@propagate may only be set in 1.1 mode\"\n        end\n\n        unless value.is_a?(TrueClass) || value.is_a?(FalseClass)\n          raise JsonLdError::InvalidPropagateValue,\n            \"@propagate must be boolean valued: #{value.inspect}\"\n        end\n\n        value\n      end\n\n      ##\n      # Generate @context\n      #\n      # If a context was supplied in global options, use that, otherwise, generate one\n      # from this representation.\n      #\n      # @param [Array, Hash, Context, IO, StringIO] provided_context (nil)\n      #   Original context to use, if available\n      # @param  [Hash{Symbol => Object}] options ({})\n      # @return [Hash]\n      def serialize(provided_context: nil, **_options)\n        # log_debug(\"serlialize: generate context\")\n        # log_debug(\"\") {\"=> context: #{inspect}\"}\n        use_context = case provided_context\n        when String, RDF::URI\n          # log_debug \"serlialize: reuse context: #{provided_context.inspect}\"\n          provided_context.to_s\n        when Hash\n          # log_debug \"serlialize: reuse context: #{provided_context.inspect}\"\n          # If it has an @context entry use it, otherwise it is assumed to be the body of a context\n          provided_context.fetch('@context', provided_context)\n        when Array\n          # log_debug \"serlialize: reuse context: #{provided_context.inspect}\"\n          provided_context\n        when IO, StringIO\n          load_context(provided_context, **@options).fetch('@context', {})\n        else\n          ctx = {}\n          ctx['@version'] = 1.1 if @processingMode == 'json-ld-1.1'\n          ctx['@base'] = base.to_s if base\n          ctx['@direction'] = default_direction.to_s if default_direction\n          ctx['@language'] = default_language.to_s if default_language\n          ctx['@vocab'] = vocab.to_s if vocab\n\n          # Term Definitions\n          term_definitions.each do |term, defn|\n            ctx[term] = defn.to_context_definition(self)\n          end\n          ctx\n        end\n\n        # Return hash with @context, or empty\n        use_context.nil? || use_context.empty? ? {} : { '@context' => use_context }\n      end\n\n      ##\n      # Build a context from an RDF::Vocabulary definition.\n      #\n      # @example building from an external vocabulary definition\n      #\n      #     g = RDF::Graph.load(\"http://schema.org/docs/schema_org_rdfa.html\")\n      #\n      #     context = JSON::LD::Context.new.from_vocabulary(g,\n      #           vocab: \"http://schema.org/\",\n      #           prefixes: {schema: \"http://schema.org/\"},\n      #           language: \"en\")\n      #\n      # @param [RDF::Queryable] graph\n      #\n      # @note requires rdf/vocab gem.\n      #\n      # @return [self]\n      def from_vocabulary(graph)\n        require 'rdf/vocab' unless RDF.const_defined?(:Vocab)\n        statements = {}\n        ranges = {}\n\n        # Add term definitions for each class and property not in schema:, and\n        # for those properties having an object range\n        graph.each do |statement|\n          next if statement.subject.node?\n\n          (statements[statement.subject] ||= []) << statement\n\n          # Keep track of predicate ranges\n          if [RDF::RDFS.range, RDF::Vocab::SCHEMA.rangeIncludes].include?(statement.predicate)\n            (ranges[statement.subject] ||= []) << statement.object\n          end\n        end\n\n        # Add term definitions for each class and property not in vocab, and\n        # for those properties having an object range\n        statements.each do |subject, values|\n          types = values.each_with_object([]) { |v, memo| memo << v.object if v.predicate == RDF.type }\n          is_property = types.any? { |t| t.to_s.include?(\"Property\") }\n\n          term = subject.to_s.split(%r{[/\\#]}).last\n\n          if is_property\n            prop_ranges = ranges.fetch(subject, [])\n            # If any range is empty or member of range includes rdfs:Literal or schema:Text\n            next if (vocab && prop_ranges.empty?) ||\n                    prop_ranges.include?(RDF::Vocab::SCHEMA.Text) ||\n                    prop_ranges.include?(RDF::RDFS.Literal)\n\n            td = term_definitions[term] = TermDefinition.new(term, id: subject.to_s)\n\n            # Set context typing based on first element in range\n            case r = prop_ranges.first\n            when RDF::XSD.string\n              td.language_mapping = false if default_language\n              # FIXME: text direction\n            when RDF::XSD.boolean, RDF::Vocab::SCHEMA.Boolean, RDF::XSD.date, RDF::Vocab::SCHEMA.Date,\n              RDF::XSD.dateTime, RDF::Vocab::SCHEMA.DateTime, RDF::XSD.time, RDF::Vocab::SCHEMA.Time,\n              RDF::XSD.duration, RDF::Vocab::SCHEMA.Duration, RDF::XSD.decimal, RDF::Vocab::SCHEMA.Number,\n              RDF::XSD.float, RDF::Vocab::SCHEMA.Float, RDF::XSD.integer, RDF::Vocab::SCHEMA.Integer\n              td.type_mapping = r\n              td.simple = false\n            else\n              # It's an object range (includes schema:URL)\n              td.type_mapping = '@id'\n            end\n          else\n            # Ignore if there's a default voabulary and this is not a property\n            next if vocab && subject.to_s.start_with?(vocab)\n\n            # otherwise, create a term definition\n            td = term_definitions[term] = TermDefinition.new(term, id: subject.to_s)\n          end\n        end\n\n        self\n      end\n\n      # Set term mapping\n      #\n      # @param [#to_s] term\n      # @param [RDF::URI, String, nil] value\n      #\n      # @return [TermDefinition]\n      def set_mapping(term, value)\n        # log_debug(\"\") {\"map #{term.inspect} to #{value.inspect}\"}\n        term = term.to_s\n        term_definitions[term] =\n          TermDefinition.new(term, id: value, simple: true, prefix: value.to_s.end_with?(*PREFIX_URI_ENDINGS))\n        term_definitions[term].simple = true\n\n        term_sym = term.empty? ? \"\" : term.to_sym\n        iri_to_term.delete(term_definitions[term].id.to_s) if term_definitions[term].id.is_a?(String)\n        @options[:prefixes][term_sym] = value if @options.key?(:prefixes)\n        iri_to_term[value.to_s] = term\n        term_definitions[term]\n      end\n\n      ##\n      # Find a term definition\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [Term]\n      def find_definition(term)\n        term.is_a?(TermDefinition) ? term : term_definitions[term.to_s]\n      end\n\n      ##\n      # Retrieve container mapping, add it if `value` is provided\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [Array<'@index', '@language', '@index', '@set', '@type', '@id', '@graph'>]\n      def container(term)\n        return Set[term] if term == '@list'\n\n        term = find_definition(term)\n        term ? term.container_mapping : Set.new\n      end\n\n      ##\n      # Retrieve term coercion\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [RDF::URI, '@id']\n      def coerce(term)\n        # Map property, if it's not an RDF::Value\n        # @type is always is an IRI\n        return '@id' if term == RDF.type || term == '@type'\n\n        term = find_definition(term)\n        term&.type_mapping\n      end\n\n      ##\n      # Should values be represented using an array?\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [Boolean]\n      def as_array?(term)\n        return true if CONTEXT_CONTAINER_ARRAY_TERMS.include?(term)\n\n        term = find_definition(term)\n        term && (term.as_set? || term.container_mapping.include?('@list'))\n      end\n\n      ##\n      # Retrieve content of a term\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [Hash]\n      def content(term)\n        term = find_definition(term)\n        term&.content\n      end\n\n      ##\n      # Retrieve nest of a term.\n      # value of nest must be @nest or a term that resolves to @nest\n      #\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [String] Nesting term\n      # @raise JsonLdError::InvalidNestValue if nesting term exists and is not a term resolving to `@nest` in the current context.\n      def nest(term)\n        term = find_definition(term)\n        return unless term\n\n        case term.nest\n        when '@nest', nil\n        else\n          nest_term = find_definition(term.nest)\n          unless nest_term && nest_term.id == '@nest'\n            raise JsonLdError::InvalidNestValue,\n              \"nest must a term resolving to @nest, was #{nest_term.inspect}\"\n          end\n\n        end\n        term.nest\n      end\n\n      ##\n      # Retrieve the language associated with a term, or the default language otherwise\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [String]\n      def language(term)\n        term = find_definition(term)\n        lang = term&.language_mapping\n        if lang.nil?\n          @default_language\n        else\n          (lang == false ? nil : lang)\n        end\n      end\n\n      ##\n      # Retrieve the text direction associated with a term, or the default direction otherwise\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [String]\n      def direction(term)\n        term = find_definition(term)\n        dir = term&.direction_mapping\n        if dir.nil?\n          @default_direction\n        else\n          (dir == false ? nil : dir)\n        end\n      end\n\n      ##\n      # Is this a reverse term\n      # @param [Term, #to_s] term in unexpanded form\n      # @return [Boolean]\n      def reverse?(term)\n        term = find_definition(term)\n        term&.reverse_property\n      end\n\n      ##\n      # Given a term or IRI, find a reverse term definition matching that term. If the term is already reversed, find a non-reversed version.\n      #\n      # @param [Term, #to_s] term\n      # @return [Term] related term definition\n      def reverse_term(term)\n        # Direct lookup of term\n        term = term_definitions[term.to_s] if term_definitions.key?(term.to_s) && !term.is_a?(TermDefinition)\n\n        # Lookup term, assuming term is an IRI\n        unless term.is_a?(TermDefinition)\n          td = term_definitions.values.detect { |t| t.id == term.to_s }\n\n          # Otherwise create a temporary term definition\n          term = td || TermDefinition.new(term.to_s, id: expand_iri(term, vocab: true))\n        end\n\n        # Now, return a term, which reverses this term\n        term_definitions.values.detect { |t| t.id == term.id && t.reverse_property != term.reverse_property }\n      end\n\n      ##\n      # Expand an IRI. Relative IRIs are expanded against any document base.\n      #\n      # @param [String] value\n      #   A keyword, term, prefix:suffix or possibly relative IRI\n      # @param [Boolean] as_string (false) transform RDF::Resource values to string\n      # @param [String, RDF::URI] base for resolving document-relative IRIs\n      # @param [Hash] defined\n      #   Used during Context Processing.\n      # @param [Boolean] documentRelative (false)\n      # @param [Hash] local_context\n      #   Used during Context Processing.\n      # @param [Boolean] vocab (false)\n      # @param  [Hash{Symbol => Object}] options\n      # @return [RDF::Resource, String]\n      #   IRI or String, if it's a keyword\n      # @raise [JSON::LD::JsonLdError::InvalidIRIMapping] if the value cannot be expanded\n      # @see https://www.w3.org/TR/json-ld11-api/#iri-expansion\n      def expand_iri(value,\n                     as_string: false,\n                     base: nil,\n                     defined: nil,\n                     documentRelative: false,\n                     local_context: nil,\n                     vocab: false,\n                     **_options)\n        return (value && as_string ? value.to_s : value) unless value.is_a?(String)\n\n        return value if KEYWORDS.include?(value)\n        return nil if value.match?(/^@[a-zA-Z]+$/)\n\n        defined ||= {} # if we initialized in the keyword arg we would allocate {} at each invokation, even in the 2 (common) early returns above.\n\n        # If local context is not null, it contains a key that equals value, and the value associated with the key that equals value in defined is not true, then invoke the Create Term Definition subalgorithm, passing active context, local context, value as term, and defined. This will ensure that a term definition is created for value in active context during Context Processing.\n        create_term_definition(local_context, value, defined) if local_context&.key?(value) && !defined[value]\n\n        if (v_td = term_definitions[value]) && KEYWORDS.include?(v_td.id)\n          return (as_string ? v_td.id.to_s : v_td.id)\n        end\n\n        # If active context has a term definition for value, and the associated mapping is a keyword, return that keyword.\n        # If vocab is true and the active context has a term definition for value, return the associated IRI mapping.\n        if (v_td = term_definitions[value]) && (vocab || KEYWORDS.include?(v_td.id))\n          iri = base && v_td.id ? base.join(v_td.id) : v_td.id # vocab might be doc relative\n          return (as_string ? iri.to_s : iri)\n        end\n\n        # If value contains a colon (:), it is either an absolute IRI or a compact IRI:\n        if value[1..].to_s.include?(':')\n          prefix, suffix = value.split(':', 2)\n\n          # If prefix is underscore (_) or suffix begins with double-forward-slash (//), return value as it is already an absolute IRI or a blank node identifier.\n          if prefix == '_'\n            v = RDF::Node.new(namer.get_sym(suffix))\n            return (as_string ? v.to_s : v)\n          end\n          if suffix.start_with?('//')\n            v = RDF::URI(value)\n            return (as_string ? v.to_s : v)\n          end\n\n          # If local context is not null, it contains a key that equals prefix, and the value associated with the key that equals prefix in defined is not true, invoke the Create Term Definition algorithm, passing active context, local context, prefix as term, and defined. This will ensure that a term definition is created for prefix in active context during Context Processing.\n          create_term_definition(local_context, prefix, defined) if local_context&.key?(prefix) && !defined[prefix]\n\n          # If active context contains a term definition for prefix, return the result of concatenating the IRI mapping associated with prefix and suffix.\n          if (td = term_definitions[prefix]) && !td.id.nil? && td.prefix?\n            return (as_string ? td.id.to_s : td.id) + suffix\n          elsif RDF::URI(value).absolute?\n            # Otherwise, if the value has the form of an absolute IRI, return it\n            return (as_string ? value.to_s : RDF::URI(value))\n          end\n        end\n\n        iri = value.is_a?(RDF::URI) ? value : RDF::URI(value)\n        result = if vocab && self.vocab\n          # If vocab is true, and active context has a vocabulary mapping, return the result of concatenating the vocabulary mapping with value.\n          # Note that @vocab could still be relative to a document base\n          (base && self.vocab.is_a?(RDF::URI) && self.vocab.relative? ? base.join(self.vocab) : self.vocab) + value\n        elsif documentRelative\n          if iri.absolute?\n            iri\n          elsif self.base.is_a?(RDF::URI) && self.base.absolute?\n            self.base.join(iri)\n          elsif self.base == false\n            # No resollution of `@base: null`\n            iri\n          elsif base && self.base\n            base.join(self.base).join(iri)\n          elsif base\n            base.join(iri)\n          else\n            # Returns a relative IRI in an odd case.\n            iri\n          end\n        elsif local_context && iri.relative?\n          # If local context is not null and value is not an absolute IRI, an invalid IRI mapping error has been detected and processing is aborted.\n          raise JSON::LD::JsonLdError::InvalidIRIMapping, \"not an absolute IRI: #{value}\"\n        else\n          iri\n        end\n        result && as_string ? result.to_s : result\n      end\n\n      # The following constants are used to reduce object allocations in #compact_iri below\n      CONTAINERS_GRAPH = %w[@graph@id @graph@id@set].freeze\n      CONTAINERS_GRAPH_INDEX = %w[@graph@index @graph@index@set].freeze\n      CONTAINERS_GRAPH_INDEX_INDEX = %w[@graph@index @graph@index@set @index @index@set].freeze\n      CONTAINERS_GRAPH_SET = %w[@graph @graph@set @set].freeze\n      CONTAINERS_ID_TYPE = %w[@id @id@set @type @set@type].freeze\n      CONTAINERS_ID_VOCAB = %w[@id @vocab @none].freeze\n      CONTAINERS_INDEX_SET = %w[@index @index@set].freeze\n      CONTAINERS_LANGUAGE = %w[@language @language@set].freeze\n      CONTAINERS_VALUE = %w[@value].freeze\n      CONTAINERS_VOCAB_ID = %w[@vocab @id @none].freeze\n\n      ##\n      # Compacts an absolute IRI to the shortest matching term or compact IRI\n      #\n      # @param [RDF::URI] iri\n      # @param [String, RDF::URI] base for resolving document-relative IRIs\n      # @param [Object] value\n      #   Value, used to select among various maps for the same IRI\n      # @param [Boolean] reverse\n      #   specifies whether a reverse property is being compacted\n      # @param [Boolean] vocab\n      #   specifies whether the passed iri should be compacted using the active context's vocabulary mapping\n      #\n      # @return [String] compacted form of IRI\n      # @see https://www.w3.org/TR/json-ld11-api/#iri-compaction\n      def compact_iri(iri, base: nil, reverse: false, value: nil, vocab: nil)\n        return if iri.nil?\n\n        iri = iri.to_s\n\n        if vocab && inverse_context.key?(iri)\n          default_language = if default_direction\n            \"#{self.default_language}_#{default_direction}\".downcase\n          else\n            (self.default_language || \"@none\").downcase\n          end\n          containers = []\n          tl = \"@language\"\n          tl_value = \"@null\"\n          containers.concat(CONTAINERS_INDEX_SET) if index?(value) && !graph?(value)\n\n          # If the value is a JSON Object with the key @preserve, use the value of @preserve.\n          value = value['@preserve'].first if value.is_a?(Hash) && value.key?('@preserve')\n\n          if reverse\n            tl = \"@type\"\n            tl_value = \"@reverse\"\n            containers << '@set'\n          elsif list?(value)\n            # if value is a list object, then set type/language and type/language value to the most specific values that work for all items in the list as follows:\n            containers << \"@list\" unless index?(value)\n            list = value['@list']\n            common_type = nil\n            common_language = default_language if list.empty?\n            list.each do |item|\n              item_language = \"@none\"\n              item_type = \"@none\"\n              if value?(item)\n                if item.key?('@direction')\n                  item_language = \"#{item['@language']}_#{item['@direction']}\".downcase\n                elsif item.key?('@language')\n                  item_language = item['@language'].downcase\n                elsif item.key?('@type')\n                  item_type = item['@type']\n                else\n                  item_language = \"@null\"\n                end\n              else\n                item_type = '@id'\n              end\n              common_language ||= item_language\n              common_language = '@none' if item_language != common_language && value?(item)\n              common_type ||= item_type\n              common_type = '@none' if item_type != common_type\n            end\n\n            common_language ||= '@none'\n            common_type ||= '@none'\n            if common_type == '@none'\n              tl_value = common_language\n            else\n              tl = '@type'\n              tl_value = common_type\n            end\n          elsif graph?(value)\n            # Prefer @index and @id containers, then @graph, then @index\n            containers.concat(CONTAINERS_GRAPH_INDEX_INDEX) if index?(value)\n            containers.concat(CONTAINERS_GRAPH) if value.key?('@id')\n\n            # Prefer an @graph container next\n            containers.concat(CONTAINERS_GRAPH_SET)\n\n            # Lastly, in 1.1, any graph can be indexed on @index or @id, so add if we haven't already\n            containers.concat(CONTAINERS_GRAPH_INDEX) unless index?(value)\n            containers.concat(CONTAINERS_GRAPH) unless value.key?('@id')\n            containers.concat(CONTAINERS_INDEX_SET) unless index?(value)\n            containers << '@set'\n\n            tl = '@type'\n            tl_value = '@id'\n          else\n            if value?(value)\n              # In 1.1, an language map can be used to index values using @none\n              if value.key?('@language') && !index?(value)\n                tl_value = value['@language'].downcase\n                tl_value += \"_#{value['@direction']}\" if value['@direction']\n                containers.concat(CONTAINERS_LANGUAGE)\n              elsif value.key?('@direction') && !index?(value)\n                tl_value = \"_#{value['@direction']}\"\n              elsif value.key?('@type')\n                tl_value = value['@type']\n                tl = '@type'\n              end\n            else\n              # In 1.1, an id or type map can be used to index values using @none\n              containers.concat(CONTAINERS_ID_TYPE)\n              tl = '@type'\n              tl_value = '@id'\n            end\n            containers << '@set'\n          end\n\n          containers << '@none'\n\n          # In 1.1, an index map can be used to index values using @none, so add as a low priority\n          containers.concat(CONTAINERS_INDEX_SET) unless index?(value)\n          # Values without type or language can use @language map\n          containers.concat(CONTAINERS_LANGUAGE) if value?(value) && value.keys == CONTAINERS_VALUE\n\n          tl_value ||= '@null'\n          preferred_values = []\n          preferred_values << '@reverse' if tl_value == '@reverse'\n          if ['@id', '@reverse'].include?(tl_value) && value.is_a?(Hash) && value.key?('@id')\n            t_iri = compact_iri(value['@id'], vocab: true, base: base)\n            if (r_td = term_definitions[t_iri]) && r_td.id == value['@id']\n              preferred_values.concat(CONTAINERS_VOCAB_ID)\n            else\n              preferred_values.concat(CONTAINERS_ID_VOCAB)\n            end\n          else\n            tl = '@any' if list?(value) && value['@list'].empty?\n            preferred_values.concat([tl_value, '@none'].compact)\n          end\n          preferred_values << '@any'\n\n          # if containers included `@language` and preferred_values includes something of the form language-tag_direction, add just the _direction part, to select terms that have that direction.\n          if (lang_dir = preferred_values.detect { |v| v.include?('_') })\n            preferred_values << ('_' + lang_dir.split('_').last)\n          end\n\n          if (p_term = select_term(iri, containers, tl, preferred_values))\n            return p_term\n          end\n        end\n\n        # At this point, there is no simple term that iri can be compacted to. If vocab is true and active context has a vocabulary mapping:\n        if vocab && self.vocab && iri.start_with?(self.vocab) && iri.length > self.vocab.length\n          suffix = iri[self.vocab.length..]\n          return suffix unless term_definitions.key?(suffix)\n        end\n\n        # The iri could not be compacted using the active context's vocabulary mapping. Try to create a compact IRI, starting by initializing compact IRI to null. This variable will be used to tore the created compact IRI, if any.\n        candidates = []\n\n        term_definitions.each do |term, td|\n          # Skip term if `@prefix` is not true in term definition\n          next unless td&.prefix?\n\n          next if td&.id.nil? || td.id == iri || !td.match_iri?(iri)\n\n          suffix = iri[td.id.length..]\n          ciri = \"#{term}:#{suffix}\"\n          candidates << ciri unless value && term_definitions.key?(ciri)\n        end\n\n        return candidates.min unless candidates.empty?\n\n        # If we still don't have any terms and we're using standard_prefixes,\n        # try those, and add to mapping\n        if @options[:standard_prefixes]\n          candidates = RDF::Vocabulary\n            .select { |v| iri.start_with?(v.to_uri.to_s) && iri != v.to_uri.to_s }\n            .map do |v|\n              prefix = v.__name__.to_s.split('::').last.downcase\n              set_mapping(prefix, v.to_uri.to_s)\n              iri.sub(v.to_uri.to_s, \"#{prefix}:\").sub(/:$/, '')\n            end\n\n          return candidates.min unless candidates.empty?\n        end\n\n        # If iri could be confused with a compact IRI using a term in this context, signal an error\n        term_definitions.each do |term, td|\n          next unless td.prefix? && td.match_compact_iri?(iri)\n\n          raise JSON::LD::JsonLdError::IRIConfusedWithPrefix, \"Absolute IRI '#{iri}' confused with prefix '#{term}'\"\n        end\n\n        return iri if vocab\n\n        # transform iri to a relative IRI using the document's base IRI\n        iri = remove_base(self.base || base, iri)\n        # Make . relative if it has the form of a keyword.\n        iri = \"./#{iri}\" if iri.match?(/^@[a-zA-Z]+$/)\n\n        iri\n      end\n\n      ##\n      # If active property has a type mapping in the active context set to @id or @vocab, a JSON object with a single member @id whose value is the result of using the IRI Expansion algorithm on value is returned.\n      #\n      # Otherwise, the result will be a JSON object containing an @value member whose value is the passed value. Additionally, an @type member will be included if there is a type mapping associated with the active property or an @language member if value is a string and there is language mapping associated with the active property.\n      #\n      # @param [String] property\n      #   Associated property used to find coercion rules\n      # @param [Hash, String] value\n      #   Value (literal or IRI) to be expanded\n      # @param [Boolean] useNativeTypes (false) use native representations\n      # @param [Boolean] rdfDirection (nil) decode i18n datatype if i18n-datatype\n      # @param [String, RDF::URI] base for resolving document-relative IRIs\n      # @param  [Hash{Symbol => Object}] options\n      #\n      # @return [Hash] Object representation of value\n      # @raise [RDF::ReaderError] if the iri cannot be expanded\n      # @see https://www.w3.org/TR/json-ld11-api/#value-expansion\n      def expand_value(property, value, useNativeTypes: false, rdfDirection: nil, base: nil, **_options)\n        td = term_definitions.fetch(property, TermDefinition.new(property))\n\n        # If the active property has a type mapping in active context that is @id, return a new JSON object containing a single key-value pair where the key is @id and the value is the result of using the IRI Expansion algorithm, passing active context, value, and true for document relative.\n        if value.is_a?(String) && td.type_mapping == '@id'\n          # log_debug(\"\") {\"as relative IRI: #{value.inspect}\"}\n          return { '@id' => expand_iri(value, documentRelative: true, base: base).to_s }\n        end\n\n        # If active property has a type mapping in active context that is @vocab, return a new JSON object containing a single key-value pair where the key is @id and the value is the result of using the IRI Expansion algorithm, passing active context, value, true for vocab, and true for document relative.\n        if value.is_a?(String) && td.type_mapping == '@vocab'\n          return { '@id' => expand_iri(value, vocab: true, documentRelative: true, base: base).to_s }\n        end\n\n        case value\n        when RDF::URI, RDF::Node\n          { '@id' => value.to_s }\n        when Date, DateTime, Time\n          lit = RDF::Literal.new(value)\n          { '@value' => lit.to_s, '@type' => lit.datatype.to_s }\n        else\n          # Otherwise, initialize result to a JSON object with an @value member whose value is set to value.\n          res = {}\n\n          if td.type_mapping && !CONTAINERS_ID_VOCAB.include?(td.type_mapping.to_s)\n            res['@type'] = td.type_mapping.to_s\n          elsif value.is_a?(String)\n            language = language(property)\n            direction = direction(property)\n            res['@language'] = language if language\n            res['@direction'] = direction if direction\n          end\n\n          res.merge('@value' => value)\n        end\n      end\n\n      ##\n      # Compact a value\n      #\n      # @param [String] property\n      #   Associated property used to find coercion rules\n      # @param [Hash] value\n      #   Value (literal or IRI), in full object representation, to be compacted\n      # @param [String, RDF::URI] base for resolving document-relative IRIs\n      #\n      # @return [Hash] Object representation of value\n      # @raise [JsonLdError] if the iri cannot be expanded\n      # @see https://www.w3.org/TR/json-ld11-api/#value-compaction\n      # FIXME: revisit the specification version of this.\n      def compact_value(property, value, base: nil)\n        # log_debug(\"compact_value\") {\"property: #{property.inspect}, value: #{value.inspect}\"}\n\n        indexing = index?(value) && container(property).include?('@index')\n        language = language(property)\n        direction = direction(property)\n\n        result = if coerce(property) == '@id' && value.key?('@id') && (value.keys - %w[@id @index]).empty?\n          # Compact an @id coercion\n          # log_debug(\"\") {\" (@id & coerce)\"}\n          compact_iri(value['@id'], base: base)\n        elsif coerce(property) == '@vocab' && value.key?('@id') && (value.keys - %w[@id @index]).empty?\n          # Compact an @id coercion\n          # log_debug(\"\") {\" (@id & coerce & vocab)\"}\n          compact_iri(value['@id'], vocab: true)\n        elsif value.key?('@id')\n          # log_debug(\"\") {\" (@id)\"}\n          # return value as is\n          value\n        elsif value['@type'] && value['@type'] == coerce(property)\n          # Compact common datatype\n          # log_debug(\"\") {\" (@type & coerce) == #{coerce(property)}\"}\n          value['@value']\n        elsif coerce(property) == '@none' || value['@type']\n          # use original expanded value\n          value\n        elsif !value['@value'].is_a?(String)\n          # log_debug(\"\") {\" (native)\"}\n          indexing || !index?(value) ? value['@value'] : value\n        elsif value['@language'].to_s.casecmp(language.to_s).zero? && value['@direction'] == direction\n          # Compact language and direction\n          indexing || !index?(value) ? value['@value'] : value\n        else\n          value\n        end\n\n        if result.is_a?(Hash) && result.key?('@type') && value['@type'] != '@json'\n          # Compact values of @type\n          c_type = if result['@type'].is_a?(Array)\n            result['@type'].map { |t| compact_iri(t, vocab: true) }\n          else\n            compact_iri(result['@type'], vocab: true)\n          end\n          result = result.merge('@type' => c_type)\n        end\n\n        # If the result is an object, tranform keys using any term keyword aliases\n        if result.is_a?(Hash) && result.keys.any? { |k| self.alias(k) != k }\n          # log_debug(\"\") {\" (map to key aliases)\"}\n          new_element = {}\n          result.each do |k, v|\n            new_element[self.alias(k)] = v\n          end\n          result = new_element\n        end\n\n        # log_debug(\"\") {\"=> #{result.inspect}\"}\n        result\n      end\n\n      ##\n      # Turn this into a source for a new instantiation\n      # @param [Array<String>] aliases\n      #   Other URLs to alias when preloading\n      # @return [String]\n      def to_rb(*aliases)\n        canon_base = RDF::URI(context_base).canonicalize\n        defn = []\n\n        defn << \"base: #{base.to_s.inspect}\" if base\n        defn << \"language: #{default_language.inspect}\" if default_language\n        defn << \"vocab: #{vocab.to_s.inspect}\" if vocab\n        defn << \"processingMode: #{processingMode.inspect}\" if processingMode\n        term_defs = term_definitions.map do |term, td|\n          \"      \" + term.inspect + \" => \" + td.to_rb\n        end.sort\n        defn << \"term_definitions: {\\n#{term_defs.join(\",\\n\")}\\n    }\" unless term_defs.empty?\n        %(# -*- encoding: utf-8 -*-\n      # frozen_string_literal: true\n      # This file generated automatically from #{context_base}\n      require 'json/ld'\n      class JSON::LD::Context\n      ).gsub(/^      /, '') +\n          %[  add_preloaded(\"#{canon_base}\") do\\n    new(] + defn.join(\", \") + \")\\n  end\\n\" +\n          aliases.map { |a| %[  alias_preloaded(\"#{a}\", \"#{canon_base}\")\\n] }.join +\n          \"end\\n\"\n      end\n\n      def inspect\n        v = %w([Context)\n        v << \"base=#{base}\" if base\n        v << \"vocab=#{vocab}\" if vocab\n        v << \"processingMode=#{processingMode}\" if processingMode\n        v << \"default_language=#{default_language}\" if default_language\n        v << \"default_direction=#{default_direction}\" if default_direction\n        v << \"previous_context\" if previous_context\n        v << \"term_definitions[#{term_definitions.length}]=#{term_definitions}\"\n        v.join(\" \") + \"]\"\n      end\n\n      # Duplicate an active context, allowing it to be modified.\n      def dup\n        that = self\n        ec = Context.new(unfrozen: true, **@options)\n        ec.context_base = that.context_base\n        ec.base = that.base unless that.base.nil?\n        ec.default_direction = that.default_direction\n        ec.default_language = that.default_language\n        ec.previous_context = that.previous_context\n        ec.processingMode = that.processingMode if that.instance_variable_get(:@processingMode)\n        ec.vocab = that.vocab if that.vocab\n\n        ec.instance_eval do\n          @term_definitions = that.term_definitions.dup\n          @iri_to_term = that.iri_to_term\n        end\n        ec\n      end\n\n      protected\n\n      ##\n      # Determine if `term` is a suitable term.\n      # Term may be any valid JSON string.\n      #\n      # @param [String] term\n      # @return [Boolean]\n      def term_valid?(term)\n        term.is_a?(String) && !term.empty?\n      end\n\n      # Reverse term mapping, typically used for finding aliases for keys.\n      #\n      # Returns either the original value, or a mapping for this value.\n      #\n      # @example\n      #   {\"@context\": {\"id\": \"@id\"}, \"@id\": \"foo\"} => {\"id\": \"foo\"}\n      #\n      # @param [RDF::URI, String] value\n      # @return [String]\n      def alias(value)\n        iri_to_term.fetch(value, value)\n      end\n\n      private\n\n      CONTEXT_CONTAINER_ARRAY_TERMS = Set.new(%w[@set @list @graph]).freeze\n      CONTEXT_CONTAINER_ID_GRAPH = Set.new(%w[@id @graph]).freeze\n      CONTEXT_CONTAINER_INDEX_GRAPH = Set.new(%w[@index @graph]).freeze\n      CONTEXT_BASE_FRAG_OR_QUERY = %w[? #].freeze\n      CONTEXT_TYPE_ID_VOCAB = %w[@id @vocab].freeze\n\n      ##\n      # Reads the `@context` from an IO\n      def load_context(io, **options)\n        io.rewind\n        remote_doc = API.loadRemoteDocument(io, **options)\n        if remote_doc.document.is_a?(String)\n          MultiJson.load(remote_doc.document)\n        else\n          remote_doc.document\n        end\n      end\n\n      def uri(value)\n        case value.to_s\n        when /^_:(.*)$/\n          # Map BlankNodes if a namer is given\n          # log_debug \"uri(bnode)#{value}: #{$1}\"\n          bnode(namer.get_sym(::Regexp.last_match(1)))\n        else\n          RDF::URI(value)\n          # value.validate! if options[:validate]\n\n        end\n      end\n\n      # Keep track of allocated BNodes\n      #\n      # Don't actually use the name provided, to prevent name alias issues.\n      # @return [RDF::Node]\n      def bnode(value = nil)\n        @@bnode_cache ||= {}\n        @@bnode_cache[value.to_s] ||= RDF::Node.new(value)\n      end\n\n      ##\n      # Inverse Context creation\n      #\n      # When there is more than one term that could be chosen to compact an IRI, it has to be ensured that the term selection is both deterministic and represents the most context-appropriate choice whilst taking into consideration algorithmic complexity.\n      #\n      # In order to make term selections, the concept of an inverse context is introduced. An inverse context is essentially a reverse lookup table that maps container mappings, type mappings, and language mappings to a simple term for a given active context. A inverse context only needs to be generated for an active context if it is being used for compaction.\n      #\n      # To make use of an inverse context, a list of preferred container mappings and the type mapping or language mapping are gathered for a particular value associated with an IRI. These parameters are then fed to the Term Selection algorithm, which will find the term that most appropriately matches the value's mappings.\n      #\n      # @example Basic structure of resulting inverse context\n      #     {\n      #       \"http://example.com/term\": {\n      #         \"@language\": {\n      #           \"@null\": \"term\",\n      #           \"@none\": \"term\",\n      #           \"en\": \"term\",\n      #           \"ar_rtl\": \"term\"\n      #         },\n      #         \"@type\": {\n      #           \"@reverse\": \"term\",\n      #           \"@none\": \"term\",\n      #           \"http://datatype\": \"term\"\n      #         },\n      #         \"@any\": {\n      #           \"@none\": \"term\",\n      #         }\n      #       }\n      #     }\n      # @return [Hash{String => Hash{String => String}}]\n      # @todo May want to include @set along with container to allow selecting terms using @set over those without @set. May require adding some notion of value cardinality to compact_iri\n      def inverse_context\n        Context.inverse_cache[hash] ||= begin\n          result = {}\n          default_language = (self.default_language || '@none').downcase\n          term_definitions.keys.sort do |a, b|\n            a.length == b.length ? (a <=> b) : (a.length <=> b.length)\n          end.each do |term|\n            next unless (td = term_definitions[term])\n\n            container = td.container_mapping.to_a.join\n            if container.empty?\n              container = td.as_set? ? %(@set) : %(@none)\n            end\n\n            container_map = result[td.id.to_s] ||= {}\n            tl_map = container_map[container] ||= { '@language' => {}, '@type' => {}, '@any' => {} }\n            type_map = tl_map['@type']\n            language_map = tl_map['@language']\n            any_map = tl_map['@any']\n            any_map['@none'] ||= term\n            if td.reverse_property\n              type_map['@reverse'] ||= term\n            elsif td.type_mapping == '@none'\n              type_map['@any'] ||= term\n              language_map['@any'] ||= term\n              any_map['@any'] ||= term\n            elsif td.type_mapping\n              type_map[td.type_mapping.to_s] ||= term\n            elsif !td.language_mapping.nil? && !td.direction_mapping.nil?\n              lang_dir = if td.language_mapping && td.direction_mapping\n                \"#{td.language_mapping}_#{td.direction_mapping}\".downcase\n              elsif td.language_mapping\n                td.language_mapping.downcase\n              elsif td.direction_mapping\n                \"_#{td.direction_mapping}\"\n              else\n                \"@null\"\n              end\n              language_map[lang_dir] ||= term\n            elsif !td.language_mapping.nil?\n              lang_dir = (td.language_mapping || '@null').downcase\n              language_map[lang_dir] ||= term\n            elsif !td.direction_mapping.nil?\n              lang_dir = td.direction_mapping ? \"_#{td.direction_mapping}\" : '@none'\n              language_map[lang_dir] ||= term\n            elsif default_direction\n              language_map[\"_#{default_direction}\"] ||= term\n              language_map['@none'] ||= term\n              type_map['@none'] ||= term\n            else\n              language_map[default_language] ||= term\n              language_map['@none'] ||= term\n              type_map['@none'] ||= term\n            end\n          end\n          result\n        end\n      end\n\n      ##\n      # This algorithm, invoked via the IRI Compaction algorithm, makes use of an active context's inverse context to find the term that is best used to compact an IRI. Other information about a value associated with the IRI is given, including which container mappings and which type mapping or language mapping would be best used to express the value.\n      #\n      # @param [String] iri\n      # @param [Array<String>] containers\n      #   represents an ordered list of preferred container mappings\n      # @param [String] type_language\n      #   indicates whether to look for a term with a matching type mapping or language mapping\n      # @param [Array<String>] preferred_values\n      #   for the type mapping or language mapping\n      # @return [String]\n      def select_term(iri, containers, type_language, preferred_values)\n        # log_debug(\"select_term\") {\n        #  \"iri: #{iri.inspect}, \" +\n        #  \"containers: #{containers.inspect}, \" +\n        #  \"type_language: #{type_language.inspect}, \" +\n        #  \"preferred_values: #{preferred_values.inspect}\"\n        # }\n        container_map = inverse_context[iri]\n        # log_debug(\"  \") {\"container_map: #{container_map.inspect}\"}\n        containers.each do |container|\n          next unless container_map.key?(container)\n\n          tl_map = container_map[container]\n          value_map = tl_map[type_language]\n          preferred_values.each do |item|\n            next unless value_map.key?(item)\n\n            # log_debug(\"=>\") {value_map[item].inspect}\n            return value_map[item]\n          end\n        end\n        # log_debug(\"=>\") {\"nil\"}\n        nil\n      end\n\n      ##\n      # Removes a base IRI from the given absolute IRI.\n      #\n      # @param [String] base the base used for making `iri` relative\n      # @param [String] iri the absolute IRI\n      # @return [String]\n      #   the relative IRI if relative to base, otherwise the absolute IRI.\n      def remove_base(base, iri)\n        return iri unless base\n\n        @base_and_parents ||= begin\n          u = base\n          iri_set = u.to_s.end_with?('/') ? [u.to_s] : []\n          iri_set << u.to_s while u != './' && (u = u.parent)\n          iri_set\n        end\n        b = base.to_s\n        return iri[b.length..] if iri.start_with?(b) && CONTEXT_BASE_FRAG_OR_QUERY.include?(iri[b.length, 1])\n\n        @base_and_parents.each_with_index do |bb, index|\n          next unless iri.start_with?(bb)\n\n          rel = (\"../\" * index) + iri[bb.length..]\n          return rel.empty? ? \"./\" : rel\n        end\n        iri\n      end\n\n      ## Used for testing\n      # Retrieve term mappings\n      #\n      # @return [Array<RDF::URI>]\n      def mappings\n        {}.tap do |memo|\n          term_definitions.each_pair do |t, td|\n            memo[t] = td ? td.id : nil\n          end\n        end\n      end\n\n      ## Used for testing\n      # Retrieve term mapping\n      #\n      # @param [String, #to_s] term\n      #\n      # @return [RDF::URI, String]\n      def mapping(term)\n        term_definitions[term]&.id\n      end\n\n      ## Used for testing\n      # Retrieve language mappings\n      #\n      # @return [Array<String>]\n      # @deprecated\n      def languages\n        {}.tap do |memo|\n          term_definitions.each_pair do |t, td|\n            memo[t] = td.language_mapping\n          end\n        end\n      end\n\n      # Ensure @container mapping is appropriate\n      # The result is the original container definition. For IRI containers, this is necessary to be able to determine the @type mapping for string values\n      def check_container(container, _local_context, _defined, term)\n        if container.is_a?(Array) && processingMode('json-ld-1.0')\n          raise JsonLdError::InvalidContainerMapping,\n            \"'@container' on term #{term.inspect} must be a string: #{container.inspect}\"\n        end\n\n        val = Set.new(Array(container))\n        val.delete('@set') if (has_set = val.include?('@set'))\n\n        if val.include?('@list')\n          unless !has_set && val.length == 1\n            raise JsonLdError::InvalidContainerMapping,\n              \"'@container' on term #{term.inspect} using @list cannot have any other values\"\n          end\n          # Okay\n        elsif val.include?('@language')\n          if has_set && processingMode('json-ld-1.0')\n            raise JsonLdError::InvalidContainerMapping,\n              \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n          end\n          unless val.length == 1\n            raise JsonLdError::InvalidContainerMapping,\n              \"'@container' on term #{term.inspect} using @language cannot have any values other than @set, found  #{container.inspect}\"\n          end\n          # Okay\n        elsif val.include?('@index')\n          if has_set && processingMode('json-ld-1.0')\n            raise JsonLdError::InvalidContainerMapping,\n              \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n          end\n          unless (val - CONTEXT_CONTAINER_INDEX_GRAPH).empty?\n            raise JsonLdError::InvalidContainerMapping,\n              \"'@container' on term #{term.inspect} using @index cannot have any values other than @set and/or @graph, found  #{container.inspect}\"\n          end\n          # Okay\n        elsif val.include?('@id')\n          if processingMode('json-ld-1.0')\n            raise JsonLdError::InvalidContainerMapping,\n              \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n          end\n          unless val.subset?(CONTEXT_CONTAINER_ID_GRAPH)\n            raise JsonLdError::InvalidContainerMapping,\n              \"'@container' on term #{term.inspect} using @id cannot have any values other than @set and/or @graph, found  #{container.inspect}\"\n          end\n          # Okay\n        elsif val.include?('@type') || val.include?('@graph')\n          if processingMode('json-ld-1.0')\n            raise JsonLdError::InvalidContainerMapping,\n              \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n          end\n          unless val.length == 1\n            raise JsonLdError::InvalidContainerMapping,\n              \"'@container' on term #{term.inspect} using @language cannot have any values other than @set, found  #{container.inspect}\"\n          end\n          # Okay\n        elsif val.empty?\n          # Okay\n        else\n          raise JsonLdError::InvalidContainerMapping,\n            \"unknown mapping for '@container' to #{container.inspect} on term #{term.inspect}\"\n        end\n        Array(container)\n      end\n\n      # Term Definitions specify how properties and values have to be interpreted as well as the current vocabulary mapping and the default language\n      class TermDefinition\n        # @return [RDF::URI] IRI map\n        attr_accessor :id\n\n        # @return [String] term name\n        attr_accessor :term\n\n        # @return [String] Type mapping\n        attr_accessor :type_mapping\n\n        # Base container mapping, without @set\n        # @return [Array<'@index', '@language', '@index', '@set', '@type', '@id', '@graph'>] Container mapping\n        attr_reader :container_mapping\n\n        # @return [String] Term used for nest properties\n        attr_accessor :nest\n\n        # Language mapping of term, `false` is used if there is an explicit language mapping for this term.\n        # @return [String] Language mapping\n        attr_accessor :language_mapping\n\n        # Direction of term, `false` is used if there is explicit direction mapping mapping for this term.\n        # @return [\"ltr\", \"rtl\"] direction_mapping\n        attr_accessor :direction_mapping\n\n        # @return [Boolean] Reverse Property\n        attr_accessor :reverse_property\n\n        # This is a simple term definition, not an expanded term definition\n        # @return [Boolean]\n        attr_accessor :simple\n\n        # Property used for data indexing; defaults to @index\n        # @return [Boolean]\n        attr_accessor :index\n\n        # Indicate that term may be used as a prefix\n        attr_writer :prefix\n\n        # Term-specific context\n        # @return [Hash{String => Object}]\n        attr_accessor :context\n\n        # Term is protected.\n        # @return [Boolean]\n        attr_writer :protected\n\n        # This is a simple term definition, not an expanded term definition\n        # @return [Boolean] simple\n        def simple?\n          simple\n        end\n\n        # This is an appropriate term to use as the prefix of a compact IRI\n        # @return [Boolean] simple\n        def prefix?\n          @prefix\n        end\n\n        # Create a new Term Mapping with an ID\n        # @param [String] term\n        # @param [String] id\n        # @param [String] type_mapping Type mapping\n        # @param [Set<'@index', '@language', '@index', '@set', '@type', '@id', '@graph'>] container_mapping\n        # @param [String] language_mapping\n        #   Language mapping of term, `false` is used if there is an explicit language mapping for this term\n        # @param [\"ltr\", \"rtl\"] direction_mapping\n        #   Direction mapping of term, `false` is used if there is an explicit direction mapping for this term\n        # @param [Boolean] reverse_property\n        # @param [Boolean] protected mark resulting context as protected\n        # @param [String] nest term used for nest properties\n        # @param [Boolean] simple\n        #   This is a simple term definition, not an expanded term definition\n        # @param [Boolean] prefix\n        #   Term may be used as a prefix\n        def initialize(term,\n                       id: nil,\n                       index: nil,\n                       type_mapping: nil,\n                       container_mapping: nil,\n                       language_mapping: nil,\n                       direction_mapping: nil,\n                       reverse_property: false,\n                       nest: nil,\n                       protected: nil,\n                       simple: false,\n                       prefix: nil,\n                       context: nil)\n          @term                   = term\n          @id                     = id.to_s           unless id.nil?\n          @index                  = index.to_s        unless index.nil?\n          @type_mapping           = type_mapping.to_s unless type_mapping.nil?\n          self.container_mapping  = container_mapping\n          @language_mapping       = language_mapping  unless language_mapping.nil?\n          @direction_mapping      = direction_mapping unless direction_mapping.nil?\n          @reverse_property       = reverse_property\n          @protected              = protected\n          @nest                   = nest unless nest.nil?\n          @simple                 = simple\n          @prefix                 = prefix            unless prefix.nil?\n          @context                = context           unless context.nil?\n        end\n\n        # Term is protected.\n        # @return [Boolean]\n        def protected?\n          !!@protected\n        end\n\n        # Returns true if the term matches a IRI\n        #\n        # @param iri [String] the IRI\n        # @return [Boolean]\n        def match_iri?(iri)\n          iri.start_with?(id)\n        end\n\n        # Returns true if the term matches a compact IRI\n        #\n        # @param iri [String] the compact IRI\n        # @return [Boolean]\n        def match_compact_iri?(iri)\n          iri.start_with?(prefix_colon)\n        end\n\n        # Set container mapping, from an array which may include @set\n        def container_mapping=(mapping)\n          mapping = case mapping\n          when Set then mapping\n          when Array then Set.new(mapping)\n          when String then Set[mapping]\n          when nil then Set.new\n          else\n            raise \"Shouldn't happen with #{mapping.inspect}\"\n          end\n          if (@as_set = mapping.include?('@set'))\n            mapping = mapping.dup\n            mapping.delete('@set')\n          end\n          @container_mapping = mapping\n          @index ||= '@index' if mapping.include?('@index')\n        end\n\n        ##\n        # Output Hash or String definition for this definition considering @language and @vocab\n        #\n        # @param [Context] context\n        # @return [String, Hash{String => Array[String], String}]\n        def to_context_definition(context)\n          cid = if context.vocab && id.start_with?(context.vocab)\n            # Nothing to return unless it's the same as the vocab\n            id == context.vocab ? context.vocab : id.to_s[context.vocab.length..]\n          else\n            # Find a term to act as a prefix\n            iri, prefix = context.iri_to_term.detect { |i, _p| id.to_s.start_with?(i.to_s) }\n            iri && iri != id ? \"#{prefix}:#{id.to_s[iri.length..]}\" : id\n          end\n\n          if simple?\n            cid.to_s unless cid == term && context.vocab\n          else\n            defn = {}\n            defn[reverse_property ? '@reverse' : '@id'] = cid.to_s unless cid == term && !reverse_property\n            if type_mapping\n              defn['@type'] = if KEYWORDS.include?(type_mapping)\n                type_mapping\n              else\n                context.compact_iri(type_mapping, vocab: true)\n              end\n            end\n\n            cm = Array(container_mapping)\n            cm << \"@set\" if as_set? && !cm.include?(\"@set\")\n            cm = cm.first if cm.length == 1\n            defn['@container'] = cm unless cm.empty?\n            # Language set as false to be output as null\n            defn['@language'] = (@language_mapping || nil) unless @language_mapping.nil?\n            defn['@direction'] = (@direction_mapping || nil) unless @direction_mapping.nil?\n            defn['@context'] = @context if @context\n            defn['@nest'] = @nest if @nest\n            defn['@index'] = @index if @index\n            defn['@prefix'] = @prefix unless @prefix.nil?\n            defn\n          end\n        end\n\n        ##\n        # Turn this into a source for a new instantiation\n        # FIXME: context serialization\n        # @return [String]\n        def to_rb\n          defn = [%(TermDefinition.new\\(#{term.inspect})]\n          %w[id index type_mapping container_mapping language_mapping direction_mapping reverse_property nest simple\n             prefix context protected].each do |acc|\n            v = instance_variable_get(\"@#{acc}\".to_sym)\n            v = v.to_s if v.is_a?(RDF::Term)\n            if acc == 'container_mapping'\n              v = v.to_a\n              v << '@set' if as_set?\n              v = v.first if v.length <= 1\n            end\n            defn << \"#{acc}: #{v.inspect}\" if v\n          end\n          defn.join(', ') + \")\"\n        end\n\n        # If container mapping was defined along with @set\n        # @return [Boolean]\n        def as_set?\n          @as_set || false\n        end\n\n        # Check if term definitions are identical, modulo @protected\n        # @return [Boolean]\n        def ==(other)\n          other.is_a?(TermDefinition) &&\n            id == other.id &&\n            term == other.term &&\n            type_mapping == other.type_mapping &&\n            container_mapping == other.container_mapping &&\n            nest == other.nest &&\n            language_mapping == other.language_mapping &&\n            direction_mapping == other.direction_mapping &&\n            reverse_property == other.reverse_property &&\n            index == other.index &&\n            context == other.context &&\n            prefix? == other.prefix? &&\n            as_set? == other.as_set?\n        end\n\n        def inspect\n          v = %w([TD)\n          v << \"id=#{@id}\"\n          v << \"index=#{index.inspect}\" unless index.nil?\n          v << \"term=#{@term}\"\n          v << \"rev\" if reverse_property\n          v << \"container=#{container_mapping}\" if container_mapping\n          v << \"as_set=#{as_set?.inspect}\"\n          v << \"lang=#{language_mapping.inspect}\" unless language_mapping.nil?\n          v << \"dir=#{direction_mapping.inspect}\" unless direction_mapping.nil?\n          v << \"type=#{type_mapping}\" unless type_mapping.nil?\n          v << \"nest=#{nest.inspect}\" unless nest.nil?\n          v << \"simple=true\" if @simple\n          v << \"protected=true\" if @protected\n          v << \"prefix=#{@prefix.inspect}\" unless @prefix.nil?\n          v << \"has-context\" unless context.nil?\n          v.join(\" \") + \"]\"\n        end\n\n        private\n\n        def prefix_colon\n          @prefix_colon ||= \"#{term}:\".freeze\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/expand.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'set'\n\nmodule JSON\n  module LD\n    ##\n    # Expand module, used as part of API\n    module Expand\n      include Utils\n\n      # The following constant is used to reduce object allocations\n      CONTAINER_INDEX_ID_TYPE = Set['@index', '@id', '@type'].freeze\n      KEY_ID = %w[@id].freeze\n      KEYS_VALUE_LANGUAGE_TYPE_INDEX_DIRECTION = %w[@value @language @type @index @direction @annotation].freeze\n      KEYS_SET_LIST_INDEX = %w[@set @list @index].freeze\n      KEYS_INCLUDED_TYPE_REVERSE = %w[@included @type @reverse].freeze\n\n      ##\n      # Expand an Array or Object given an active context and performing local context expansion.\n      #\n      # @param [Array, Hash] input\n      # @param [String] active_property\n      # @param [Context] context\n      # @param [Boolean] framing (false)\n      #   Special rules for expanding a frame\n      # @param [Boolean] from_map\n      #   Expanding from a map, which could be an `@type` map, so don't clear out context term definitions\n      #\n      # @return [Array<Hash{String => Object}>]\n      def expand(input, active_property, context,\n                 framing: false, from_map: false, log_depth: nil)\n        # log_debug(\"expand\", depth: log_depth.to_i) {\"input: #{input.inspect}, active_property: #{active_property.inspect}, context: #{context.inspect}\"}\n        framing = false if active_property == '@default'\n        if active_property\n          expanded_active_property = context.expand_iri(active_property, vocab: true, as_string: true,\n            base: @options[:base])\n        end\n\n        # Use a term-specific context, if defined, based on the non-type-scoped context.\n        if active_property && context.term_definitions[active_property]\n          property_scoped_context = context.term_definitions[active_property].context\n        end\n        # log_debug(\"expand\", depth: log_depth.to_i) {\"property_scoped_context: #{property_scoped_context.inspect}\"} unless property_scoped_context.nil?\n\n        case input\n        when Array\n          # If element is an array,\n          is_list = context.container(active_property).include?('@list')\n          input.each_with_object([]) do |v, memo|\n            # Initialize expanded item to the result of using this algorithm recursively, passing active context, active property, and item as element.\n            v = expand(v, active_property, context,\n              framing: framing,\n              from_map: from_map,\n              log_depth: log_depth.to_i + 1)\n\n            # If the active property is @list or its container mapping is set to @list and v is an array, change it to a list object\n            if is_list && v.is_a?(Array)\n              # Make sure that no member of v contains an annotation object\n              if v.any? { |n| n.is_a?(Hash) && n.key?('@annotation') }\n                raise JsonLdError::InvalidAnnotation,\n                  \"A list element must not contain @annotation.\"\n              end\n              v = { \"@list\" => v }\n            end\n\n            case v\n            when nil then nil\n            when Array then memo.concat(v)\n            else            memo << v\n            end\n          end\n\n        when Hash\n          if context.previous_context\n            expanded_key_map = input.keys.inject({}) do |memo, key|\n              memo.merge(key => context.expand_iri(key, vocab: true, as_string: true, base: @options[:base]))\n            end\n            # Revert any previously type-scoped term definitions, unless this is from a map, a value object or a subject reference\n            revert_context = !from_map &&\n                             !expanded_key_map.value?('@value') &&\n                             expanded_key_map.values != ['@id']\n\n            # If there's a previous context, the context was type-scoped\n            # log_debug(\"expand\", depth: log_depth.to_i) {\"previous_context: #{context.previous_context.inspect}\"} if revert_context\n            context = context.previous_context if revert_context\n          end\n\n          # Apply property-scoped context after reverting term-scoped context\n          unless property_scoped_context.nil?\n            context = context.parse(property_scoped_context, base: @options[:base], override_protected: true)\n          end\n          # log_debug(\"expand\", depth: log_depth.to_i) {\"after property_scoped_context: #{context.inspect}\"} unless property_scoped_context.nil?\n\n          # If element contains the key @context, set active context to the result of the Context Processing algorithm, passing active context and the value of the @context key as local context.\n          if input.key?('@context')\n            context = context.parse(input['@context'], base: @options[:base])\n            # log_debug(\"expand\", depth: log_depth.to_i) {\"context: #{context.inspect}\"}\n          end\n\n          # Set the type-scoped context to the context on input, for use later\n          type_scoped_context = context\n\n          output_object = {}\n\n          # See if keys mapping to @type have terms with a local context\n          type_key = nil\n          (input.keys - %w[@context]).sort\n            .select { |k| context.expand_iri(k, vocab: true, base: @options[:base]) == '@type' }\n            .each do |tk|\n            type_key ||= tk # Side effect saves the first found key mapping to @type\n            Array(input[tk]).sort.each do |term|\n              if type_scoped_context.term_definitions[term]\n                term_context = type_scoped_context.term_definitions[term].context\n              end\n              unless term_context.nil?\n                # log_debug(\"expand\", depth: log_depth.to_i) {\"term_context[#{term}]: #{term_context.inspect}\"}\n                context = context.parse(term_context, base: @options[:base], propagate: false)\n              end\n            end\n          end\n\n          # Process each key and value in element. Ignores @nesting content\n          expand_object(input, active_property, context, output_object,\n            expanded_active_property: expanded_active_property,\n            framing: framing,\n            type_key: type_key,\n            type_scoped_context: type_scoped_context,\n            log_depth: log_depth.to_i + 1)\n\n          # log_debug(\"output object\", depth: log_depth.to_i) {output_object.inspect}\n\n          # If result contains the key @value:\n          if value?(output_object)\n            keys = output_object.keys\n            unless (keys - KEYS_VALUE_LANGUAGE_TYPE_INDEX_DIRECTION).empty?\n              # The result must not contain any keys other than @direction, @value, @language, @type, and @index. It must not contain both the @language key and the @type key. Otherwise, an invalid value object error has been detected and processing is aborted.\n              raise JsonLdError::InvalidValueObject,\n                \"value object has unknown keys: #{output_object.inspect}\"\n            end\n\n            if keys.include?('@type') && !(keys & %w[@language @direction]).empty?\n              # @type is inconsistent with either @language or @direction\n              raise JsonLdError::InvalidValueObject,\n                \"value object must not include @type with either @language or @direction: #{output_object.inspect}\"\n            end\n\n            if output_object.key?('@language') && Array(output_object['@language']).empty?\n              output_object.delete('@language')\n            end\n            type_is_json = output_object['@type'] == '@json'\n            output_object.delete('@type') if output_object.key?('@type') && Array(output_object['@type']).empty?\n\n            # If the value of result's @value key is null, then set result to null and @type is not @json.\n            ary = Array(output_object['@value'])\n            return nil if ary.empty? && !type_is_json\n\n            if output_object['@type'] == '@json' && context.processingMode('json-ld-1.1')\n              # Any value of @value is okay if @type: @json\n            elsif !ary.all? { |v| v.is_a?(String) || (v.is_a?(Hash) && v.empty?) } && output_object.key?('@language')\n              # Otherwise, if the value of result's @value member is not a string and result contains the key @language, an invalid language-tagged value error has been detected (only strings can be language-tagged) and processing is aborted.\n              raise JsonLdError::InvalidLanguageTaggedValue,\n                \"when @language is used, @value must be a string: #{output_object.inspect}\"\n            elsif output_object['@type'] &&\n                  (!Array(output_object['@type']).all? do |t|\n                     (t.is_a?(String) && RDF::URI(t).valid? && !t.start_with?('_:')) ||\n                     (t.is_a?(Hash) && t.empty?)\n                   end ||\n                   (!framing && !output_object['@type'].is_a?(String)))\n              # Otherwise, if the result has a @type member and its value is not an IRI, an invalid typed value error has been detected and processing is aborted.\n              raise JsonLdError::InvalidTypedValue,\n                \"value of @type must be an IRI or '@json': #{output_object.inspect}\"\n            elsif !framing && !output_object.fetch('@type', '').is_a?(String) &&\n                  RDF::URI(t).valid? && !t.start_with?('_:')\n              # Otherwise, if the result has a @type member and its value is not an IRI, an invalid typed value error has been detected and processing is aborted.\n              raise JsonLdError::InvalidTypedValue,\n                \"value of @type must be an IRI or '@json': #{output_object.inspect}\"\n            end\n          elsif !output_object.fetch('@type', []).is_a?(Array)\n            # Otherwise, if result contains the key @type and its associated value is not an array, set it to an array containing only the associated value.\n            output_object['@type'] = [output_object['@type']]\n          elsif output_object.key?('@set') || output_object.key?('@list')\n            # Otherwise, if result contains the key @set or @list:\n            # The result must contain at most one other key and that key must be @index. Otherwise, an invalid set or list object error has been detected and processing is aborted.\n            unless (output_object.keys - KEYS_SET_LIST_INDEX).empty?\n              raise JsonLdError::InvalidSetOrListObject,\n                \"@set or @list may only contain @index: #{output_object.keys.inspect}\"\n            end\n\n            # If result contains the key @set, then set result to the key's associated value.\n            return output_object['@set'] if output_object.key?('@set')\n          elsif output_object['@annotation']\n            # Otherwise, if result contains the key @annotation,\n            # the array value must all be node objects without an @id property, otherwise, an invalid annotation error has been detected and processing is aborted.\n            unless output_object['@annotation'].all? { |o| node?(o) && !o.key?('@id') }\n              raise JsonLdError::InvalidAnnotation,\n                \"@annotation must reference node objects without @id.\"\n            end\n\n            # Additionally, the property must not be used if there is no active property, or the expanded active property is @graph.\n            if %w[@graph @included].include?(expanded_active_property || '@graph')\n              raise JsonLdError::InvalidAnnotation,\n                \"@annotation must not be used on a top-level object.\"\n            end\n\n          end\n\n          # If result contains only the key @language, set result to null.\n          return nil if output_object.length == 1 && output_object.key?('@language')\n\n          # If active property is null or @graph, drop free-floating values as follows:\n          if (expanded_active_property || '@graph') == '@graph' &&\n             (output_object.key?('@value') || output_object.key?('@list') ||\n             ((output_object.keys - KEY_ID).empty? && !framing))\n            # log_debug(\" =>\", depth: log_depth.to_i) { \"empty top-level: \" + output_object.inspect}\n            return nil\n          end\n\n          # Re-order result keys if ordering\n          if @options[:ordered]\n            output_object.keys.sort.each_with_object({}) { |kk, memo| memo[kk] = output_object[kk] }\n          else\n            output_object\n          end\n        else\n          # Otherwise, unless the value is a number, expand the value according to the Value Expansion rules, passing active property.\n          return nil if input.nil? || active_property.nil? || expanded_active_property == '@graph'\n\n          # Apply property-scoped context\n          unless property_scoped_context.nil?\n            context = context.parse(property_scoped_context,\n              base: @options[:base],\n              override_protected: true)\n          end\n          # log_debug(\"expand\", depth: log_depth.to_i) {\"property_scoped_context: #{context.inspect}\"} unless property_scoped_context.nil?\n\n          context.expand_value(active_property, input, base: @options[:base])\n        end\n\n        # log_debug(depth: log_depth.to_i) {\" => #{result.inspect}\"}\n      end\n\n      private\n\n      # Expand each key and value of element adding them to result\n      def expand_object(input, active_property, context, output_object,\n                        expanded_active_property:,\n                        framing:,\n                        type_key:,\n                        type_scoped_context:,\n                        log_depth: nil)\n        nests = []\n\n        input_type = Array(input[type_key]).last\n        input_type = context.expand_iri(input_type, vocab: true, as_string: true, base: @options[:base]) if input_type\n\n        # Then, proceed and process each property and value in element as follows:\n        keys = @options[:ordered] ? input.keys.sort : input.keys\n        keys.each do |key|\n          # For each key and value in element, ordered lexicographically by key:\n          value = input[key]\n          expanded_property = context.expand_iri(key, vocab: true, base: @options[:base])\n\n          # If expanded property is null or it neither contains a colon (:) nor it is a keyword, drop key by continuing to the next key.\n          next if expanded_property.is_a?(RDF::URI) && expanded_property.relative?\n\n          expanded_property = expanded_property.to_s if expanded_property.is_a?(RDF::Resource)\n\n          warn \"[DEPRECATION] Blank Node properties deprecated in JSON-LD 1.1.\" if\n            @options[:validate] &&\n            expanded_property.to_s.start_with?(\"_:\") &&\n            context.processingMode('json-ld-1.1')\n\n          # log_debug(\"expand property\", depth: log_depth.to_i) {\"ap: #{active_property.inspect}, expanded: #{expanded_property.inspect}, value: #{value.inspect}\"}\n\n          if expanded_property.nil?\n            # log_debug(\" => \", depth: log_depth.to_i) {\"skip nil property\"}\n            next\n          end\n\n          if KEYWORDS.include?(expanded_property)\n            # If active property equals @reverse, an invalid reverse property map error has been detected and processing is aborted.\n            if expanded_active_property == '@reverse'\n              raise JsonLdError::InvalidReversePropertyMap,\n                \"@reverse not appropriate at this point\"\n            end\n\n            # If result has already an expanded property member (other than @type), an colliding keywords error has been detected and processing is aborted.\n            if output_object.key?(expanded_property) && !KEYS_INCLUDED_TYPE_REVERSE.include?(expanded_property)\n              raise JsonLdError::CollidingKeywords,\n                \"#{expanded_property} already exists in result\"\n            end\n\n            expanded_value = case expanded_property\n            when '@id'\n              # If expanded active property is `@annotation`, an invalid annotation error has been found and processing is aborted.\n              if expanded_active_property == '@annotation' && @options[:rdfstar]\n                raise JsonLdError::InvalidAnnotation,\n                  \"an annotation must not contain a property expanding to @id\"\n              end\n\n              # If expanded property is @id and value is not a string, an invalid @id value error has been detected and processing is aborted\n              e_id = case value\n              when String\n                context.expand_iri(value, as_string: true, base: @options[:base], documentRelative: true)\n              when Array\n                # Framing allows an array of IRIs, and always puts values in an array\n                unless framing\n                  raise JsonLdError::InvalidIdValue,\n                    \"value of @id must be a string unless framing: #{value.inspect}\"\n                end\n                context.expand_iri(value, as_string: true, base: @options[:base], documentRelative: true)\n                value.map do |v|\n                  unless v.is_a?(String)\n                    raise JsonLdError::InvalidTypeValue,\n                      \"@id value must be a string or array of strings for framing: #{v.inspect}\"\n                  end\n                  context.expand_iri(v, as_string: true, base: @options[:base], documentRelative: true)\n                end\n              when Hash\n                if framing\n                  unless value.empty?\n                    raise JsonLdError::InvalidTypeValue,\n                      \"value of @id must be a an empty object for framing: #{value.inspect}\"\n                  end\n                  [{}]\n                elsif @options[:rdfstar]\n                  # Result must have just a single statement\n                  rei_node = expand(value, nil, context, log_depth: log_depth.to_i + 1)\n\n                  # Node must not contain @reverse\n                  if rei_node&.key?('@reverse')\n                    raise JsonLdError::InvalidEmbeddedNode,\n                      \"Embedded node with @reverse\"\n                  end\n                  statements = to_enum(:item_to_rdf, rei_node)\n                  unless statements.count == 1\n                    raise JsonLdError::InvalidEmbeddedNode,\n                      \"Embedded node with #{statements.size} statements\"\n                  end\n                  rei_node\n                else\n                  unless framing\n                    raise JsonLdError::InvalidIdValue,\n                      \"value of @id must be a string unless framing: #{value.inspect}\"\n                  end\n                end\n              else\n                raise JsonLdError::InvalidIdValue,\n                  \"value of @id must be a string or hash if framing: #{value.inspect}\"\n              end\n\n              # Use array form if framing\n              if framing\n                as_array(e_id)\n              else\n                e_id\n              end\n            when '@included'\n              # Included blocks are treated as an array of separate object nodes sharing the same referencing active_property. For 1.0, it is skipped as are other unknown keywords\n              next if context.processingMode('json-ld-1.0')\n\n              included_result = as_array(expand(value, active_property, context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1))\n\n              # Expanded values must be node objects\n              unless included_result.all? do |e|\n                       node?(e)\n                     end\n                raise JsonLdError::InvalidIncludedValue,\n                  \"values of @included must expand to node objects\"\n              end\n\n              # As other properties may alias to @included, add this to any other previously expanded values\n              Array(output_object['@included']) + included_result\n            when '@type'\n              # If expanded property is @type and value is neither a string nor an array of strings, an invalid type value error has been detected and processing is aborted. Otherwise, set expanded value to the result of using the IRI Expansion algorithm, passing active context, true for vocab, and true for document relative to expand the value or each of its items.\n              # log_debug(\"@type\", depth: log_depth.to_i) {\"value: #{value.inspect}\"}\n              e_type = case value\n              when Array\n                value.map do |v|\n                  unless v.is_a?(String)\n                    raise JsonLdError::InvalidTypeValue,\n                      \"@type value must be a string or array of strings: #{v.inspect}\"\n                  end\n                  type_scoped_context.expand_iri(v,\n                    as_string: true,\n                    base: @options[:base],\n                    documentRelative: true,\n                    vocab: true)\n                end\n              when String\n                type_scoped_context.expand_iri(value,\n                  as_string: true,\n                  base: @options[:base],\n                  documentRelative: true,\n                  vocab: true)\n              when Hash\n                if !framing\n                  raise JsonLdError::InvalidTypeValue,\n                    \"@type value must be a string or array of strings: #{value.inspect}\"\n                elsif value.keys.length == 1 &&\n                      type_scoped_context.expand_iri(value.keys.first, vocab: true, base: @options[:base]) == '@default'\n                  # Expand values of @default, which must be a string, or array of strings expanding to IRIs\n                  [{ '@default' => Array(value['@default']).map do |v|\n                    unless v.is_a?(String)\n                      raise JsonLdError::InvalidTypeValue,\n                        \"@type default value must be a string or array of strings: #{v.inspect}\"\n                    end\n                    type_scoped_context.expand_iri(v,\n                      as_string: true,\n                      base: @options[:base],\n                      documentRelative: true,\n                      vocab: true)\n                  end }]\n                elsif !value.empty?\n                  raise JsonLdError::InvalidTypeValue,\n                    \"@type value must be a an empty object for framing: #{value.inspect}\"\n                else\n                  [{}]\n                end\n              else\n                raise JsonLdError::InvalidTypeValue,\n                  \"@type value must be a string or array of strings: #{value.inspect}\"\n              end\n\n              e_type = Array(output_object['@type']) + Array(e_type)\n              # Use array form if framing\n              framing || e_type.length > 1 ? e_type : e_type.first\n            when '@graph'\n              # If expanded property is @graph, set expanded value to the result of using this algorithm recursively passing active context, @graph for active property, and value for element.\n              value = expand(value, '@graph', context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1)\n              as_array(value)\n            when '@value'\n              # If expanded property is @value and input contains @type: json, accept any value.\n              # If expanded property is @value and value is not a scalar or null, an invalid value object value error has been detected and processing is aborted. (In 1.1, @value can have any JSON value of @type is @json or the property coerces to @json).\n              # Otherwise, set expanded value to value. If expanded value is null, set the @value member of result to null and continue with the next key from element. Null values need to be preserved in this case as the meaning of an @type member depends on the existence of an @value member.\n              # If framing, always use array form, unless null\n              if input_type == '@json' && context.processingMode('json-ld-1.1')\n                value\n              else\n                case value\n                when String, TrueClass, FalseClass, Numeric then (framing ? [value] : value)\n                when nil\n                  output_object['@value'] = nil\n                  next\n                when Array\n                  unless framing\n                    raise JsonLdError::InvalidValueObjectValue,\n                      \"@value value may not be an array unless framing: #{value.inspect}\"\n                  end\n                  value\n                when Hash\n                  unless value.empty? && framing\n                    raise JsonLdError::InvalidValueObjectValue,\n                      \"@value value must be a an empty object for framing: #{value.inspect}\"\n                  end\n                  [value]\n                else\n                  raise JsonLdError::InvalidValueObjectValue,\n                    \"Value of #{expanded_property} must be a scalar or null: #{value.inspect}\"\n                end\n              end\n            when '@language'\n              # If expanded property is @language and value is not a string, an invalid language-tagged string error has been detected and processing is aborted. Otherwise, set expanded value to lowercased value.\n              # If framing, always use array form, unless null\n              case value\n              when String\n                unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(value)\n                  warn \"@language must be valid BCP47: #{value.inspect}\"\n                end\n                if @options[:lowercaseLanguage]\n                  (framing ? [value.downcase] : value.downcase)\n                else\n                  (framing ? [value] : value)\n                end\n              when Array\n                unless framing\n                  raise JsonLdError::InvalidLanguageTaggedString,\n                    \"@language value may not be an array unless framing: #{value.inspect}\"\n                end\n                value.each do |v|\n                  unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(v)\n                    warn \"@language must be valid BCP47: #{v.inspect}\"\n                  end\n                end\n                @options[:lowercaseLanguage] ? value.map(&:downcase) : value\n              when Hash\n                unless value.empty? && framing\n                  raise JsonLdError::InvalidLanguageTaggedString,\n                    \"@language value must be a an empty object for framing: #{value.inspect}\"\n                end\n                [value]\n              else\n                raise JsonLdError::InvalidLanguageTaggedString,\n                  \"Value of #{expanded_property} must be a string: #{value.inspect}\"\n              end\n            when '@direction'\n              # If expanded property is @direction and value is not either 'ltr' or 'rtl', an invalid base direction error has been detected and processing is aborted. Otherwise, set expanded value to value.\n              # If framing, always use array form, unless null\n              case value\n              when 'ltr', 'rtl' then (framing ? [value] : value)\n              when Array\n                unless framing\n                  raise JsonLdError::InvalidBaseDirection,\n                    \"@direction value may not be an array unless framing: #{value.inspect}\"\n                end\n                unless value.all? do |v|\n                         %w[\n                           ltr rtl\n                         ].include?(v) || (v.is_a?(Hash) && v.empty?)\n                       end\n                  raise JsonLdError::InvalidBaseDirection,\n                    \"@direction must be one of 'ltr', 'rtl', or an array of those if framing #{value.inspect}\"\n                end\n                value\n              when Hash\n                unless value.empty? && framing\n                  raise JsonLdError::InvalidBaseDirection,\n                    \"@direction value must be a an empty object for framing: #{value.inspect}\"\n                end\n                [value]\n              else\n                raise JsonLdError::InvalidBaseDirection,\n                  \"Value of #{expanded_property} must be one of 'ltr' or 'rtl': #{value.inspect}\"\n              end\n            when '@index'\n              # If expanded property is @index and value is not a string, an invalid @index value error has been detected and processing is aborted. Otherwise, set expanded value to value.\n              unless value.is_a?(String)\n                raise JsonLdError::InvalidIndexValue,\n                  \"Value of @index is not a string: #{value.inspect}\"\n              end\n              value\n            when '@list'\n              # If expanded property is @graph:\n\n              # If active property is null or @graph, continue with the next key from element to remove the free-floating list.\n              next if (expanded_active_property || '@graph') == '@graph'\n\n              # Otherwise, initialize expanded value to the result of using this algorithm recursively passing active context, active property, and value for element.\n              value = expand(value, active_property, context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1)\n\n              # Spec FIXME: need to be sure that result is an array\n              value = as_array(value)\n\n              # Make sure that no member of value contains an annotation object\n              if value.any? { |n| n.is_a?(Hash) && n.key?('@annotation') }\n                raise JsonLdError::InvalidAnnotation,\n                  \"A list element must not contain @annotation.\"\n              end\n\n              value\n            when '@set'\n              # If expanded property is @set, set expanded value to the result of using this algorithm recursively, passing active context, active property, and value for element.\n              expand(value, active_property, context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1)\n            when '@reverse'\n              # If expanded property is @reverse and value is not a JSON object, an invalid @reverse value error has been detected and processing is aborted.\n              unless value.is_a?(Hash)\n                raise JsonLdError::InvalidReverseValue,\n                  \"@reverse value must be an object: #{value.inspect}\"\n              end\n\n              # Otherwise\n              # Initialize expanded value to the result of using this algorithm recursively, passing active context, @reverse as active property, and value as element.\n              value = expand(value, '@reverse', context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1)\n\n              # If expanded value contains an @reverse member, i.e., properties that are reversed twice, execute for each of its property and item the following steps:\n              if value.key?('@reverse')\n                # log_debug(\"@reverse\", depth: log_depth.to_i) {\"double reverse: #{value.inspect}\"}\n                value['@reverse'].each do |property, item|\n                  # If result does not have a property member, create one and set its value to an empty array.\n                  # Append item to the value of the property member of result.\n                  (output_object[property] ||= []).concat([item].flatten.compact)\n                end\n              end\n\n              # If expanded value contains members other than @reverse:\n              if !value.key?('@reverse') || value.length > 1\n                # If result does not have an @reverse member, create one and set its value to an empty JSON object.\n                reverse_map = output_object['@reverse'] ||= {}\n                value.each do |property, items|\n                  next if property == '@reverse'\n\n                  items.each do |item|\n                    if value?(item) || list?(item)\n                      raise JsonLdError::InvalidReversePropertyValue,\n                        item.inspect\n                    end\n                    merge_value(reverse_map, property, item)\n                  end\n                end\n              end\n\n              # Continue with the next key from element\n              next\n            when '@default', '@embed', '@explicit', '@omitDefault', '@preserve', '@requireAll'\n              next unless framing\n\n              # Framing keywords\n              [expand(value, expanded_property, context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1)].flatten\n            when '@nest'\n              # Add key to nests\n              nests << key\n              # Continue with the next key from element\n              next\n            when '@annotation'\n              # Skip unless rdfstar option is set\n              next unless @options[:rdfstar]\n\n              as_array(expand(value, '@annotation', context,\n                framing: framing,\n                log_depth: log_depth.to_i + 1))\n            else\n              # Skip unknown keyword\n              next\n            end\n\n            # Unless expanded value is null, set the expanded property member of result to expanded value.\n            # log_debug(\"expand #{expanded_property}\", depth: log_depth.to_i) { expanded_value.inspect}\n            unless expanded_value.nil? && expanded_property == '@value' && input_type != '@json'\n              output_object[expanded_property] =\n                expanded_value\n            end\n            next\n          end\n\n          container = context.container(key)\n          expanded_value = if context.coerce(key) == '@json'\n            # In JSON-LD 1.1, values can be native JSON\n            { \"@value\" => value, \"@type\" => \"@json\" }\n          elsif container.include?('@language') && value.is_a?(Hash)\n            # Otherwise, if key's container mapping in active context is @language and value is a JSON object then value is expanded from a language map as follows:\n\n            # Set multilingual array to an empty array.\n            ary = []\n\n            # For each key-value pair language-language value in value, ordered lexicographically by language\n            keys = @options[:ordered] ? value.keys.sort : value.keys\n            keys.each do |k|\n              expanded_k = context.expand_iri(k, vocab: true, as_string: true, base: @options[:base])\n\n              if k !~ /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/ && expanded_k != '@none'\n                warn \"@language must be valid BCP47: #{k.inspect}\"\n              end\n\n              [value[k]].flatten.each do |item|\n                # item must be a string, otherwise an invalid language map value error has been detected and processing is aborted.\n                unless item.nil? || item.is_a?(String)\n                  raise JsonLdError::InvalidLanguageMapValue,\n                    \"Expected #{item.inspect} to be a string\"\n                end\n\n                # Append a JSON object to expanded value that consists of two key-value pairs: (@value-item) and (@language-lowercased language).\n                v = { '@value' => item }\n                v['@language'] = (@options[:lowercaseLanguage] ? k.downcase : k) unless expanded_k == '@none'\n                v['@direction'] = context.direction(key) if context.direction(key)\n                ary << v if item\n              end\n            end\n\n            ary\n          elsif container.intersect?(CONTAINER_INDEX_ID_TYPE) && value.is_a?(Hash)\n            # Otherwise, if key's container mapping in active context contains @index, @id, @type and value is a JSON object then value is expanded from an index map as follows:\n\n            # Set ary to an empty array.\n            ary = []\n            index_key = context.term_definitions[key].index || '@index'\n\n            # While processing index keys, if container includes @type, clear type-scoped term definitions\n            container_context = if container.include?('@type') && context.previous_context\n              context.previous_context\n            elsif container.include?('@id') && context.term_definitions[key]\n              id_context = context.term_definitions[key].context if context.term_definitions[key]\n              if id_context.nil?\n                context\n              else\n                # log_debug(\"expand\", depth: log_depth.to_i) {\"id_context: #{id_context.inspect}\"}\n                context.parse(id_context, base: @options[:base], propagate: false)\n              end\n            else\n              context\n            end\n\n            # For each key-value in the object:\n            keys = @options[:ordered] ? value.keys.sort : value.keys\n            keys.each do |k|\n              # If container mapping in the active context includes @type, and k is a term in the active context having a local context, use that context when expanding values\n              if container.include?('@type') && container_context.term_definitions[k]\n                map_context = container_context.term_definitions[k].context\n              end\n              unless map_context.nil?\n                # log_debug(\"expand\", depth: log_depth.to_i) {\"map_context: #{map_context.inspect}\"}\n                map_context = container_context.parse(map_context, base: @options[:base],\n                  propagate: false)\n              end\n              map_context ||= container_context\n\n              expanded_k = container_context.expand_iri(k, vocab: true, as_string: true, base: @options[:base])\n\n              # Initialize index value to the result of using this algorithm recursively, passing active context, key as active property, and index value as element.\n              index_value = expand([value[k]].flatten, key, map_context,\n                framing: framing,\n                from_map: true,\n                log_depth: log_depth.to_i + 1)\n              index_value.each do |item|\n                if container.include?('@index')\n                  # Indexed graph by graph name\n                  item = { '@graph' => as_array(item) } if !graph?(item) && container.include?('@graph')\n                  if index_key == '@index'\n                    item['@index'] ||= k unless expanded_k == '@none'\n                  elsif value?(item)\n                    raise JsonLdError::InvalidValueObject, \"Attempt to add illegal key to value object: #{index_key}\"\n                  else\n                    # Expand key based on term\n                    expanded_k = if k == '@none'\n                      '@none'\n                    else\n                      container_context.expand_value(index_key, k,\n                        base: @options[:base])\n                    end\n                    index_property = container_context.expand_iri(index_key, vocab: true, as_string: true,\n                      base: @options[:base])\n                    item[index_property] = [expanded_k].concat(Array(item[index_property])) unless expanded_k == '@none'\n                  end\n                elsif container.include?('@id')\n                  # Indexed graph by graph name\n                  item = { '@graph' => as_array(item) } if !graph?(item) && container.include?('@graph')\n                  # Expand k document relative\n                  unless expanded_k == '@none'\n                    expanded_k = container_context.expand_iri(k, as_string: true, base: @options[:base],\n                      documentRelative: true)\n                  end\n                  item['@id'] ||= expanded_k unless expanded_k == '@none'\n                elsif container.include?('@type')\n                  item['@type'] = [expanded_k].concat(Array(item['@type'])) unless expanded_k == '@none'\n                end\n\n                # Append item to expanded value.\n                ary << item\n              end\n            end\n            ary\n          else\n            # Otherwise, initialize expanded value to the result of using this algorithm recursively, passing active context, key for active property, and value for element.\n            expand(value, key, context,\n              framing: framing,\n              log_depth: log_depth.to_i + 1)\n          end\n\n          # If expanded value is null, ignore key by continuing to the next key from element.\n          if expanded_value.nil?\n            # log_debug(\" => skip nil value\", depth: log_depth.to_i)\n            next\n          end\n\n          # log_debug(depth: log_depth.to_i) {\" => #{expanded_value.inspect}\"}\n\n          # If the container mapping associated to key in active context is @list and expanded value is not already a list object, convert expanded value to a list object by first setting it to an array containing only expanded value if it is not already an array, and then by setting it to a JSON object containing the key-value pair @list-expanded value.\n          if container.first == '@list' && container.length == 1 && !list?(expanded_value)\n            # log_debug(\" => \", depth: log_depth.to_i) { \"convert #{expanded_value.inspect} to list\"}\n            expanded_value = { '@list' => as_array(expanded_value) }\n          end\n          # log_debug(depth: log_depth.to_i) {\" => #{expanded_value.inspect}\"}\n\n          # convert expanded value to @graph if container specifies it\n          if container.first == '@graph' && container.length == 1\n            # log_debug(\" => \", depth: log_depth.to_i) { \"convert #{expanded_value.inspect} to list\"}\n            expanded_value = as_array(expanded_value).map do |v|\n              { '@graph' => as_array(v) }\n            end\n          end\n\n          # Otherwise, if the term definition associated to key indicates that it is a reverse property\n          # Spec FIXME: this is not an otherwise.\n          if (td = context.term_definitions[key]) && td.reverse_property\n            # If result has no @reverse member, create one and initialize its value to an empty JSON object.\n            reverse_map = output_object['@reverse'] ||= {}\n            [expanded_value].flatten.each do |item|\n              # If item is a value object or list object, an invalid reverse property value has been detected and processing is aborted.\n              if value?(item) || list?(item)\n                raise JsonLdError::InvalidReversePropertyValue,\n                  item.inspect\n              end\n\n              # If reverse map has no expanded property member, create one and initialize its value to an empty array.\n              # Append item to the value of the expanded property member of reverse map.\n              merge_value(reverse_map, expanded_property, item)\n            end\n          else\n            # Otherwise, if key is not a reverse property:\n            # If result does not have an expanded property member, create one and initialize its value to an empty array.\n            (output_object[expanded_property] ||= []).tap do |memo|\n              # expanded_value is either Array[Hash] or Hash; in both case append to memo without flatten\n              if expanded_value.is_a?(Array)\n                memo.concat(expanded_value)\n              else # Hash\n                memo << expanded_value\n              end\n            end\n          end\n        end\n\n        # For each key in nests, recusively expand content\n        nests.each do |key|\n          nest_context = context.term_definitions[key].context if context.term_definitions[key]\n          nest_context = if nest_context.nil?\n            context\n          else\n            # log_debug(\"expand\", depth: log_depth.to_i) {\"nest_context: #{nest_context.inspect}\"}\n            context.parse(nest_context, base: @options[:base],\n              override_protected: true)\n          end\n          nested_values = as_array(input[key])\n          nested_values.each do |nv|\n            raise JsonLdError::InvalidNestValue, nv.inspect unless\n              nv.is_a?(Hash) && nv.keys.none? do |k|\n                nest_context.expand_iri(k, vocab: true, base: @options[:base]) == '@value'\n              end\n\n            expand_object(nv, active_property, nest_context, output_object,\n              framing: framing,\n              expanded_active_property: expanded_active_property,\n              type_key: type_key,\n              type_scoped_context: type_scoped_context,\n              log_depth: log_depth.to_i + 1)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/extensions.rb",
    "content": "# frozen_string_literal: true\n\nmodule RDF\n  class Node\n    # Odd case of appending to a BNode identifier\n    def +(other)\n      Node.new(id + other.to_s)\n    end\n  end\n\n  class Statement\n    # Validate extended RDF\n    def valid_extended?\n      subject? && subject.resource? && subject.valid_extended? &&\n        predicate?  && predicate.resource? && predicate.valid_extended? &&\n        object?     && object.term? && object.valid_extended? &&\n        (graph? ? (graph_name.resource? && graph_name.valid_extended?) : true)\n    end\n  end\n\n  class URI\n    # Validate extended RDF\n    def valid_extended?\n      valid?\n    end\n  end\n\n  class Node\n    # Validate extended RDF\n    def valid_extended?\n      valid?\n    end\n  end\n\n  class Literal\n    # Validate extended RDF\n    def valid_extended?\n      return false if language? && language.to_s !~ /^[a-zA-Z]+(-[a-zA-Z0-9]+)*$/\n      return false if datatype? && datatype.invalid?\n\n      value.is_a?(String)\n    end\n  end\nend\n\nclass Array\n  # Optionally order items\n  #\n  # @param [Boolean] ordered\n  # @return [Array]\n  def opt_sort(ordered: false)\n    ordered ? sort : self\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/flatten.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'json/canonicalization'\n\nmodule JSON\n  module LD\n    module Flatten\n      include Utils\n\n      ##\n      # This algorithm creates a JSON object node map holding an indexed representation of the graphs and nodes represented in the passed expanded document. All nodes that are not uniquely identified by an IRI get assigned a (new) blank node identifier. The resulting node map will have a member for every graph in the document whose value is another object with a member for every node represented in the document. The default graph is stored under the @default member, all other graphs are stored under their graph name.\n      #\n      # For RDF-star/JSON-LD-star:\n      #   * Values of `@id` can be an object (embedded node); when these are used as keys in a Node Map, they are serialized as canonical JSON, and de-serialized when flattening.\n      #   * The presence of `@annotation` implies an embedded node and the annotation object is removed from the node/value object in which it appears.\n      #\n      # @param [Array, Hash] element\n      #   Expanded JSON-LD input\n      # @param [Hash] graph_map A map of graph name to subjects\n      # @param [String] active_graph\n      #   The name of the currently active graph that the processor should use when processing.\n      # @param [String] active_subject (nil)\n      #   Node identifier\n      # @param [String] active_property (nil)\n      #   Property within current node\n      # @param [Boolean] reverse (false)\n      #   Processing a reverse relationship\n      # @param [Array] list (nil)\n      #   Used when property value is a list\n      def create_node_map(element, graph_map,\n                          active_graph: '@default',\n                          active_subject: nil,\n                          active_property: nil,\n                          reverse: false,\n                          list: nil)\n        if element.is_a?(Array)\n          # If element is an array, process each entry in element recursively by passing item for element, node map, active graph, active subject, active property, and list.\n          element.map do |o|\n            create_node_map(o, graph_map,\n              active_graph: active_graph,\n              active_subject: active_subject,\n              active_property: active_property,\n              reverse: false,\n              list: list)\n          end\n        elsif !element.is_a?(Hash)\n          raise \"Expected hash or array to create_node_map, got #{element.inspect}\"\n        else\n          graph = (graph_map[active_graph] ||= {})\n          subject_node = !reverse && graph[active_subject.is_a?(Hash) ? active_subject.to_json_c14n : active_subject]\n\n          # Transform BNode types\n          if element.key?('@type')\n            element['@type'] = Array(element['@type']).map { |t| blank_node?(t) ? namer.get_name(t) : t }\n          end\n\n          if value?(element)\n            element['@type'] = element['@type'].first if element['@type']\n\n            # For rdfstar, if value contains an `@annotation` member ...\n            # note: active_subject will not be nil, and may be an object itself.\n            if element.key?('@annotation')\n              # rdfstar being true is implicit, as it is checked in expansion\n              as = if node_reference?(active_subject)\n                active_subject['@id']\n              else\n                active_subject\n              end\n              star_subject = {\n                \"@id\" => as,\n                active_property => [element]\n              }\n\n              # Note that annotation is an array, make the reified subject the id of each member of that array.\n              annotation = element.delete('@annotation').map do |a|\n                a.merge('@id' => star_subject)\n              end\n\n              # Invoke recursively using annotation.\n              create_node_map(annotation, graph_map,\n                active_graph: active_graph)\n            end\n\n            if list.nil?\n              add_value(subject_node, active_property, element, property_is_array: true, allow_duplicate: false)\n            else\n              list['@list'] << element\n            end\n          elsif list?(element)\n            result = { '@list' => [] }\n            create_node_map(element['@list'], graph_map,\n              active_graph: active_graph,\n              active_subject: active_subject,\n              active_property: active_property,\n              list: result)\n            if list.nil?\n              add_value(subject_node, active_property, result, property_is_array: true)\n            else\n              list['@list'] << result\n            end\n          else\n            # Element is a node object\n            ser_id = id = element.delete('@id')\n            if id.is_a?(Hash)\n              # Index graph using serialized id\n              ser_id = id.to_json_c14n\n            elsif id.nil?\n              ser_id = id = namer.get_name\n            end\n\n            node = graph[ser_id] ||= { '@id' => id }\n\n            if reverse\n              # NOTE: active_subject is a Hash\n              # We're processing a reverse-property relationship.\n              add_value(node, active_property, active_subject, property_is_array: true, allow_duplicate: false)\n            elsif active_property\n              reference = { '@id' => id }\n              if list.nil?\n                add_value(subject_node, active_property, reference, property_is_array: true, allow_duplicate: false)\n              else\n                list['@list'] << reference\n              end\n            end\n\n            # For rdfstar, if node contains an `@annotation` member ...\n            # note: active_subject will not be nil, and may be an object itself.\n            # XXX: what if we're reversing an annotation?\n            if element.key?('@annotation')\n              # rdfstar being true is implicit, as it is checked in expansion\n              as = if node_reference?(active_subject)\n                active_subject['@id']\n              else\n                active_subject\n              end\n              star_subject = if reverse\n                { \"@id\" => node['@id'], active_property => [{ '@id' => as }] }\n              else\n                { \"@id\" => as, active_property => [{ '@id' => node['@id'] }] }\n              end\n\n              # Note that annotation is an array, make the reified subject the id of each member of that array.\n              annotation = element.delete('@annotation').map do |a|\n                a.merge('@id' => star_subject)\n              end\n\n              # Invoke recursively using annotation.\n              create_node_map(annotation, graph_map,\n                active_graph: active_graph,\n                active_subject: star_subject)\n            end\n\n            if element.key?('@type')\n              add_value(node, '@type', element.delete('@type'), property_is_array: true, allow_duplicate: false)\n            end\n\n            if element['@index']\n              if node.key?('@index') && node['@index'] != element['@index']\n                raise JsonLdError::ConflictingIndexes,\n                  \"Element already has index #{node['@index']} dfferent from #{element['@index']}\"\n              end\n              node['@index'] = element.delete('@index')\n            end\n\n            if element['@reverse']\n              referenced_node = { '@id' => id }\n              reverse_map = element.delete('@reverse')\n              reverse_map.each do |property, values|\n                values.each do |value|\n                  create_node_map(value, graph_map,\n                    active_graph: active_graph,\n                    active_subject: referenced_node,\n                    active_property: property,\n                    reverse: true)\n                end\n              end\n            end\n\n            if element['@graph']\n              create_node_map(element.delete('@graph'), graph_map,\n                active_graph: id)\n            end\n\n            if element['@included']\n              create_node_map(element.delete('@included'), graph_map,\n                active_graph: active_graph)\n            end\n\n            element.each_key do |property|\n              value = element[property]\n\n              property = namer.get_name(property) if blank_node?(property)\n              node[property] ||= []\n              create_node_map(value, graph_map,\n                active_graph: active_graph,\n                active_subject: id,\n                active_property: property)\n            end\n          end\n        end\n      end\n\n      ##\n      # Create annotations\n      #\n      # Updates a node map from which annotations have been folded into embedded triples to re-extract the annotations.\n      #\n      # Map entries where the key is of the form of a canonicalized JSON object are used to find keys with the `@id` and property components. If found, the original map entry is removed and entries added to an `@annotation` property of the associated value.\n      #\n      # * Keys which are of the form of a canonicalized JSON object are examined in inverse order of length.\n      # * Deserialize the key into a map, and re-serialize the value of `@id`.\n      # * If the map contains an entry with that value (after re-canonicalizing, as appropriate), and the associated antry has a item which matches the non-`@id` item from the map, the node is used to create an `@annotation` entry within that value.\n      #\n      # @param [Hash{String => Hash}] node_map\n      # @return [Hash{String => Hash}]\n      def create_annotations(node_map)\n        node_map.keys\n          .select { |k| k.start_with?('{') }\n          .sort_by(&:length)\n          .reverse_each do |key|\n          annotation = node_map[key]\n          # Deserialize key, and re-serialize the `@id` value.\n          emb = annotation['@id'].dup\n          id = emb.delete('@id')\n          property, value = emb.to_a.first\n\n          # If id is a map, set it to the result of canonicalizing that value, otherwise to itself.\n          id = id.to_json_c14n if id.is_a?(Hash)\n\n          next unless node_map.key?(id)\n\n          # If node map has an entry for id and that entry contains the same property and value from entry:\n          node = node_map[id]\n\n          next unless node.key?(property)\n\n          node[property].each do |emb_value|\n            next unless emb_value == value.first\n\n            node_map.delete(key)\n            annotation.delete('@id')\n            add_value(emb_value, '@annotation', annotation, property_is_array: true) unless\n              annotation.empty?\n          end\n        end\n      end\n\n      ##\n      # Rename blank nodes recursively within an embedded object\n      #\n      # @param [Object] node\n      # @return [Hash]\n      def rename_bnodes(node)\n        case node\n        when Array\n          node.map { |n| rename_bnodes(n) }\n        when Hash\n          node.each_with_object({}) do |(k, v), memo|\n            v = namer.get_name(v) if k == '@id' && v.is_a?(String) && blank_node?(v)\n            memo[k] = rename_bnodes(v)\n          end\n        else\n          node\n        end\n      end\n\n      private\n\n      ##\n      # Merge nodes from all graphs in the graph_map into a new node map\n      #\n      # @param [Hash{String => Hash}] graph_map\n      # @return [Hash]\n      def merge_node_map_graphs(graph_map)\n        merged = {}\n        graph_map.each do |_name, node_map|\n          node_map.each do |id, node|\n            merged_node = (merged[id] ||= { '@id' => id })\n\n            # Iterate over node properties\n            node.each do |property, values|\n              if property != '@type' && property.start_with?('@')\n                # Copy keywords\n                merged_node[property] = node[property].dup\n              else\n                # Merge objects\n                values.each do |value|\n                  add_value(merged_node, property, value.dup, property_is_array: true)\n                end\n              end\n            end\n          end\n        end\n\n        merged\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/format.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    ##\n    # JSON-LD format specification.\n    #\n    # @example Obtaining an JSON-LD format class\n    #     RDF::Format.for(:jsonld)           #=> JSON::LD::Format\n    #     RDF::Format.for(\"etc/foaf.jsonld\")\n    #     RDF::Format.for(:file_name         => \"etc/foaf.jsonld\")\n    #     RDF::Format.for(file_extension: \"jsonld\")\n    #     RDF::Format.for(:content_type   => \"application/ld+json\")\n    #\n    # @example Obtaining serialization format MIME types\n    #     RDF::Format.content_types      #=> {\"application/ld+json\" => [JSON::LD::Format],\n    #                                         \"application/x-ld+json\" => [JSON::LD::Format]}\n    #\n    # @example Obtaining serialization format file extension mappings\n    #     RDF::Format.file_extensions    #=> {:jsonld => [JSON::LD::Format] }\n    #\n    # @see https://www.w3.org/TR/json-ld11/\n    # @see https://w3c.github.io/json-ld-api/tests/\n    class Format < RDF::Format\n      content_type     'application/ld+json',\n        extension: :jsonld,\n        alias: 'application/x-ld+json',\n        uri: 'http://www.w3.org/ns/formats/JSON-LD'\n      content_encoding 'utf-8'\n\n      reader { JSON::LD::Reader }\n      writer { JSON::LD::Writer }\n\n      ##\n      # Sample detection to see if it matches JSON-LD\n      #\n      # Use a text sample to detect the format of an input file. Sub-classes implement\n      # a matcher sufficient to detect probably format matches, including disambiguating\n      # between other similar formats.\n      #\n      # @param [String] sample Beginning several bytes (~ 1K) of input.\n      # @return [Boolean]\n      def self.detect(sample)\n        !!sample.match(/\\{\\s*\"@(id|context|type)\"/m) &&\n          # Exclude CSVW metadata\n          !sample.include?(\"http://www.w3.org/ns/csvw\")\n      end\n\n      # Specify how to execute CLI commands for each supported format.\n      # Derived formats (e.g., YAML-LD) define their own entrypoints.\n      LD_FORMATS = {\n        jsonld: {\n          expand: lambda { |input, **options|\n            JSON::LD::API.expand(input,\n              serializer: JSON::LD::API.method(:serializer),\n                                 **options)\n          },\n          compact: lambda { |input, **options|\n            JSON::LD::API.compact(input,\n              options[:context],\n              serializer: JSON::LD::API.method(:serializer),\n                                  **options)\n          },\n          flatten: lambda { |input, **options|\n            JSON::LD::API.flatten(input,\n              options[:context],\n              serializer: JSON::LD::API.method(:serializer),\n                                  **options)\n          },\n          frame: lambda { |input, **options|\n            JSON::LD::API.frame(input,\n              options[:frame],\n              serializer: JSON::LD::API.method(:serializer),\n                                  **options)\n          }\n        }\n      }\n\n      # Execute the body of a CLI command, generic for each different API method based on definitions on {LD_FORMATS}.\n      #\n      # Expands the input, or transforms from an RDF format based on the `:format` option, and then executes the appropriate command based on `:output_format` and does appropriate output serialization.\n      # @private\n      def self.cli_exec(command, files, output: $stdin, **options)\n        output.set_encoding(Encoding::UTF_8) if output.respond_to?(:set_encoding) && RUBY_PLATFORM == \"java\"\n        options[:base] ||= options[:base_uri]\n\n        # Parse using input format, serialize using output format\n        in_fmt = LD_FORMATS[options.fetch(:format, :jsonld)]\n        out_fmt = LD_FORMATS[options.fetch(:output_format, :jsonld)]\n\n        if in_fmt\n          # Input is a JSON-LD based source (or derived)\n          if files.empty?\n            # If files are empty, either use options[:evaluate] or STDIN\n            input = options[:evaluate] ? StringIO.new(options[:evaluate]) : $stdin\n            input.set_encoding(options.fetch(:encoding, Encoding::UTF_8))\n            expanded = in_fmt[:expand].call(input, serializer: nil, **options)\n            output.puts out_fmt[command].call(expanded, expanded: true, **options)\n          else\n            files.each do |file|\n              expanded = in_fmt[:expand].call(file, serializer: nil, **options)\n              output.puts out_fmt[command].call(expanded, expanded: true, **options)\n            end\n          end\n        else\n          # Turn RDF into JSON-LD first\n          RDF::CLI.parse(files, **options) do |reader|\n            JSON::LD::API.fromRdf(reader, serializer: nil, **options) do |expanded|\n              output.puts out_fmt[command].call(expanded, expanded: true, **options)\n            end\n          end\n        end\n      end\n\n      ##\n      # Hash of CLI commands appropriate for this format:\n      #\n      # * `expand` => {JSON::LD::API.expand}\n      # * `compact` => {JSON::LD::API.compact}\n      # * `flatten` => {JSON::LD::API.flatten}\n      # * `frame` => {JSON::LD::API.frame}\n      #\n      # @return [Hash{Symbol => Hash}]\n      def self.cli_commands\n        {\n          expand: {\n            description: \"Expand JSON-LD or parsed RDF\",\n            parse: false,\n            help: \"expand [--context <context-file>] files ...\",\n            filter: { output_format: LD_FORMATS.keys },  # Only shows output format set\n            lambda: lambda do |files, **options|\n              options = options.merge(expandContext: options.delete(:context)) if options.key?(:context)\n              cli_exec(:expand, files, **options)\n            end,\n            option_use: { context: :removed }\n          },\n          compact: {\n            description: \"Compact JSON-LD or parsed RDF\",\n            parse: false,\n            filter: { output_format: LD_FORMATS.keys },  # Only shows output format set\n            help: \"compact --context <context-file> files ...\",\n            lambda: lambda do |files, **options|\n              raise ArgumentError, \"Compacting requires a context\" unless options[:context]\n\n              cli_exec(:compact, files, **options)\n            end,\n            options: [\n              RDF::CLI::Option.new(\n                symbol: :context,\n                datatype: RDF::URI,\n                control: :url2,\n                use: :required,\n                on: [\"--context CONTEXT\"],\n                description: \"Context to use when compacting.\"\n              ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) }\n            ]\n          },\n          flatten: {\n            description: \"Flatten JSON-LD or parsed RDF\",\n            parse: false,\n            help: \"flatten [--context <context-file>] files ...\",\n            filter: { output_format: LD_FORMATS.keys },  # Only shows output format set\n            lambda: lambda do |files, **options|\n              cli_exec(:compact, files, **options)\n            end,\n            options: [\n              RDF::CLI::Option.new(\n                symbol: :context,\n                datatype: RDF::URI,\n                control: :url2,\n                use: :required,\n                on: [\"--context CONTEXT\"],\n                description: \"Context to use when compacting.\"\n              ) { |arg| RDF::URI(arg) },\n              RDF::CLI::Option.new(\n                symbol: :createAnnotations,\n                datatype: TrueClass,\n                default: false,\n                control: :checkbox,\n                on: [\"--[no-]create-annotations\"],\n                description: \"Unfold embedded nodes which can be represented using `@annotation`.\"\n              )\n            ]\n          },\n          frame: {\n            description: \"Frame JSON-LD or parsed RDF\",\n            parse: false,\n            help: \"frame --frame <frame-file>  files ...\",\n            filter: { output_format: LD_FORMATS.keys },  # Only shows output format set\n            lambda: lambda do |files, **options|\n              raise ArgumentError, \"Framing requires a frame\" unless options[:frame]\n\n              cli_exec(:compact, files, **options)\n            end,\n            option_use: { context: :removed },\n            options: [\n              RDF::CLI::Option.new(\n                symbol: :frame,\n                datatype: RDF::URI,\n                control: :url2,\n                use: :required,\n                on: [\"--frame FRAME\"],\n                description: \"Frame to use when serializing.\"\n              ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) }\n            ]\n          }\n        }\n      end\n\n      ##\n      # Override normal symbol generation\n      def self.to_sym\n        :jsonld\n      end\n\n      ##\n      # Override normal format name\n      def self.name\n        \"JSON-LD\"\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/frame.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'set'\n\nmodule JSON\n  module LD\n    module Frame\n      include Utils\n\n      ##\n      # Frame input. Input is expected in expanded form, but frame is in compacted form.\n      #\n      # @param [Hash{Symbol => Object}] state\n      #   Current framing state\n      # @param [Array<String>] subjects\n      #   The subjects to filter\n      # @param [Hash{String => Object}] frame\n      # @param [String] property (nil)\n      #   The parent property.\n      # @param [Hash{String => Object}] parent (nil)\n      #   Parent subject or top-level array\n      # @param [Boolean] ordered (true)\n      #   Ensure output objects have keys ordered properly\n      # @param [Hash{Symbol => Object}] options ({})\n      # @raise [JSON::LD::InvalidFrame]\n      def frame(state, subjects, frame, parent: nil, property: nil, ordered: false, **options)\n        # Validate the frame\n        validate_frame(frame)\n        frame = frame.first if frame.is_a?(Array)\n\n        # Get values for embedOn and explicitOn\n        flags = {\n          embed: get_frame_flag(frame, options, :embed),\n          explicit: get_frame_flag(frame, options, :explicit),\n          requireAll: get_frame_flag(frame, options, :requireAll)\n        }\n\n        # Get link for current graph\n        link = state[:link][state[:graph]] ||= {}\n\n        # Create a set of matched subjects by filtering subjects by checking the map of flattened subjects against frame\n        # This gives us a hash of objects indexed by @id\n        matches = filter_subjects(state, subjects, frame, flags)\n\n        # For each id and node from the set of matched subjects ordered by id\n        matches.keys.opt_sort(ordered: ordered).each do |id|\n          subject = matches[id]\n\n          # NOTE: In order to treat each top-level match as a compartmentalized result, clear the unique embedded subjects map when the property is nil, which only occurs at the top-level.\n          if property.nil?\n            state[:uniqueEmbeds] = { state[:graph] => {} }\n          else\n            state[:uniqueEmbeds][state[:graph]] ||= {}\n          end\n\n          if flags[:embed] == '@link' && link.key?(id)\n            # add existing linked subject\n            add_frame_output(parent, property, link[id])\n            next\n          end\n\n          output = { '@id' => id }\n          link[id] = output\n\n          if %w[@first @last].include?(flags[:embed]) && context.processingMode('json-ld-1.1')\n            if @options[:validate]\n              raise JSON::LD::JsonLdError::InvalidEmbedValue,\n                \"#{flags[:embed]} is not a valid value of @embed in 1.1 mode\"\n            end\n\n            warn \"[DEPRECATION] #{flags[:embed]}  is not a valid value of @embed in 1.1 mode.\\n\"\n          end\n\n          if !state[:embedded] && state[:uniqueEmbeds][state[:graph]].key?(id)\n            # Skip adding this node object to the top-level, as it was included in another node object\n            next\n          elsif state[:embedded] &&\n                (flags[:embed] == '@never' || creates_circular_reference(subject, state[:graph], state[:subjectStack]))\n            # if embed is @never or if a circular reference would be created by an embed, the subject cannot be embedded, just add the reference; note that a circular reference won't occur when the embed flag is `@link` as the above check will short-circuit before reaching this point\n            add_frame_output(parent, property, output)\n            next\n          elsif state[:embedded] &&\n                %w[@first @once].include?(flags[:embed]) &&\n                state[:uniqueEmbeds][state[:graph]].key?(id)\n\n            # if only the first match should be embedded\n            # Embed unless already embedded\n            add_frame_output(parent, property, output)\n            next\n          elsif flags[:embed] == '@last'\n            # if only the last match should be embedded\n            # remove any existing embed\n            remove_embed(state, id) if state[:uniqueEmbeds][state[:graph]].include?(id)\n          end\n\n          state[:uniqueEmbeds][state[:graph]][id] = {\n            parent: parent,\n            property: property\n          }\n\n          # push matching subject onto stack to enable circular embed checks\n          state[:subjectStack] << { subject: subject, graph: state[:graph] }\n\n          # Subject is also the name of a graph\n          if state[:graphMap].key?(id)\n            # check frame's \"@graph\" to see what to do next\n            # 1. if it doesn't exist and state.graph === \"@merged\", don't recurse\n            # 2. if it doesn't exist and state.graph !== \"@merged\", recurse\n            # 3. if \"@merged\" then don't recurse\n            # 4. if \"@default\" then don't recurse\n            # 5. recurse\n            recurse = false\n            subframe = nil\n            if frame.key?('@graph')\n              subframe = frame['@graph'].first\n              recurse = !['@merged', '@default'].include?(id)\n              subframe = {} unless subframe.is_a?(Hash)\n            else\n              recurse = (state[:graph] != '@merged')\n              subframe = {}\n            end\n\n            if recurse\n              frame(state.merge(graph: id, embedded: false), state[:graphMap][id].keys, [subframe], parent: output,\n                property: '@graph', **options)\n            end\n          end\n\n          # If frame has `@included`, recurse over its sub-frame\n          if frame['@included']\n            frame(state.merge(embedded: false), subjects, frame['@included'], parent: output, property: '@included',\n  **options)\n          end\n\n          # iterate over subject properties in order\n          subject.keys.opt_sort(ordered: ordered).each do |prop|\n            objects = subject[prop]\n\n            # copy keywords to output\n            if prop.start_with?('@')\n              output[prop] = objects.dup\n              next\n            end\n\n            # explicit is on and property isn't in frame, skip processing\n            next if flags[:explicit] && !frame.key?(prop)\n\n            # add objects\n            objects.each do |o|\n              subframe = Array(frame[prop]).first || create_implicit_frame(flags)\n\n              if list?(o)\n                subframe = frame[prop].first['@list'] if Array(frame[prop]).first.is_a?(Hash)\n                subframe ||= create_implicit_frame(flags)\n                # add empty list\n                list = { '@list' => [] }\n                add_frame_output(output, prop, list)\n\n                src = o['@list']\n                src.each do |oo|\n                  if node_reference?(oo)\n                    frame(state.merge(embedded: true), [oo['@id']], subframe, parent: list, property: '@list',\n**options)\n                  else\n                    add_frame_output(list, '@list', oo.dup)\n                  end\n                end\n              elsif node_reference?(o)\n                # recurse into subject reference\n                frame(state.merge(embedded: true), [o['@id']], subframe, parent: output, property: prop, **options)\n              elsif value_match?(subframe, o)\n                # Include values if they match\n                add_frame_output(output, prop, o.dup)\n              end\n            end\n          end\n\n          # handle defaults in order\n          frame.keys.opt_sort(ordered: ordered).each do |prop|\n            if prop == '@type' && frame[prop].first.is_a?(Hash) && frame[prop].first.keys == %w[@default]\n              # Treat this as a default\n            elsif prop.start_with?('@')\n              next\n            end\n\n            # if omit default is off, then include default values for properties that appear in the next frame but are not in the matching subject\n            n = frame[prop].first || {}\n            omit_default_on = get_frame_flag(n, options, :omitDefault)\n            if !omit_default_on && !output[prop]\n              preserve = as_array(n.fetch('@default', '@null').dup)\n              output[prop] = [{ '@preserve' => preserve }]\n            end\n          end\n\n          # If frame has @reverse, embed identified nodes having this subject as a value of the associated property.\n          frame.fetch('@reverse', {}).each do |reverse_prop, subframe|\n            state[:subjects].each do |r_id, node|\n              next unless Array(node[reverse_prop]).any? { |v| v['@id'] == id }\n\n              # Node has property referencing this subject\n              # recurse into  reference\n              (output['@reverse'] ||= {})[reverse_prop] ||= []\n              frame(state.merge(embedded: true), [r_id], subframe, parent: output['@reverse'][reverse_prop],\n                property: property, **options)\n            end\n          end\n\n          # add output to parent\n          add_frame_output(parent, property, output)\n\n          # pop matching subject from circular ref-checking stack\n          state[:subjectStack].pop\n        end\n        # end\n      end\n\n      ##\n      # Recursively find and count blankNode identifiers.\n      # @return [Hash{String => Integer}]\n      def count_blank_node_identifiers(input)\n        {}.tap do |results|\n          count_blank_node_identifiers_internal(input, results)\n        end\n      end\n\n      def count_blank_node_identifiers_internal(input, results)\n        case input\n        when Array\n          input.each { |o| count_blank_node_identifiers_internal(o, results) }\n        when Hash\n          input.each do |_k, v|\n            count_blank_node_identifiers_internal(v, results)\n          end\n        when String\n          if input.start_with?('_:')\n            results[input] ||= 0\n            results[input] += 1\n          end\n        end\n      end\n\n      ##\n      # Prune BNode identifiers recursively\n      #\n      # @param [Array, Hash] input\n      # @param [Array<String>] bnodes_to_clear\n      # @return [Array, Hash]\n      def prune_bnodes(input, bnodes_to_clear)\n        case input\n        when Array\n          # If, after replacement, an array contains only the value null remove the value, leaving an empty array.\n          input.map { |o| prune_bnodes(o, bnodes_to_clear) }.compact\n        when Hash\n          output = {}\n          input.each do |key, value|\n            if context.expand_iri(key) == '@id' && bnodes_to_clear.include?(value)\n              # Don't add this to output, as it is pruned as being superfluous\n            else\n              output[key] = prune_bnodes(value, bnodes_to_clear)\n            end\n          end\n          output\n        else\n          input\n        end\n      end\n\n      ##\n      # Replace @preserve keys with the values, also replace @null with null.\n      #\n      # @param [Array, Hash] input\n      # @return [Array, Hash]\n      def cleanup_preserve(input)\n        case input\n        when Array\n          input.map! { |o| cleanup_preserve(o) }\n        when Hash\n          if input.key?('@preserve')\n            # Replace with the content of `@preserve`\n            cleanup_preserve(input['@preserve'].first)\n          else\n            input.transform_values do |v|\n              cleanup_preserve(v)\n            end\n          end\n        else\n          input\n        end\n      end\n\n      ##\n      # Replace `@null` with `null`, removing it from arrays.\n      #\n      # @param [Array, Hash] input\n      # @return [Array, Hash]\n      def cleanup_null(input)\n        case input\n        when Array\n          # If, after replacement, an array contains only the value null remove the value, leaving an empty array.\n          input.map! { |o| cleanup_null(o) }.compact\n        when Hash\n          input.transform_values do |v|\n            cleanup_null(v)\n          end\n        when '@null'\n          # If the value from the key-pair is @null, replace the value with null\n          nil\n        else\n          input\n        end\n      end\n\n      private\n\n      ##\n      # Returns a map of all of the subjects that match a parsed frame.\n      #\n      # @param [Hash{Symbol => Object}] state\n      #   Current framing state\n      # @param [Array<String>] subjects\n      #   The subjects to filter\n      # @param [Hash{String => Object}] frame\n      # @param [Hash{Symbol => String}] flags the frame flags.\n      #\n      # @return all of the matched subjects.\n      def filter_subjects(state, subjects, frame, flags)\n        subjects.each_with_object({}) do |id, memo|\n          subject = state[:graphMap][state[:graph]][id]\n          memo[id] = subject if filter_subject(subject, frame, state, flags)\n        end\n      end\n\n      ##\n      # Returns true if the given node matches the given frame.\n      #\n      # Matches either based on explicit type inclusion where the node has any type listed in the frame. If the frame has empty types defined matches nodes not having a @type. If the frame has a type of {} defined matches nodes having any type defined.\n      #\n      # Otherwise, does duck typing, where the node must have any or all of the properties defined in the frame, depending on the `requireAll` flag.\n      #\n      # @param [Hash{String => Object}] subject the subject to check.\n      # @param [Hash{String => Object}] frame the frame to check.\n      # @param [Hash{Symbol => Object}] state Current framing state\n      # @param [Hash{Symbol => Object}] flags the frame flags.\n      #\n      # @return [Boolean] true if the node matches, false if not.\n      def filter_subject(subject, frame, state, flags)\n        # Duck typing, for nodes not having a type, but having @id\n        wildcard = true\n        matches_some = false\n\n        frame.each do |k, v|\n          node_values = subject.fetch(k, [])\n\n          case k\n          when '@id'\n            ids = v || []\n\n            # Match on specific @id.\n            match_this = case ids\n            when [], [{}]\n              # Match on no @id or any @id\n              true\n            else\n              # Match on specific @id\n              ids.include?(subject['@id'])\n            end\n            return match_this unless flags[:requireAll]\n          when '@type'\n            # No longer a wildcard pattern\n            wildcard = false\n\n            match_this = case v\n            when []\n              # Don't match with any @type\n              return false unless node_values.empty?\n\n              true\n            when [{}]\n              # Match with any @type\n              !node_values.empty?\n            else\n              # Treat a map with @default like an empty map\n              if v.first.is_a?(Hash) && v.first.keys == %w[@default]\n                true\n              else\n                !(v & node_values).empty?\n              end\n            end\n            return match_this unless flags[:requireAll]\n          when /@/\n            # Skip other keywords\n            next\n          else\n            is_empty = v.empty?\n            if (v = v.first)\n              validate_frame(v)\n              has_default = v.key?('@default')\n            end\n\n            # No longer a wildcard pattern if frame has any non-keyword properties\n            wildcard = false\n\n            # Skip, but allow match if node has no value for property, and frame has a default value\n            next if node_values.empty? && has_default\n\n            # If frame value is empty, don't match if subject has any value\n            return false if !node_values.empty? && is_empty\n\n            match_this = case\n            when v.nil?\n              # node does not match if values is not empty and the value of property in frame is match none.\n              return false unless node_values.empty?\n\n              true\n            when v.is_a?(Hash) && (v.keys - FRAMING_KEYWORDS).empty?\n              # node matches if values is not empty and the value of property in frame is wildcard (frame with properties other than framing keywords)\n              !node_values.empty?\n            when value?(v)\n              # Match on any matching value\n              node_values.any? { |nv| value_match?(v, nv) }\n            when node?(v) || node_reference?(v)\n              node_values.any? do |nv|\n                node_match?(v, nv, state, flags)\n              end\n            when list?(v)\n              vv = v['@list'].first\n              node_values = if list?(node_values.first)\n                node_values.first['@list']\n              else\n                false\n              end\n              if !node_values\n                false # Lists match Lists\n              elsif value?(vv)\n                # Match on any matching value\n                node_values.any? { |nv| value_match?(vv, nv) }\n              elsif node?(vv) || node_reference?(vv)\n                node_values.any? do |nv|\n                  node_match?(vv, nv, state, flags)\n                end\n              else\n                false\n              end\n            else\n              false # No matching on non-value or node values\n            end\n          end\n\n          # All non-defaulted values must match if @requireAll is set\n          return false if !match_this && flags[:requireAll]\n\n          matches_some ||= match_this\n        end\n\n        # return true if wildcard or subject matches some properties\n        wildcard || matches_some\n      end\n\n      def validate_frame(frame)\n        unless frame.is_a?(Hash) || (frame.is_a?(Array) && frame.first.is_a?(Hash) && frame.length == 1)\n          raise JsonLdError::InvalidFrame,\n            \"Invalid JSON-LD frame syntax; a JSON-LD frame must be an object: #{frame.inspect}\"\n        end\n        frame = frame.first if frame.is_a?(Array)\n\n        # Check values of @id and @type\n        unless Array(frame['@id']) == [{}] || Array(frame['@id']).all? { |v| RDF::URI(v).valid? }\n          raise JsonLdError::InvalidFrame,\n            \"Invalid JSON-LD frame syntax; invalid value of @id: #{frame['@id']}\"\n        end\n        unless Array(frame['@type']).all? do |v|\n                 (v.is_a?(Hash) && (v.keys - %w[@default]).empty?) || RDF::URI(v).valid?\n               end\n          raise JsonLdError::InvalidFrame,\n            \"Invalid JSON-LD frame syntax; invalid value of @type: #{frame['@type']}\"\n        end\n      end\n\n      # Checks the current subject stack to see if embedding the given subject would cause a circular reference.\n      #\n      # @param subject_to_embed the subject to embed.\n      # @param graph the graph the subject to embed is in.\n      # @param subject_stack the current stack of subjects.\n      #\n      # @return true if a circular reference would be created, false if not.\n      def creates_circular_reference(subject_to_embed, graph, subject_stack)\n        subject_stack[0..-2].any? do |subject|\n          subject[:graph] == graph && subject[:subject]['@id'] == subject_to_embed['@id']\n        end\n      end\n\n      ##\n      # Gets the frame flag value for the given flag name.\n      #\n      # @param frame the frame.\n      # @param options the framing options.\n      # @param name the flag name.\n      #\n      # @return the flag value.\n      def get_frame_flag(frame, options, name)\n        rval = frame.fetch(\"@#{name}\", [options[name]]).first\n        rval = rval.values.first if value?(rval)\n        if name == :embed\n          rval = case rval\n          when true then '@once'\n          when false then '@never'\n          when '@always', '@first', '@last', '@link', '@once', '@never' then rval\n          else\n            raise JsonLdError::InvalidEmbedValue,\n              \"Invalid JSON-LD frame syntax; invalid value of @embed: #{rval}\"\n          end\n        end\n        rval\n      end\n\n      ##\n      # Removes an existing embed.\n      #\n      # @param state the current framing state.\n      # @param id the @id of the embed to remove.\n      def remove_embed(state, id)\n        # get existing embed\n        embeds = state[:uniqueEmbeds][state[:graph]]\n        embed = embeds[id]\n        property = embed[:property]\n\n        # create reference to replace embed\n        subject = { '@id' => id }\n\n        if embed[:parent].is_a?(Array)\n          # replace subject with reference\n          embed[:parent].map! do |parent|\n            compare_values(parent, subject) ? subject : parent\n          end\n        else\n          parent = embed[:parent]\n          # replace node with reference\n          if parent[property].is_a?(Array)\n            parent[property].reject! { |v| compare_values(v, subject) }\n            parent[property] << subject\n          elsif compare_values(parent[property], subject)\n            parent[property] = subject\n          end\n        end\n\n        # recursively remove dependent dangling embeds\n        def remove_dependents(id, embeds)\n          # get embed keys as a separate array to enable deleting keys in map\n          embeds.each do |id_dep, e|\n            p = e.fetch(:parent, {}) if e.is_a?(Hash)\n            next unless p.is_a?(Hash)\n\n            pid = p.fetch('@id', nil)\n            if pid == id\n              embeds.delete(id_dep)\n              remove_dependents(id_dep, embeds)\n            end\n          end\n        end\n\n        remove_dependents(id, embeds)\n      end\n\n      ##\n      # Adds framing output to the given parent.\n      #\n      # @param parent the parent to add to.\n      # @param property the parent property, null for an array parent.\n      # @param output the output to add.\n      def add_frame_output(parent, property, output)\n        if parent.is_a?(Hash)\n          parent[property] ||= []\n          parent[property] << output\n        else\n          parent << output\n        end\n      end\n\n      # Creates an implicit frame when recursing through subject matches. If a frame doesn't have an explicit frame for a particular property, then a wildcard child frame will be created that uses the same flags that the parent frame used.\n      #\n      # @param [Hash] flags the current framing flags.\n      # @return [Array<Hash>] the implicit frame.\n      def create_implicit_frame(flags)\n        {}.tap do |memo|\n          flags.each_pair do |key, val|\n            memo[\"@#{key}\"] = [val]\n          end\n        end\n      end\n\n      # Node matches if it is a node, and matches the pattern as a frame\n      def node_match?(pattern, value, state, flags)\n        return false unless value['@id']\n\n        node_object = state[:subjects][value['@id']]\n        node_object && filter_subject(node_object, pattern, state, flags)\n      end\n\n      # Value matches if it is a value, and matches the value pattern.\n      #\n      # * `pattern` is empty\n      # * @values are the same, or `pattern[@value]` is a wildcard, and\n      # * @types are the same or `value[@type]` is not null and `pattern[@type]` is `{}`, or `value[@type]` is null and `pattern[@type]` is null or `[]`, and\n      # * @languages are the same or `value[@language]` is not null and `pattern[@language]` is `{}`, or `value[@language]` is null and `pattern[@language]` is null or `[]`.\n      def value_match?(pattern, value)\n        v1 = value['@value']\n        t1 = value['@type']\n        l1 = value['@language']\n        v2 = Array(pattern['@value'])\n        t2 = Array(pattern['@type'])\n        l2 = Array(pattern['@language']).map do |v|\n          v.is_a?(String) ? v.downcase : v\n        end\n        return true if (v2 + t2 + l2).empty?\n        return false unless v2.include?(v1) || v2 == [{}]\n        return false unless t2.include?(t1) || (t1 && t2 == [{}]) || (t1.nil? && (t2 || []).empty?)\n        return false unless l2.include?(l1.to_s.downcase) || (l1 && l2 == [{}]) || (l1.nil? && (l2 || []).empty?)\n\n        true\n      end\n\n      FRAMING_KEYWORDS = %w[@default @embed @explicit @omitDefault @requireAll].freeze\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/from_rdf.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'rdf/nquads'\n\nmodule JSON\n  module LD\n    module FromRDF\n      include Utils\n\n      ##\n      # Generate a JSON-LD array representation from an array of `RDF::Statement`.\n      # Representation is in expanded form\n      #\n      # @param [Array<RDF::Statement>, RDF::Enumerable] dataset\n      # @param [Boolean] useRdfType (false)\n      #   If set to `true`, the JSON-LD processor will treat `rdf:type` like a normal property instead of using `@type`.\n      # @param [Boolean] useNativeTypes (false) use native representations\n      # @param extendedRepresentation (false)\n      #   Use the extended internal representation for native types.\n      #\n      # @return [Array<Hash>] the JSON-LD document in normalized form\n      def from_statements(dataset, useRdfType: false, useNativeTypes: false, extendedRepresentation: false)\n        default_graph = {}\n        graph_map = { '@default' => default_graph }\n        referenced_once = {}\n\n        value = nil\n\n        # Create an entry for compound-literal node detection\n        compound_literal_subjects = {}\n\n        # Create a map for node to object representation\n\n        # For each statement in dataset\n        dataset.each do |statement|\n          # log_debug(\"statement\") { statement.to_nquads.chomp}\n\n          name = if statement.graph_name\n            @context.expand_iri(statement.graph_name,\n              base: @options[:base]).to_s\n          else\n            '@default'\n          end\n\n          # Create a graph entry as needed\n          node_map = graph_map[name] ||= {}\n          compound_literal_subjects[name] ||= {}\n\n          default_graph[name] ||= { '@id' => name } unless name == '@default'\n\n          subject = if statement.subject.statement?\n            resource_representation(statement.subject, useNativeTypes, extendedRepresentation)['@id'].to_json_c14n\n          else\n            statement.subject.to_s\n          end\n          node = node_map[subject] ||= resource_representation(statement.subject, useNativeTypes,\n            extendedRepresentation)\n\n          # If predicate is rdf:datatype, note subject in compound literal subjects map\n          if @options[:rdfDirection] == 'compound-literal' && statement.predicate == RDF_DIRECTION\n            compound_literal_subjects[name][subject] ||= true\n          end\n\n          # If object is an IRI, blank node identifier, or statement, and node map does not have an object member, create one and initialize its value to a new JSON object consisting of a single member @id whose value is set to object.\n          unless statement.object.literal?\n            object = if statement.object.statement?\n              resource_representation(statement.object, useNativeTypes, extendedRepresentation)['@id'].to_json_c14n\n            else\n              statement.object.to_s\n            end\n            node_map[object] ||=\n              resource_representation(statement.object, useNativeTypes, extendedRepresentation)\n          end\n\n          # If predicate equals rdf:type, and object is an IRI or blank node identifier, append object to the value of the @type member of node. If no such member exists, create one and initialize it to an array whose only item is object. Finally, continue to the next RDF triple.\n          if statement.predicate == RDF.type && statement.object.resource? && !useRdfType\n            merge_value(node, '@type', statement.object.to_s)\n            next\n          end\n\n          # Set value to the result of using the RDF to Object Conversion algorithm, passing object, rdfDirection, and use native types.\n          value = resource_representation(statement.object, useNativeTypes, extendedRepresentation)\n\n          merge_value(node, statement.predicate.to_s, value)\n\n          # If object is a blank node identifier or rdf:nil, it might represent the a list node:\n          if statement.object == RDF.nil\n            # Append a new JSON object consisting of three members, node, property, and value to the usages array. The node member is set to a reference to node, property to predicate, and value to a reference to value.\n            object = node_map[statement.object.to_s]\n            merge_value(object, :usages, {\n              node: node,\n              property: statement.predicate.to_s,\n              value: value\n            })\n          elsif referenced_once.key?(statement.object.to_s)\n            referenced_once[statement.object.to_s] = false\n          elsif statement.object.node?\n            referenced_once[statement.object.to_s] = {\n              node: node,\n              property: statement.predicate.to_s,\n              value: value\n            }\n          end\n        end\n\n        # For each name and graph object in graph map:\n        graph_map.each do |name, graph_object|\n          # If rdfDirection is compound-literal, check referenced_once for entries from compound_literal_subjects\n          compound_literal_subjects.fetch(name, {}).each_key do |cl|\n            node = referenced_once[cl][:node]\n            next unless node.is_a?(Hash)\n\n            property = referenced_once[cl][:property]\n            value = referenced_once[cl][:value]\n            cl_node = graph_map[name].delete(cl)\n            next unless cl_node.is_a?(Hash)\n\n            node[property].select do |v|\n              next unless v['@id'] == cl\n\n              v.delete('@id')\n              v['@value'] = cl_node[RDF.value.to_s].first['@value']\n              if (langs = cl_node[RDF_LANGUAGE.to_s])\n                lang = langs.first['@value']\n                unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(lang)\n                  warn \"i18n datatype language must be valid BCP47: #{lang.inspect}\"\n                end\n                v['@language'] = lang\n              end\n              v['@direction'] = cl_node[RDF_DIRECTION.to_s].first['@value']\n            end\n          end\n\n          nil_var = graph_object.fetch(RDF.nil.to_s, {})\n\n          # For each item usage in the usages member of nil, perform the following steps:\n          nil_var.fetch(:usages, []).each do |usage|\n            node = usage[:node]\n            property = usage[:property]\n            head = usage[:value]\n            list = []\n            list_nodes = []\n\n            # If property equals rdf:rest, the value associated to the usages member of node has exactly 1 entry, node has a rdf:first and rdf:rest property, both of which have as value an array consisting of a single element, and node has no other members apart from an optional @type member whose value is an array with a single item equal to rdf:List, node represents a well-formed list node. Continue with the following steps:\n            # log_debug(\"list element?\") {node.to_json(JSON_STATE) rescue 'malformed json'}\n            while property == RDF.rest.to_s &&\n                  blank_node?(node) &&\n                  referenced_once[node['@id']] &&\n                  node.keys.none? { |k| ![\"@id\", '@type', :usages, RDF.first.to_s, RDF.rest.to_s].include?(k) } &&\n                  (f = node[RDF.first.to_s]).is_a?(Array) && f.length == 1 &&\n                  (r = node[RDF.rest.to_s]).is_a?(Array) && r.length == 1 &&\n                  ((t = node['@type']).nil? || t == [RDF.List.to_s])\n              list << Array(node[RDF.first.to_s]).first\n              list_nodes << node['@id']\n\n              # get next node, moving backwards through list\n              node_usage = referenced_once[node['@id']]\n              node = node_usage[:node]\n              property = node_usage[:property]\n              head = node_usage[:value]\n            end\n\n            head.delete('@id')\n            head['@list'] = list.reverse\n            list_nodes.each { |node_id| graph_object.delete(node_id) }\n          end\n\n          # Create annotations on graph object\n          create_annotations(graph_object)\n        end\n\n        result = []\n        default_graph.keys.opt_sort(ordered: @options[:ordered]).each do |subject|\n          node = default_graph[subject]\n          if graph_map.key?(subject)\n            node['@graph'] = []\n            graph_map[subject].keys.opt_sort(ordered: @options[:ordered]).each do |s|\n              n = graph_map[subject][s]\n              n.delete(:usages)\n              node['@graph'] << n unless node_reference?(n)\n            end\n          end\n          node.delete(:usages)\n          result << node unless node_reference?(node)\n        end\n        # log_debug(\"fromRdf\") {result.to_json(JSON_STATE) rescue 'malformed json'}\n        result\n      end\n\n      private\n\n      RDF_LITERAL_NATIVE_TYPES = Set.new([RDF::XSD.boolean, RDF::XSD.integer, RDF::XSD.double]).freeze\n\n      def resource_representation(resource, useNativeTypes, extendedRepresentation)\n        case resource\n        when RDF::Statement\n          # Note, if either subject or object are a BNode which is used elsewhere,\n          # this might not work will with the BNode accounting from above.\n          rep = { '@id' => resource_representation(resource.subject, false, extendedRepresentation) }\n          if resource.predicate == RDF.type\n            rep['@id']['@type'] = resource.object.to_s\n          else\n            rep['@id'][resource.predicate.to_s] =\n              as_array(resource_representation(resource.object, useNativeTypes, extendedRepresentation))\n          end\n          rep\n        when RDF::Literal\n          base = @options[:base]\n          rdfDirection = @options[:rdfDirection]\n          res = {}\n\n          if resource.datatype == RDF_JSON && @context.processingMode('json-ld-1.1')\n            res['@type'] = '@json'\n            res['@value'] = begin\n              ::JSON.parse(resource.object)\n            rescue ::JSON::ParserError => e\n              raise JSON::LD::JsonLdError::InvalidJsonLiteral, e.message\n            end\n          elsif useNativeTypes && extendedRepresentation\n            res['@value'] = resource  # Raw literal\n          elsif resource.datatype.start_with?(\"https://www.w3.org/ns/i18n#\") && rdfDirection == 'i18n-datatype' && @context.processingMode('json-ld-1.1')\n            lang, dir = resource.datatype.fragment.split('_')\n            res['@value'] = resource.to_s\n            unless lang.empty?\n              unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(lang)\n                if options[:validate]\n                  raise JsonLdError::InvalidLanguageMapping, \"rdf:language must be valid BCP47: #{lang.inspect}\"\n                end\n\n                warn \"rdf:language must be valid BCP47: #{lang.inspect}\"\n\n              end\n              res['@language'] = lang\n            end\n            res['@direction'] = dir\n          elsif useNativeTypes && RDF_LITERAL_NATIVE_TYPES.include?(resource.datatype) && resource.valid?\n            res['@value'] = resource.object\n          else\n            resource.canonicalize! if resource.valid? && resource.datatype == RDF::XSD.double\n            if resource.datatype?\n              res['@type'] = resource.datatype.to_s\n            elsif resource.language?\n              res['@language'] = resource.language.to_s\n            end\n            res['@value'] = resource.to_s\n          end\n          res\n        else\n          { '@id' => resource.to_s }\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/html/nokogiri.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    class API\n      ##\n      # Nokogiri implementation of an HTML parser.\n      #\n      # @see http://nokogiri.org/\n      module Nokogiri\n        ##\n        # Returns the name of the underlying XML library.\n        #\n        # @return [Symbol]\n        def self.library\n          :nokogiri\n        end\n\n        # Proxy class to implement uniform element accessors\n        class NodeProxy\n          attr_reader :node, :parent\n\n          def initialize(node, parent = nil)\n            @node = node\n            @parent = parent\n          end\n\n          ##\n          # Return xml:base on element, if defined\n          #\n          # @return [String]\n          def base\n            @node.attribute_with_ns(\"base\", RDF::XML.to_s) || @node.attribute('xml:base')\n          end\n\n          def display_path\n            @display_path ||= begin\n              path = []\n              path << parent.display_path if parent\n              path << @node.name\n              case @node\n              when ::Nokogiri::XML::Element then path.join(\"/\")\n              when ::Nokogiri::XML::Attr    then path.join(\"@\")\n              else path.join(\"?\")\n              end\n            end\n          end\n\n          ##\n          # Return true of all child elements are text\n          #\n          # @return [Array<:text, :element, :attribute>]\n          def text_content?\n            @node.children.all?(&:text?)\n          end\n\n          ##\n          # Children of this node\n          #\n          # @return [NodeSetProxy]\n          def children\n            NodeSetProxy.new(@node.children, self)\n          end\n\n          # Ancestors of this element, in order\n          def ancestors\n            @ancestors ||= parent ? parent.ancestors + [parent] : []\n          end\n\n          ##\n          # Inner text of an element. Decode Entities\n          #\n          # @return [String]\n          # def inner_text\n          #  coder = HTMLEntities.new\n          #  coder.decode(@node.inner_text)\n          # end\n\n          def attribute_nodes\n            @attribute_nodes ||= NodeSetProxy.new(@node.attribute_nodes, self)\n          end\n\n          def xpath(*args)\n            @node.xpath(*args).map do |n|\n              # Get node ancestors\n              parent = n.ancestors.reverse.inject(nil) do |p, node|\n                NodeProxy.new(node, p)\n              end\n              NodeProxy.new(n, parent)\n            end\n          end\n\n          ##\n          # Proxy for everything else to @node\n          def method_missing(method, *args)\n            @node.send(method, *args)\n          end\n        end\n\n        ##\n        # NodeSet proxy\n        class NodeSetProxy\n          attr_reader :node_set, :parent\n\n          def initialize(node_set, parent)\n            @node_set = node_set\n            @parent = parent\n          end\n\n          ##\n          # Return a proxy for each child\n          #\n          # @yield child\n          # @yieldparam [NodeProxy]\n          def each\n            @node_set.each do |c|\n              yield NodeProxy.new(c, parent)\n            end\n          end\n\n          ##\n          # Proxy for everything else to @node_set\n          def method_missing(method, *args)\n            @node_set.send(method, *args)\n          end\n        end\n\n        ##\n        # Initializes the underlying XML library.\n        #\n        # @param  [Hash{Symbol => Object}] options\n        # @return [NodeProxy] of root element\n        def initialize_html_nokogiri(input, _options = {})\n          require 'nokogiri' unless defined?(::Nokogiri)\n          doc = case input\n          when ::Nokogiri::HTML::Document, ::Nokogiri::XML::Document\n            input\n          else\n            begin\n              input = input.read if input.respond_to?(:read)\n              ::Nokogiri::HTML5(input.force_encoding('utf-8'), max_parse_errors: 1000)\n            rescue LoadError, NoMethodError\n              ::Nokogiri::HTML.parse(input, base_uri.to_s, 'utf-8')\n            end\n          end\n\n          NodeProxy.new(doc.root) if doc&.root\n        end\n        alias initialize_html initialize_html_nokogiri\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/html/rexml.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'htmlentities'\n\nmodule JSON\n  module LD\n    class API\n      ##\n      # REXML implementation of an XML parser.\n      #\n      # @see http://www.germane-software.com/software/rexml/\n      module REXML\n        ##\n        # Returns the name of the underlying XML library.\n        #\n        # @return [Symbol]\n        def self.library\n          :rexml\n        end\n\n        # Proxy class to implement uniform element accessors\n        class NodeProxy\n          attr_reader :node, :parent\n\n          def initialize(node, parent = nil)\n            @node = node\n            @parent = parent\n          end\n\n          ##\n          # Return xml:base on element, if defined\n          #\n          # @return [String]\n          def base\n            @node.attribute(\"base\", RDF::XML.to_s) || @node.attribute('xml:base')\n          end\n\n          def display_path\n            @display_path ||= begin\n              path = []\n              path << parent.display_path if parent\n              path << @node.name\n              case @node\n              when ::REXML::Element   then path.join(\"/\")\n              when ::REXML::Attribute then path.join(\"@\")\n              else path.join(\"?\")\n              end\n            end\n          end\n\n          ##\n          # Return true of all child elements are text\n          #\n          # @return [Array<:text, :element, :attribute>]\n          def text_content?\n            @node.children.all?(::REXML::Text)\n          end\n\n          ##\n          # Children of this node\n          #\n          # @return [NodeSetProxy]\n          def children\n            NodeSetProxy.new(@node.children, self)\n          end\n\n          # Ancestors of this element, in order\n          def ancestors\n            @ancestors ||= parent ? parent.ancestors + [parent] : []\n          end\n\n          ##\n          # Inner text of an element\n          #\n          # @see http://apidock.com/ruby/REXML/Element/get_text#743-Get-all-inner-texts\n          # @return [String]\n          def inner_text\n            coder = HTMLEntities.new\n            ::REXML::XPath.match(@node, './/text()').map do |e|\n              coder.decode(e)\n            end.join\n          end\n\n          ##\n          # Inner text of an element\n          #\n          # @see http://apidock.com/ruby/REXML/Element/get_text#743-Get-all-inner-texts\n          # @return [String]\n          def inner_html\n            @node.children.map(&:to_s).join\n          end\n\n          def attribute_nodes\n            attrs = @node.attributes.dup.keep_if do |name, _attr|\n              !name.start_with?('xmlns')\n            end\n            @attribute_nodes ||= (attrs.empty? ? attrs : NodeSetProxy.new(attrs, self))\n          end\n\n          ##\n          # Node type accessors\n          #\n          # @return [Boolean]\n          def text?\n            @node.is_a?(::REXML::Text)\n          end\n\n          def element?\n            @node.is_a?(::REXML::Element)\n          end\n\n          def blank?\n            @node.is_a?(::REXML::Text) && @node.empty?\n          end\n\n          def to_s\n            @node.to_s\n          end\n\n          def xpath(*args)\n            ::REXML::XPath.match(@node, *args).map do |n|\n              NodeProxy.new(n, parent)\n            end\n          end\n\n          def at_xpath(*args)\n            xpath(*args).first\n          end\n\n          ##\n          # Proxy for everything else to @node\n          def method_missing(method, *args)\n            @node.send(method, *args)\n          end\n        end\n\n        ##\n        # NodeSet proxy\n        class NodeSetProxy\n          attr_reader :node_set, :parent\n\n          def initialize(node_set, parent)\n            @node_set = node_set\n            @parent = parent\n          end\n\n          ##\n          # Return a proxy for each child\n          #\n          # @yield child\n          # @yieldparam [NodeProxy]\n          def each\n            @node_set.each do |c|\n              yield NodeProxy.new(c, parent)\n            end\n          end\n\n          ##\n          def to_html\n            node_set.map(&:to_s).join\n          end\n\n          ##\n          # Proxy for everything else to @node_set\n          def method_missing(method, *args)\n            @node_set.send(method, *args)\n          end\n        end\n\n        ##\n        # Initializes the underlying XML library.\n        #\n        # @param  [Hash{Symbol => Object}] options\n        # @return [NodeProxy] of document root\n        def initialize_html_rexml(input, _options = {})\n          require 'rexml/document' unless defined?(::REXML)\n          doc = case input\n          when ::REXML::Document\n            input\n          else\n            # Only parse as XML, no HTML mode\n            ::REXML::Document.new(input.respond_to?(:read) ? input.read : input.to_s)\n          end\n\n          NodeProxy.new(doc.root) if doc&.root\n        end\n        alias initialize_html initialize_html_rexml\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/reader.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    ##\n    # A JSON-LD parser in Ruby.\n    #\n    # @see https://www.w3.org/TR/json-ld11-api\n    # @author [Gregg Kellogg](http://greggkellogg.net/)\n    class Reader < RDF::Reader\n      include StreamingReader\n      format Format\n\n      ##\n      # JSON-LD Reader options\n      # @see https://ruby-rdf.github.io/rdf/RDF/Reader#options-class_method\n      def self.options\n        super + [\n          RDF::CLI::Option.new(\n            symbol: :expandContext,\n            control: :url2,\n            datatype: RDF::URI,\n            on: [\"--expand-context CONTEXT\"],\n            description: \"Context to use when expanding.\"\n          ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) },\n          RDF::CLI::Option.new(\n            symbol: :extractAllScripts,\n            datatype: TrueClass,\n            default: false,\n            control: :checkbox,\n            on: [\"--[no-]extract-all-scripts\"],\n            description: \"If set to true, when extracting JSON-LD script elements from HTML, unless a specific fragment identifier is targeted, extracts all encountered JSON-LD script elements using an array form, if necessary.\"\n          ) { |arg| RDF::URI(arg) },\n          RDF::CLI::Option.new(\n            symbol: :lowercaseLanguage,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]lowercase-language\"],\n            description: \"By default, language tags are left as is. To normalize to lowercase, set this option to `true`.\"\n          ),\n          RDF::CLI::Option.new(\n            symbol: :processingMode,\n            datatype: %w[json-ld-1.0 json-ld-1.1],\n            control: :radio,\n            on: [\"--processingMode MODE\", %w[json-ld-1.0 json-ld-1.1]],\n            description: \"Set Processing Mode (json-ld-1.0 or json-ld-1.1)\"\n          ),\n          RDF::CLI::Option.new(\n            symbol: :rdfDirection,\n            datatype: %w[i18n-datatype compound-literal],\n            default: 'null',\n            control: :select,\n            on: [\"--rdf-direction DIR\", %w[i18n-datatype compound-literal]],\n            description: \"How to serialize literal direction (i18n-datatype compound-literal)\"\n          ) { |arg| RDF::URI(arg) },\n          RDF::CLI::Option.new(\n            symbol: :stream,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]stream\"],\n            description: \"Optimize for streaming JSON-LD to RDF.\"\n          ) { |arg| arg }\n        ]\n      end\n\n      ##\n      # Initializes the JSON-LD reader instance.\n      #\n      # @param  [IO, File, String]       input\n      # @param  [Hash{Symbol => Object}] options\n      #   any additional options (see `RDF::Reader#initialize` and {JSON::LD::API.initialize})\n      # @yield  [reader] `self`\n      # @yieldparam  [RDF::Reader] reader\n      # @yieldreturn [void] ignored\n      # @raise [RDF::ReaderError] if the JSON document cannot be loaded\n      def initialize(input = $stdin, **options, &block)\n        options[:base_uri] ||= options[:base]\n        options[:rename_bnodes] = false unless options.key?(:rename_bnodes)\n        super do\n          @options[:base] ||= base_uri.to_s if base_uri\n          # Trim non-JSON stuff in script.\n          @doc = if input.respond_to?(:read)\n            input\n          else\n            StringIO.new(input.to_s.sub(/\\A[^{\\[]*/m, '').sub(/[^}\\]]*\\Z/m, ''))\n          end\n\n          if block\n            case block.arity\n            when 0 then instance_eval(&block)\n            else yield(self)\n            end\n          end\n        end\n      end\n\n      ##\n      # @private\n      # @see   RDF::Reader#each_statement\n      def each_statement(&block)\n        if @options[:stream]\n          stream_statement(&block)\n        else\n          API.toRdf(@doc, **@options, &block)\n        end\n      rescue ::JSON::ParserError, ::JSON::LD::JsonLdError => e\n        log_fatal(\"Failed to parse input document: #{e.message}\", exception: RDF::ReaderError)\n      end\n\n      ##\n      # @private\n      # @see   RDF::Reader#each_triple\n      def each_triple\n        if block_given?\n          each_statement do |statement|\n            yield(*statement.to_triple)\n          end\n        end\n        enum_for(:each_triple)\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/resource.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    # Simple Ruby reflector class to provide native\n    # access to JSON-LD objects\n    class Resource\n      include RDF::Enumerable\n\n      # @return [Hash<String => Object] Object representation of resource\n      attr_reader :attributes\n\n      # @return [String] ID of this resource\n      attr_reader :id\n\n      # @return [JSON::LD::Context] Context associated with this resource\n      attr_reader :context\n\n      ##\n      # Is this resource clean (i.e., saved to mongo?)\n      #\n      # @return [Boolean]\n      def clean?\n        @clean\n      end\n\n      ##\n      # Is this resource dirty (i.e., not yet saved to mongo?)\n      #\n      # @return [Boolean]\n      def dirty?\n        !clean?\n      end\n\n      ##\n      # Has this resource been reconciled against a mongo ID?\n      #\n      # @return [Boolean]\n      def reconciled?\n        @reconciled\n      end\n\n      ##\n      # Has this resource been resolved so that\n      # all references are to other Resources?\n      #\n      # @return [Boolean]\n      def resolved?\n        @resolved\n      end\n\n      ##\n      # Anonymous resources have BNode ids or no schema:url\n      #\n      # @return [Boolean]\n      def anonymous?\n        @anon\n      end\n\n      ##\n      # Is this a stub resource, which has not yet been\n      # synched or created within the DB?\n      def stub?\n        !!@stub\n      end\n\n      ##\n      # Is this a new resource, which has not yet been\n      # synched or created within the DB?\n      def new?\n        !!@new\n      end\n\n      ##\n      # A new resource from the parsed graph\n      # @param [Hash{String => Object}] node_definition\n      # @param [Hash{Symbol => Object}] options\n      # @option options [String] :context\n      #   Resource context, used for finding\n      #   appropriate collection and JSON-LD context.\n      # @option options [Boolean] :clean (false)\n      # @option options [Boolean] :compact (false)\n      #   Assume `node_definition` is in expanded form\n      #   and compact using `context`.\n      # @option options [Boolean] :reconciled (!new)\n      #   node_definition is not based on Mongo IDs\n      #   and must be reconciled against Mongo, or merged\n      #   into another resource.\n      # @option options [Boolean] :new (true)\n      #   This is a new resource, not yet saved to Mongo\n      # @option options [Boolean] :stub (false)\n      #   This is a stand-in for another resource that has\n      #   not yet been retrieved (or created) from Mongo\n      def initialize(node_definition, **options)\n        @context = options[:context]\n        @clean = options.fetch(:clean, false)\n        @new = options.fetch(:new, true)\n        @reconciled = options.fetch(:reconciled, !@new)\n        @resolved = false\n        @attributes = if options[:compact]\n          JSON::LD::API.compact(node_definition, @context)\n        else\n          node_definition\n        end\n        @id = @attributes['@id']\n        @anon = @id.nil? || @id.to_s.start_with?('_:')\n      end\n\n      ##\n      # Return a hash of this object, suitable for use by for ETag\n      # @return [Integer]\n      def hash\n        deresolve.hash\n      end\n\n      ##\n      # Reverse resolution of resource attributes.\n      # Just returns `attributes` if\n      # resource is unresolved. Otherwise, replaces `Resource`\n      # values with node references.\n      #\n      # Result is expanded and re-compacted to get to normalized\n      # representation.\n      #\n      # @return [Hash] deresolved attribute hash\n      def deresolve\n        node_definition = if resolved?\n          deresolved = [].tap do |memo|\n            attributes.each_pair do |prop, value|\n              memo[prop] = case value\n              when Resource\n                { 'id' => value.id }\n              when Array\n                value.map do |v|\n                  v.is_a?(Resource) ? { 'id' => v.id } : v\n                end\n              else\n                value\n              end\n            end\n          end\n          deresolved\n        else\n          attributes\n        end\n\n        compacted = nil\n        JSON::LD::API.expand(node_definition, expandContext: @context) do |expanded|\n          compacted = JSON::LD::API.compact(expanded, @context)\n        end\n        compacted.delete_if { |k, _v| k == '@context' }\n      end\n\n      ##\n      # Serialize to JSON-LD, minus `@context` using\n      # a deresolved version of the attributes\n      #\n      # @param [Hash] options\n      # @return [String] serizlied JSON representation of resource\n      def to_json(**options)\n        deresolve.to_json(**options)\n      end\n\n      ##\n      # Enumerate over statements associated with this resource\n      def each(&block)\n        JSON::LD::API.toRdf(attributes, expandContext: context, &block)\n      end\n\n      ##\n      # Update node references using the provided map.\n      # This replaces node references with Resources,\n      # either stub or instantiated.\n      #\n      # Node references with ids not in the reference_map\n      # will cause stub resources to be added to the map.\n      #\n      # @param [Hash{String => Resource}] reference_map\n      # @return [Resource] self\n      def resolve(reference_map)\n        return if resolved?\n\n        def update_obj(obj, reference_map)\n          case obj\n          when Array\n            obj.map { |o| update_obj(o, reference_map) }\n          when Hash\n            if node_reference?(obj)\n              reference_map[obj['id']] ||= Resource.new(obj,\n                context: @context_name,\n                clean: false,\n                stub: true)\n            else\n              obj.each_key do |k|\n                obj[k] = update_obj(obj[k], reference_map)\n              end\n              obj\n            end\n          else\n            obj\n          end\n        end\n\n        # $logger.debug \"resolve(0): #{attributes.inspect}\"\n        @attributes.each do |k, _v|\n          next if %w[id type].include?(k)\n\n          @attributes[k] = update_obj(@attributes[k], reference_map)\n        end\n        # $logger.debug \"resolve(1): #{attributes.inspect}\"\n        @resolved = true\n        self\n      end\n\n      ##\n      # Override this method to implement save using\n      # an appropriate storage mechanism.\n      #\n      # Save the object to the Mongo collection\n      # use Upsert to create things that don't exist.\n      # First makes sure that the resource is valid.\n      #\n      # @return [Boolean] true or false if resource not saved\n      def save\n        raise NotImplementedError\n      end\n\n      ##\n      # Access individual fields, from subject definition\n      def property(prop_name)\n        @attributes.fetch(prop_name, nil)\n      end\n\n      ##\n      # Access individual fields, from subject definition\n      def method_missing(method, *_args)\n        property(method.to_s)\n      end\n\n      def inspect\n        \"<Resource\" +\n          attributes.map do |k, v|\n            \"\\n  #{k}: #{v.inspect}\"\n          end.join(\" \") +\n          \">\"\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/streaming_reader.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'json/ld'\nrequire 'json/ld/expand'\nrequire 'json/ld/to_rdf'\n\nmodule JSON\n  module LD\n    ##\n    # A streaming JSON-LD parser in Ruby.\n    #\n    # @see http://json-ld.org/spec/ED/20110507/\n    # @author [Gregg Kellogg](http://greggkellogg.net/)\n    module StreamingReader\n      include Utils\n      include JSON::LD::ToRDF # For value object conversion\n\n      # The base URI to use when resolving relative URIs\n      # @return [RDF::URI]\n      attr_reader :base\n      attr_reader :namer\n\n      def self.format\n        JSON::LD::Format\n      end\n\n      ##\n      # @see   RDF::Reader#each_statement\n      def stream_statement\n        unique_bnodes = @options[:unique_bnodes]\n        rename_bnodes = @options.fetch(:rename_bnodes, true)\n        # FIXME: document loader doesn't stream\n        @base = RDF::URI(@options[:base] || base_uri)\n        mj_opts = @options.keep_if { |k, v| k != :adapter || MUTLI_JSON_ADAPTERS.include?(v) }\n        value = MultiJson.load(@doc, mj_opts)\n        context_ref = @options[:expandContext]\n        # context_ref = @options.fetch(:expandContext, remote_doc.contextUrl)\n        context = Context.parse(context_ref, **@options)\n\n        @namer = if unique_bnodes\n          BlankNodeUniqer.new\n        else\n          (rename_bnodes ? BlankNodeNamer.new(\"b\") : BlankNodeMapper.new)\n        end\n        # Namer for naming provisional nodes, which may be determined later to be actual\n        @provisional_namer = BlankNodeNamer.new(\"p\")\n\n        parse_object(value, nil, context, graph_is_named: false) do |st|\n          # Only output reasonably valid triples\n          yield(st) if st.to_a.all? { |r| r.is_a?(RDF::Term) && (r.uri? ? r.valid? : true) }\n        end\n      rescue ::JSON::ParserError, ::JSON::LD::JsonLdError => e\n        log_fatal(\"Failed to parse input document: #{e.message}\", exception: RDF::ReaderError)\n      end\n\n      private\n\n      # Parse a node object, or array of node objects\n      #\n      # @param [Array, Hash] input\n      # @param [String] active_property\n      #   The unexpanded property referencing this object\n      # @param [Context] context\n      # @param [RDF::Resource] subject referencing this object\n      # @param [RDF::URI] predicate the predicate part of the reference\n      # @param [Boolean] from_map\n      #   Expanding from a map, which could be an `@type` map, so don't clear out context term definitions\n      # @param [Boolean] graph_is_named\n      #   Use of `@graph` implies a named graph; not true at the top-level.\n      # @param [RDF::URI] extra_type from a type map\n      # @param [String] language from a language map\n      # @param [RDF::Resource] node_id from an id map\n      # @return [void]\n      def parse_object(input, active_property, context,\n                       subject: nil, predicate: nil, from_map: false,\n                       extra_type: nil, language: nil, node_id: nil,\n                       graph_is_named: true, &block)\n\n        # Skip predicates that look like a BNode\n        if predicate.to_s.start_with?('_:')\n          warn \"[DEPRECATION] Blank Node properties deprecated in JSON-LD 1.1.\"\n          return\n        end\n\n        if input.is_a?(Array)\n          input.each do |e|\n            parse_object(e, active_property, context, subject: subject, predicate: predicate, from_map: from_map,\n              &block)\n          end\n          return\n        end\n\n        # Note that we haven't parsed an @id key, so have no subject\n        have_id = false\n        node_reference = false\n        is_list_or_set = false\n        node_id ||= RDF::Node.new(@provisional_namer.get_sym)\n        # For keeping statements not yet ready to be emitted\n        provisional_statements = []\n        value_object = {}\n\n        # Use a term-specific context, if defined, based on the non-type-scoped context.\n        if active_property && context.term_definitions[active_property]\n          property_scoped_context = context.term_definitions[active_property].context\n        end\n\n        # Revert any previously type-scoped term definitions, unless this is from a map, a value object or a subject reference\n        # FIXME\n        if input.is_a?(Hash) && context.previous_context\n          expanded_key_map = input.keys.inject({}) do |memo, key|\n            memo.merge(key => context.expand_iri(key, vocab: true, as_string: true, base: base))\n          end\n          revert_context = !from_map &&\n                           !expanded_key_map.value?('@value') &&\n                           expanded_key_map.values != ['@id']\n          context = context.previous_context if revert_context\n        end\n\n        # Apply property-scoped context after reverting term-scoped context\n        context = context.parse(property_scoped_context, base: base, override_protected: true) unless\n          property_scoped_context.nil?\n\n        # Otherwise, unless the value is a number, expand the value according to the Value Expansion rules, passing active property.\n        input = context.expand_value(active_property, input, base: base) unless input.is_a?(Hash)\n\n        # Output any type provided from a type map\n        provisional_statements << RDF::Statement(node_id, RDF.type, extra_type) if\n          extra_type\n\n        # Add statement, either provisionally, or just emit\n        add_statement = proc do |st|\n          if have_id || st.to_quad.none?(node_id)\n            yield(st)\n          else\n            provisional_statements << st\n          end\n        end\n\n        # Input is an object (Hash), parse keys in order\n        state = :await_context\n        input.each do |key, value|\n          expanded_key = context.expand_iri(key, base: base, vocab: true)\n          case expanded_key\n          when '@context'\n            unless state == :await_context\n              raise JsonLdError::InvalidStreamingKeyOrder,\n                \"found #{key} in state #{state}\"\n            end\n            context = context.parse(value, base: base)\n            state = :await_type\n          when '@type'\n            # Set the type-scoped context to the context on input, for use later\n            unless %i[await_context await_type].include?(state)\n              raise JsonLdError::InvalidStreamingKeyOrder,\n                \"found #{key} in state #{state}\"\n            end\n\n            type_scoped_context = context\n            as_array(value).sort.each do |term|\n              unless term.is_a?(String)\n                raise JsonLdError::InvalidTypeValue,\n                  \"value of @type must be a string: #{term.inspect}\"\n              end\n              if type_scoped_context.term_definitions[term]\n                term_context = type_scoped_context.term_definitions[term].context\n              end\n              context = context.parse(term_context, base: base, propagate: false) unless term_context.nil?\n              type = type_scoped_context.expand_iri(term,\n                base: base,\n                documentRelative: true,\n                vocab: true)\n\n              # Early terminate for @json\n              type = RDF.JSON if type == '@json'\n              # Add a provisional statement\n              provisional_statements << RDF::Statement(node_id, RDF.type, type)\n            end\n            state = :await_type\n          when '@id'\n            if is_list_or_set\n              raise JsonLdError::InvalidSetOrListObject,\n                \"found #{key} in state #{state}\"\n            end\n            unless %i[await_context await_type await_id].include?(state)\n              raise JsonLdError::CollidingKeywords,\n                \"found #{key} in state #{state}\"\n            end\n\n            # Set our actual id, and use for replacing any provisional statements using our existing node_id, which is provisional\n            unless value.is_a?(String)\n              raise JsonLdError::InvalidIdValue,\n                \"value of @id must be a string: #{value.inspect}\"\n            end\n            node_reference = input.keys.length == 1\n            expanded_id = context.expand_iri(value, base: base, documentRelative: true)\n            next if expanded_id.nil?\n\n            new_node_id = as_resource(expanded_id)\n            # Replace and emit any statements including our provisional id with the newly established node (or graph) id\n            provisional_statements.each do |st|\n              st.subject = new_node_id if st.subject == node_id\n              st.object = new_node_id if st.object == node_id\n              st.graph_name = new_node_id if st.graph_name == node_id\n              yield(st)\n            end\n\n            provisional_statements.clear\n            have_id = true\n            node_id = new_node_id\n\n            # if there's a subject & predicate, emit that statement now\n            if subject && predicate\n              st = RDF::Statement(subject, predicate, node_id)\n              yield(st)\n            end\n            state = :properties\n\n          when '@direction'\n            if state == :properties\n              raise JsonLdError::InvalidStreamingKeyOrder,\n                \"found @direction in state #{state}\"\n            end\n            value_object['@direction'] = value\n            state = :await_id\n          when '@graph'\n            # If `@graph` is at the top level (no `subject`) and value contains no keys other than `@graph` and `@context`, add triples to the default graph\n            # Process all graph statements\n            parse_object(value, nil, context) do |st|\n              # If `@graph` is at the top level (`graph_is_named` is `false`) and input contains no keys other than `@graph` and `@context`, add triples to the default graph\n              relevant_keys = input.keys - ['@context', key]\n              st.graph_name = node_id unless !graph_is_named && relevant_keys.empty?\n              if st.graph_name && !st.graph_name.valid?\n                warn \"skipping graph statement within invalid graph name: #{st.inspect}\"\n              else\n                add_statement.call(st)\n              end\n            end\n            state = :await_id unless state == :properties\n          when '@included'\n            # Expanded values must be node objects\n            have_statements = false\n            parse_object(value, active_property, context) do |st|\n              have_statements ||= st.subject?\n              yield(st)\n            end\n            unless have_statements\n              raise JsonLdError::InvalidIncludedValue,\n                \"values of @included must expand to node objects\"\n            end\n\n            state = :await_id unless state == :properties\n          when '@index'\n            state = :await_id unless state == :properties\n            unless value.is_a?(String)\n              raise JsonLdError::InvalidIndexValue,\n                \"Value of @index is not a string: #{value.inspect}\"\n            end\n          when '@language'\n            if state == :properties\n              raise JsonLdError::InvalidStreamingKeyOrder,\n                \"found @language in state #{state}\"\n            end\n            unless value.is_a?(String)\n              raise JsonLdError::InvalidLanguageTaggedString,\n                \"@language value must be a string: #{value.inspect}\"\n            end\n            unless /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/.match?(value)\n              warn \"@language must be valid BCP47: #{value.inspect}\"\n              return\n            end\n            language = value\n            state = :await_id\n          when '@list'\n            unless %i[await_context await_type await_id].include?(state)\n              raise JsonLdError::InvalidSetOrListObject,\n                \"found #{key} in state #{state}\"\n            end\n            is_list_or_set = true\n            node_id = parse_list(value, active_property, context, &block) if subject\n            state = :properties\n          when '@nest'\n            if context.term_definitions[active_property]\n              nest_context = context.term_definitions[active_property].context\n            end\n            nest_context = if nest_context.nil?\n              context\n            else\n              context.parse(nest_context, base: base, override_protected: true)\n            end\n            as_array(value).each do |v|\n              raise JsonLdError::InvalidNestValue, v.inspect unless\n                v.is_a?(Hash) && v.keys.none? { |k| nest_context.expand_iri(k, vocab: true, base: base) == '@value' }\n\n              parse_object(v, active_property, nest_context, node_id: node_id) do |st|\n                add_statement.call(st)\n              end\n            end\n            state = :await_id unless state == :properties\n          when '@reverse'\n            as_array(value).each do |item|\n              item = context.expand_value(active_property, item, base: base) unless item.is_a?(Hash)\n              raise JsonLdError::InvalidReverseValue, item.inspect if value?(item)\n              raise JsonLdError::InvalidReversePropertyMap, item.inspect if node_reference?(item)\n              raise JsonLdError::InvalidReversePropertyValue, item.inspect if list?(item)\n\n              has_own_subject = false\n              parse_object(item, active_property, context, node_id: node_id, predicate: predicate) do |st|\n                if st.subject == node_id\n                  raise JsonLdError::InvalidReversePropertyValue, item.inspect unless st.object.resource?\n\n                  # Invert sense of statements\n                  st = RDF::Statement(st.object, st.predicate, st.subject)\n                  has_own_subject = true\n                end\n                add_statement.call(st)\n              end\n\n              # If the reversed node does not make any claims on this subject, it's an error\n              raise JsonLdError::InvalidReversePropertyValue, item.inspect unless has_own_subject\n            end\n            state = :await_id unless state == :properties\n          when '@set'\n            unless %i[await_context await_type await_id].include?(state)\n              raise JsonLdError::InvalidSetOrListObject,\n                \"found #{key} in state #{state}\"\n            end\n            is_list_or_set = true\n            value = as_array(value).compact\n            parse_object(value, active_property, context, subject: subject, predicate: predicate, &block)\n            node_id = nil\n            state = :properties\n          when '@value'\n            if state == :properties\n              raise JsonLdError::InvalidStreamingKeyOrder,\n                \"found @value in state #{state}\"\n            end\n            value_object['@value'] = value\n            state = :await_id\n          else\n            state = :await_id unless state == :properties\n            # Skip keys that don't expand to a keyword or absolute IRI\n            next if expanded_key.is_a?(RDF::URI) && !expanded_key.absolute?\n\n            parse_property(value, key, context, node_id, expanded_key) do |st|\n              add_statement.call(st)\n            end\n          end\n        end\n\n        # Value object with @id\n        if !value_object.empty? && (have_id || is_list_or_set)\n          raise JsonLdError::InvalidValueObject,\n            \"value object has unknown key: @id\"\n        end\n\n        # Can't have both @id and either @list or @set\n        if have_id && is_list_or_set\n          raise JsonLdError::InvalidSetOrListObject,\n            \"found @id with @list or @set\"\n        end\n\n        type_statements = provisional_statements.select { |ps| ps.predicate == RDF.type && ps.graph_name.nil? }\n        value_object['@language'] = (@options[:lowercaseLanguage] ? language.downcase : language) if language\n        if !value_object.empty? &&\n           (!value_object['@value'].nil? ||\n            (type_statements.first || RDF::Statement.new).object == RDF.JSON)\n\n          # There can be only one value of @type\n          case type_statements.length\n          when 0 # skip\n          when 1\n            unless type_statements.first.object.valid?\n              raise JsonLdError::InvalidTypedValue,\n                \"value of @type must be an IRI or '@json': #{type_statements.first.object.inspect}\"\n            end\n            value_object['@type'] = type_statements.first.object\n          else\n            raise JsonLdError::InvalidValueObject,\n              \"value object must not have more than one type\"\n          end\n\n          # Check for extra keys\n          unless (value_object.keys - Expand::KEYS_VALUE_LANGUAGE_TYPE_INDEX_DIRECTION).empty?\n            raise JsonLdError::InvalidValueObject,\n              \"value object has unknown keys: #{value_object.inspect}\"\n          end\n\n          # @type is inconsistent with either @language or @direction\n          if value_object.key?('@type') && !(value_object.keys & %w[@language @direction]).empty?\n            raise JsonLdError::InvalidValueObject,\n              \"value object must not include @type with either \" \\\n              \"@language or @direction: #{value_object.inspect}\"\n          end\n\n          if value_object.key?('@language') && !value_object['@value'].is_a?(String)\n            raise JsonLdError::InvalidLanguageTaggedValue,\n              \"with @language @value must be a string: #{value_object.inspect}\"\n          elsif value_object['@type'] && value_object['@type'] != RDF.JSON\n            unless value_object['@type'].is_a?(RDF::URI)\n              raise JsonLdError::InvalidTypedValue,\n                \"value of @type must be an IRI or '@json': #{value_object['@type'].inspect}\"\n            end\n          elsif value_object['@type'] != RDF.JSON\n            case value_object['@value']\n            when String, TrueClass, FalseClass, Numeric # okay\n            else\n              raise JsonLdError::InvalidValueObjectValue,\n                \"@value is: #{value_object['@value'].inspect}\"\n            end\n          end\n          literal = item_to_rdf(value_object, &block)\n          st = RDF::Statement(subject, predicate, literal)\n          yield(st)\n        elsif !provisional_statements.empty?\n          # Emit all provisional statements, as no @id was ever found\n          provisional_statements.each(&block)\n        end\n\n        # Use implicit subject to generate the relationship\n        return unless value_object.empty? && subject && predicate && !have_id && !node_reference\n\n        yield(RDF::Statement(subject, predicate, node_id))\n      end\n\n      def parse_property(input, active_property, context, subject, predicate, &block)\n        container = context.container(active_property)\n        if container.include?('@language') && input.is_a?(Hash)\n          input.each do |lang, lang_value|\n            expanded_lang = context.expand_iri(lang, vocab: true)\n            if lang !~ /^[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*$/ && expanded_lang != '@none'\n              warn \"@language must be valid BCP47: #{lang.inspect}\"\n            end\n\n            as_array(lang_value).each do |item|\n              unless item.nil? || item.is_a?(String)\n                raise JsonLdError::InvalidLanguageMapValue,\n                  \"Expected #{item.inspect} to be a string\"\n              end\n              lang_obj = { '@value' => item }\n              lang_obj['@language'] = lang unless expanded_lang == '@none'\n              lang_obj['@direction'] = context.direction(lang) if context.direction(lang)\n              parse_object(lang_obj, active_property, context, subject: subject, predicate: predicate, &block)\n            end\n          end\n        elsif container.include?('@list')\n          # Handle case where value is a list object\n          if input.is_a?(Hash) &&\n             input.keys.map do |k|\n               context.expand_iri(k, vocab: true, as_string: true, base: base)\n             end.include?('@list')\n            parse_object(input, active_property, context,\n              subject: subject, predicate: predicate, &block)\n          else\n            list = parse_list(input, active_property, context, &block)\n            yield(RDF::Statement(subject, predicate, list))\n          end\n        elsif container.intersect?(JSON::LD::Expand::CONTAINER_INDEX_ID_TYPE) && input.is_a?(Hash)\n          # Get appropriate context for this container\n          container_context = if container.include?('@type') && context.previous_context\n            context.previous_context\n          elsif container.include?('@id') && context.term_definitions[active_property]\n            id_context = context.term_definitions[active_property].context if context.term_definitions[active_property]\n            if id_context.nil?\n              context\n            else\n              context.parse(id_context, base: base, propagate: false)\n            end\n          else\n            context\n          end\n\n          input.each do |k, v|\n            # If container mapping in the active context includes @type, and k is a term in the active context having a local context, use that context when expanding values\n            map_context = container_context.term_definitions[k].context if\n              container.include?('@type') && container_context.term_definitions[k]\n            map_context = container_context.parse(map_context, base: base, propagate: false) unless map_context.nil?\n            map_context ||= container_context\n\n            expanded_k = container_context.expand_iri(k, vocab: true, as_string: true, base: base)\n            index_key = context.term_definitions[active_property].index || '@index'\n\n            if container.include?('@index') && container.include?('@graph')\n              # Index is ignored\n              as_array(v).each do |item|\n                # Each value is in a separate graph\n                graph_name = RDF::Node.new(namer.get_sym)\n                parse_object(item, active_property, context) do |st|\n                  st.graph_name ||= graph_name\n                  yield(st)\n                end\n                yield(RDF::Statement(subject, predicate, graph_name))\n\n                # Add a property index, if appropriate\n                next if index_key == '@index'\n\n                # Expand key based on term\n                expanded_k = if k == '@none'\n                  '@none'\n                else\n                  container_context.expand_value(index_key, k, base: base)\n                end\n\n                # Add the index property as a property of the graph name\n                index_property = container_context.expand_iri(index_key, vocab: true, base: base)\n                unless expanded_k == '@none'\n                  emit_object(expanded_k, index_key, map_context, graph_name,\n                    index_property, from_map: true, &block)\n                end\n              end\n            elsif container.include?('@index')\n              if index_key == '@index'\n                # Index is ignored\n                emit_object(v, active_property, map_context, subject, predicate, from_map: true, &block)\n              else\n                # Expand key based on term\n                expanded_k = if k == '@none'\n                  '@none'\n                else\n                  container_context.expand_value(index_key, k, base: base)\n                end\n\n                index_property = container_context.expand_iri(index_key, vocab: true, as_string: true, base: base)\n\n                # index_key is a property\n                as_array(v).each do |item|\n                  item = container_context.expand_value(active_property, item, base: base) if item.is_a?(String)\n                  if value?(item)\n                    raise JsonLdError::InvalidValueObject,\n                      \"Attempt to add illegal key to value object: #{index_key}\"\n                  end\n                  # add expanded_k as value of index_property in item\n                  item[index_property] = [expanded_k].concat(Array(item[index_property])) unless expanded_k == '@none'\n                  emit_object(item, active_property, map_context, subject, predicate, from_map: true, &block)\n                end\n              end\n            elsif container.include?('@id') && container.include?('@graph')\n              graph_name = if expanded_k == '@none'\n                RDF::Node.new(namer.get_sym)\n              else\n                container_context.expand_iri(k, documentRelative: true, base: base)\n              end\n              parse_object(v, active_property, context) do |st|\n                st.graph_name ||= graph_name\n                yield(st)\n              end\n              yield(RDF::Statement(subject, predicate, graph_name))\n            elsif container.include?('@id')\n              expanded_k = container_context.expand_iri(k, documentRelative: true, base: base)\n              # pass our id\n              emit_object(v, active_property, map_context, subject, predicate,\n                node_id: (expanded_k unless expanded_k == '@none'),\n                from_map: true,\n                &block)\n            elsif container.include?('@type')\n              emit_object(v, active_property, map_context, subject, predicate,\n                from_map: true,\n                extra_type: as_resource(expanded_k),\n                &block)\n            end\n          end\n        elsif container.include?('@graph')\n          # Index is ignored\n          as_array(input).each do |v|\n            # Each value is in a separate graph\n            graph_name = RDF::Node.new(namer.get_sym)\n            parse_object(v, active_property, context) do |st|\n              st.graph_name ||= graph_name\n              yield(st)\n            end\n            yield(RDF::Statement(subject, predicate, graph_name))\n          end\n        else\n          emit_object(input, active_property, context, subject, predicate, &block)\n        end\n      end\n\n      # Wrapps parse_object to handle JSON literals and reversed properties\n      def emit_object(input, active_property, context, subject, predicate, **options, &block)\n        if context.coerce(active_property) == '@json'\n          parse_object(context.expand_value(active_property, input), active_property, context,\n            subject: subject, predicate: predicate, **options, &block)\n        elsif context.reverse?(active_property)\n          as_array(input).each do |item|\n            item = context.expand_value(active_property, item, base: base) unless item.is_a?(Hash)\n            raise JsonLdError::InvalidReverseValue, item.inspect if value?(item)\n            raise JsonLdError::InvalidReversePropertyValue, item.inspect if list?(item)\n\n            has_own_subject = false\n            parse_object(item, active_property, context, subject: subject, predicate: predicate, **options) do |st|\n              if st.subject == subject\n                raise JsonLdError::InvalidReversePropertyValue, item.inspect unless st.object.resource?\n\n                # Invert sense of statements\n                st = RDF::Statement(st.object, st.predicate, st.subject)\n                has_own_subject = true\n              end\n              yield(st)\n            end\n\n            # If the reversed node does not make any claims on this subject, it's an error\n            unless has_own_subject\n              raise JsonLdError::InvalidReversePropertyValue,\n                \"@reverse value must be a node: #{value.inspect}\"\n            end\n          end\n        else\n          as_array(input).flatten.each do |item|\n            # emit property/value\n            parse_object(item, active_property, context,\n              subject: subject, predicate: predicate, **options, &block)\n          end\n        end\n      end\n\n      # Process input as an ordered list\n      # @return [RDF::Resource] the list head\n      def parse_list(input, active_property, context, &block)\n        # Transform all entries into their values\n        # this allows us to eliminate those that don't create any statements\n        fake_subject = RDF::Node.new\n        values = as_array(input).map do |entry|\n          if entry.is_a?(Array)\n            # recursive list\n            entry_value = parse_list(entry, active_property, context, &block)\n          else\n            entry_value = nil\n            parse_object(entry, active_property, context, subject: fake_subject, predicate: RDF.first) do |st|\n              if st.subject == fake_subject\n                entry_value = st.object\n              else\n                yield(st)\n              end\n            end\n            entry_value\n          end\n        end.compact\n        return RDF.nil if values.empty?\n\n        # Construct a list from values, and emit list statements, returning the list subject\n        list = RDF::List(*values)\n        list.each_statement(&block)\n        list.subject\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/streaming_writer.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    ##\n    # Streaming writer interface.\n    #\n    # Writes an array of statements serialized in expanded JSON-LD. No provision for turning rdf:first/rest into @list encodings.\n    # @author [Gregg Kellogg](http://greggkellogg.net/)\n    module StreamingWriter\n      ##\n      # Write out array start, and note not to prepend node-separating ','\n      # @return [void] `self`\n      def stream_prologue\n        # If we were provided a context, or prefixes, use them to compact the output\n        @context = case @options[:context]\n        when nil then nil\n        when Context then @options[:context]\n        else Context.parse(@options[:context])\n        end\n\n        # log_debug(\"prologue\") {\"context: #{context.inspect}\"}\n        if context\n          @output.puts %({\"@context\": #{context.serialize['@context'].to_json}, \"@graph\": [)\n        else\n          @output.puts \"[\"\n        end\n        self\n      end\n\n      ##\n      # Write a statement, creating a current node definition, if necessary.\n      #\n      # Once a new/first statement is seen, terminate the current node definition and compact if provided a context.\n      #\n      # Also expects all statements in the same context to be contained in a block including all subjects in a block (except for list elements)\n      #\n      # Note that if list elements are not received in order using the same subject and property, this may cause a bad serialization.\n      #\n      # @return [void] `self`\n      def stream_statement(statement)\n        # log_debug(\"ss\") {\"state: #{@state.inspect}, stmt: #{statement}\"}\n        if @current_graph != statement.graph_name\n          end_graph\n          start_graph(statement.graph_name)\n        end\n\n        # If we're writing a list\n        @current_node_def ||= { '@id' => statement.subject.to_s }\n\n        if statement.subject.to_s != @current_node_def['@id']\n          end_node\n          @current_node_def = { '@id' => statement.subject.to_s }\n        end\n\n        if statement.predicate == RDF.type\n          (@current_node_def['@type'] ||= []) << statement.object.to_s\n        else\n          pd = (@current_node_def[statement.predicate.to_s] ||= [])\n\n          pd << if statement.object.resource?\n            { '@id' => statement.object.to_s }\n          elsif statement.object.datatype == RDF_JSON\n            { \"@value\" => MultiJson.load(statement.object.to_s), \"@type\" => \"@json\" }\n          else\n            lit = { \"@value\" => statement.object.to_s }\n            lit[\"@type\"] = statement.object.datatype.to_s if statement.object.datatype?\n            lit[\"@language\"] = statement.object.language.to_s if statement.object.language?\n            lit\n          end\n        end\n        self\n      end\n\n      ##\n      # Complete open statements\n      # @return [void] `self`\n      def stream_epilogue\n        # log_debug(\"epilogue\") {\"state: #{@state.inspect}\"}\n        end_graph\n        if context\n          @output.puts \"\\n]}\"\n        else\n          @output.puts \"\\n]\"\n        end\n        self\n      end\n\n      private\n\n      def start_graph(resource)\n        # log_debug(\"start_graph\") {\"state: #{@state.inspect}, resource: #{resource}\"}\n        if resource\n          @output.puts(\",\") if %i[wrote_node wrote_graph].include?(@state)\n          @output.puts %({\"@id\": \"#{resource}\", \"@graph\": [)\n          @state = :in_graph\n        end\n        @current_graph = resource\n      end\n\n      def end_graph\n        # log_debug(\"end_graph\") {\"state: #{@state.inspect}, ctx: #{@current_graph}\"}\n        end_node\n        return unless @current_graph\n\n        @output.write %(]})\n        @state = :wrote_graph\n      end\n\n      def end_node\n        # log_debug(\"end_node\") {\"state: #{@state.inspect}, node: #{@current_node_def.to_json}\"}\n        @output.puts(\",\") if %i[wrote_node wrote_graph].include?(@state)\n        return unless @current_node_def\n\n        node_def = if context\n          compacted = JSON::LD::API.compact(@current_node_def, context, rename_bnodes: false, **@options)\n          compacted.delete('@context')\n          compacted\n        else\n          @current_node_def\n        end\n        @output.write node_def.to_json\n        @state = :wrote_node\n        @current_node_def = nil\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/to_rdf.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'rdf'\nrequire 'rdf/nquads'\nrequire 'json/canonicalization'\n\nmodule JSON\n  module LD\n    module ToRDF\n      include Utils\n\n      ##\n      # @param [Hash{String => Object}] item\n      # @param [RDF::Resource] graph_name\n      # @param [Boolean] quoted emitted triples are quoted triples.\n      # @yield statement\n      # @yieldparam [RDF::Statement] statement\n      # @return RDF::Resource the subject of this item\n      def item_to_rdf(item, graph_name: nil, quoted: false, &block)\n        # Just return value object as Term\n        return unless item\n\n        if value?(item)\n          value = item.fetch('@value')\n          datatype = item.fetch('@type', nil)\n\n          datatype = RDF_JSON if datatype == '@json'\n\n          case value\n          when RDF::Value\n            return value\n          when TrueClass, FalseClass\n            # If value is true or false, then set value its canonical lexical form as defined in the section Data Round Tripping. If datatype is null, set it to xsd:boolean.\n            value = value.to_s\n            datatype ||= RDF::XSD.boolean.to_s\n          when Numeric\n            # Otherwise, if value is a number, then set value to its canonical lexical form as defined in the section Data Round Tripping. If datatype is null, set it to either xsd:integer or xsd:double, depending on if the value contains a fractional and/or an exponential component.\n            value = if datatype == RDF_JSON\n              value.to_json_c14n\n            else\n              # Don't serialize as double if there are no fractional bits\n              as_double = value.ceil != value || value >= 1e21 || datatype == RDF::XSD.double\n              lit = if as_double\n                RDF::Literal::Double.new(value, canonicalize: true)\n              else\n                RDF::Literal.new(value.numerator, canonicalize: true)\n              end\n\n              datatype ||= lit.datatype\n              lit.to_s.sub(\"E+\", \"E\")\n            end\n          when Array, Hash\n            # Only valid for rdf:JSON\n            value = value.to_json_c14n\n          else\n            if item.key?('@direction') && @options[:rdfDirection]\n              # Either serialize using a datatype, or a compound-literal\n              case @options[:rdfDirection]\n              when 'i18n-datatype'\n                datatype = RDF::URI(\"https://www.w3.org/ns/i18n##{item.fetch('@language',\n                  '').downcase}_#{item['@direction']}\")\n              when 'compound-literal'\n                cl = RDF::Node.new\n                yield RDF::Statement(cl, RDF.value, item['@value'].to_s)\n                yield RDF::Statement(cl, RDF_LANGUAGE, item['@language'].downcase) if item['@language']\n                yield RDF::Statement(cl, RDF_DIRECTION, item['@direction'])\n                return cl\n              end\n            end\n\n            # Otherwise, if datatype is null, set it to xsd:string or xsd:langString, depending on if item has a @language key.\n            datatype ||= item.key?('@language') ? RDF.langString : RDF::XSD.string\n            value = value.to_json_c14n if datatype == RDF_JSON\n          end\n          datatype = RDF::URI(datatype) if datatype && !datatype.is_a?(RDF::URI)\n\n          # Initialize literal as an RDF literal using value and datatype. If element has the key @language and datatype is xsd:string, then add the value associated with the @language key as the language of the object.\n          language = item.fetch('@language', nil) if datatype == RDF.langString\n          return RDF::Literal.new(value, datatype: datatype, language: language)\n        elsif list?(item)\n          # If item is a list object, initialize list_results as an empty array, and object to the result of the List Conversion algorithm, passing the value associated with the @list key from item and list_results.\n          return parse_list(item['@list'], graph_name: graph_name, &block)\n        end\n\n        subject = case item['@id']\n        when nil then node\n        when String then as_resource(item['@id'])\n        when Object\n          # Embedded/quoted statement\n          # (No error checking, as this is done in expansion)\n          to_enum(:item_to_rdf, item['@id'], quoted: true).to_a.first\n        end\n\n        # log_debug(\"item_to_rdf\")  {\"subject: #{subject.to_ntriples rescue 'malformed rdf'}\"}\n        item.each do |property, values|\n          case property\n          when '@type'\n            # If property is @type, construct triple as an RDF Triple composed of id, rdf:type, and object from values where id and object are represented either as IRIs or Blank Nodes\n            values.each do |v|\n              object = as_resource(v)\n              # log_debug(\"item_to_rdf\")  {\"type: #{object.to_ntriples rescue 'malformed rdf'}\"}\n              yield RDF::Statement(subject, RDF.type, object, graph_name: graph_name, quoted: quoted)\n            end\n          when '@graph'\n            values = [values].compact unless values.is_a?(Array)\n            values.each do |nd|\n              item_to_rdf(nd, graph_name: subject, quoted: quoted, &block)\n            end\n          when '@reverse'\n            raise \"Huh?\" unless values.is_a?(Hash)\n\n            values.each do |prop, vv|\n              predicate = as_resource(prop)\n              # log_debug(\"item_to_rdf\")  {\"@reverse predicate: #{predicate.to_ntriples rescue 'malformed rdf'}\"}\n              # For each item in values\n              vv.each do |v|\n                # Item is a node definition. Generate object as the result of the Object Converstion algorithm passing item.\n                object = item_to_rdf(v, graph_name: graph_name, &block)\n                # log_debug(\"item_to_rdf\")  {\"subject: #{object.to_ntriples rescue 'malformed rdf'}\"}\n                # yield subject, prediate, and literal to results.\n                yield RDF::Statement(object, predicate, subject, graph_name: graph_name, quoted: quoted)\n              end\n            end\n          when '@included'\n            values.each do |v|\n              item_to_rdf(v, graph_name: graph_name, &block)\n            end\n          when /^@/\n            # Otherwise, if @type is any other keyword, skip to the next property-values pair\n          else\n            # Otherwise, property is an IRI or Blank Node identifier\n            # Initialize predicate from  property as an IRI or Blank node\n            predicate = as_resource(property)\n            # log_debug(\"item_to_rdf\")  {\"predicate: #{predicate.to_ntriples rescue 'malformed rdf'}\"}\n\n            # For each item in values\n            values.each do |v|\n              if list?(v)\n                # log_debug(\"item_to_rdf\")  {\"list: #{v.inspect}\"}\n                # If item is a list object, initialize list_results as an empty array, and object to the result of the List Conversion algorithm, passing the value associated with the @list key from item and list_results.\n                object = parse_list(v['@list'], graph_name: graph_name, &block)\n\n                # Append a triple composed of subject, prediate, and object to results and add all triples from list_results to results.\n              else\n                # Otherwise, item is a value object or a node definition. Generate object as the result of the Object Converstion algorithm passing item.\n                object = item_to_rdf(v, graph_name: graph_name, &block)\n                # log_debug(\"item_to_rdf\")  {\"object: #{object.to_ntriples rescue 'malformed rdf'}\"}\n                # yield subject, prediate, and literal to results.\n              end\n              yield RDF::Statement(subject, predicate, object, graph_name: graph_name, quoted: quoted)\n            end\n          end\n        end\n\n        subject\n      end\n\n      ##\n      # Parse a List\n      #\n      # @param [Array] list\n      #   The Array to serialize as a list\n      # @yield statement\n      # @yieldparam [RDF::Resource] statement\n      # @return [Array<RDF::Statement>]\n      #   Statements for each item in the list\n      def parse_list(list, graph_name: nil, &block)\n        # log_debug('parse_list') {\"list: #{list.inspect}\"}\n\n        last = list.pop\n        result = first_bnode = last ? node : RDF.nil\n\n        list.each do |list_item|\n          # Set first to the result of the Object Converstion algorithm passing item.\n          object = item_to_rdf(list_item, graph_name: graph_name, &block)\n          yield RDF::Statement(first_bnode, RDF.first, object, graph_name: graph_name)\n          rest_bnode = node\n          yield RDF::Statement(first_bnode, RDF.rest, rest_bnode, graph_name: graph_name)\n          first_bnode = rest_bnode\n        end\n        if last\n          object = item_to_rdf(last, graph_name: graph_name, &block)\n          yield RDF::Statement(first_bnode, RDF.first, object, graph_name: graph_name)\n          yield RDF::Statement(first_bnode, RDF.rest, RDF.nil, graph_name: graph_name)\n        end\n        result\n      end\n\n      ##\n      # Create a new named node using the sequence\n      def node\n        RDF::Node.new(namer.get_sym)\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/utils.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    module Utils\n      ##\n      # Is value a node? A value is a node if\n      # * it is a Hash\n      # * it is not a @value, @set or @list\n      # * it has more than 1 key or any key is not @id\n      # @param [Object] value\n      # @return [Boolean]\n      def node?(value)\n        value.is_a?(Hash) &&\n          !(value.key?('@value') || value.key?('@list') || value.key?('@set')) &&\n          (value.length > 1 || !value.key?('@id'))\n      end\n\n      ##\n      # Is value a node reference?\n      # @param [Object] value\n      # @return [Boolean]\n      def node_reference?(value)\n        value.is_a?(Hash) && value.length == 1 && value.key?('@id')\n      end\n\n      ##\n      # Is value a node or a node reference reference?\n      # @param [Object] value\n      # @return [Boolean]\n      def node_or_ref?(value)\n        value.is_a?(Hash) &&\n          !(value.key?('@value') || value.key?('@list') || value.key?('@set'))\n      end\n\n      ##\n      # Is value a blank node? Value is a blank node\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def blank_node?(value)\n        case value\n        when nil    then true\n        when String then value.start_with?('_:')\n        else\n          (node?(value) || node_reference?(value)) && value.fetch('@id', '_:').start_with?('_:')\n        end\n      end\n\n      ##\n      # Is value an expaned @graph?\n      #\n      # Note: A value is a graph if all of these hold true:\n      # 1. It is an object.\n      # 2. It has an `@graph` key.\n      # 3. It may have '@context', '@id' or '@index'\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def graph?(value)\n        value.is_a?(Hash) && (value.keys - UTIL_GRAPH_KEYS) == ['@graph']\n      end\n\n      ##\n      # Is value a simple graph (lacking @id)?\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def simple_graph?(value)\n        graph?(value) && !value.key?('@id')\n      end\n\n      ##\n      # Is value an expaned @list?\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def list?(value)\n        value.is_a?(Hash) && value.key?('@list')\n      end\n\n      ##\n      # Is value annotated?\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def index?(value)\n        value.is_a?(Hash) && value.key?('@index')\n      end\n\n      ##\n      # Is value literal?\n      #\n      # @param [Object] value\n      # @return [Boolean]\n      def value?(value)\n        value.is_a?(Hash) && value.key?('@value')\n      end\n\n      ##\n      # Represent an id as an IRI or Blank Node\n      # @param [String] id\n      # @param [RDF::URI] base (nil)\n      # @return [RDF::Resource]\n      def as_resource(id, base = nil)\n        @nodes ||= {} # Re-use BNodes\n        if id.start_with?('_:')\n          (@nodes[id] ||= RDF::Node.new(namer.get_sym(id)))\n        elsif base\n          base.join(id)\n        else\n          RDF::URI(id)\n        end\n      end\n\n      ##\n      # Represent as an array\n      # @param [Object] object\n      # @return [Array<Object>]\n      def as_array(object)\n        object.is_a?(Array) ? object : [object]\n      end\n\n      ##\n      # Compares two JSON-LD values for equality. Two JSON-LD values will be\n      # considered equal if:\n      #\n      # 1. They are both primitives of the same type and value.\n      # 2. They are both @values with the same @value, @type, @language,\n      #   and @index, OR\n      # 3. They both have @ids that are the same.\n      #\n      # @param [Object] v1 the first value.\n      # @param [Object] v2 the second value.\n      #\n      # @return [Boolean] v1 and v2 are considered equal\n      def compare_values(v1, v2)\n        if node_or_ref?(v1) && node_or_ref?(v2)\n          v1['@id'] && v1['@id'] == v2['@id']\n        elsif value?(v1) && value?(v2)\n          v1['@value'] == v2['@value'] &&\n            v1['@type'] == v2['@type'] &&\n            v1['@language'] == v2['@language'] &&\n            v1['@index'] == v2['@index']\n        else\n          v1 == v2\n        end\n      end\n\n      # Adds a value to a subject. If the value is an array, all values in the\n      # array will be added.\n      #\n      # @param [Hash] subject the hash to add the value to.\n      # @param [String] property the property that relates the value to the subject.\n      # @param [Object] value the value to add.\n      # @param [Boolean] property_is_array (false)\n      #   true if the property is always an array, false if not.\n      # @param [Boolean] value_is_array (false)\n      #   true if the value to be added should be preserved as an array (lists)\n      # @param [Boolean] allow_duplicate (true)\n      #   true to allow duplicates, false not to (uses\n      #     a simple shallow comparison of subject ID or value).\n      def add_value(subject, property, value, property_is_array: false, value_is_array: false, allow_duplicate: true)\n        if value_is_array\n          subject[property] = value\n        elsif value.is_a?(Array)\n          subject[property] = [] if value.empty? && property_is_array\n          value.each do |v|\n            add_value(subject, property, v,\n              property_is_array: property_is_array, allow_duplicate: allow_duplicate)\n          end\n        elsif subject[property]\n          # check if subject already has value if duplicates not allowed\n          _has_value = !allow_duplicate && has_value?(subject, property, value)\n\n          # make property an array if value not present or always an array\n          if !subject[property].is_a?(Array) && (!_has_value || property_is_array)\n            subject[property] =\n              [subject[property]]\n          end\n          subject[property] << value unless _has_value\n        else\n          subject[property] = property_is_array ? [value] : value\n        end\n      end\n\n      # Returns True if the given subject has the given property.\n      #\n      # @param subject the subject to check.\n      # @param property the property to look for.\n      #\n      # @return [Boolean] true if the subject has the given property, false if not.\n      def property?(subject, property)\n        return false unless (value = subject[property])\n\n        !value.is_a?(Array) || !value.empty?\n      end\n\n      # Determines if the given value is a property of the given subject.\n      #\n      # @param [Hash] subject the subject to check.\n      # @param [String] property the property to check.\n      # @param [Object] value the value to check.\n      #\n      # @return [Boolean] true if the value exists, false if not.\n      def has_value?(subject, property, value)\n        if property?(subject, property)\n          val = subject[property]\n          is_list = list?(val)\n          if val.is_a?(Array) || is_list\n            val = val['@list'] if is_list\n            val.any? { |v| compare_values(value, v) }\n          elsif !val.is_a?(Array)\n            compare_values(value, val)\n          else\n            false\n          end\n        else\n          false\n        end\n      end\n\n      private\n\n      UTIL_GRAPH_KEYS = %w[@context @id @index].freeze\n\n      # Merge the last value into an array based for the specified key if hash is not null and value is not already in that array\n      def merge_value(hash, key, value)\n        return unless hash\n\n        values = hash[key] ||= []\n        if key == '@list'\n          values << value\n        elsif list?(value)\n          values << value\n        elsif !values.include?(value)\n          values << value\n        end\n      end\n    end\n\n    ##\n    # Utility class for mapping old blank node identifiers, or unnamed blank\n    # nodes to new identifiers\n    class BlankNodeMapper < Hash\n      ##\n      # Just return a Blank Node based on `old`. Manufactures\n      # a node if `old` is nil or empty\n      # @param [String] old (\"\")\n      # @return [String]\n      def get_sym(old = \"\")\n        old = RDF::Node.new.to_s if old.to_s.empty?\n        old.to_s.sub(/_:/, '')\n      end\n\n      ##\n      # Get a new mapped name for `old`\n      #\n      # @param [String] old (\"\")\n      # @return [String]\n      def get_name(old = \"\")\n        \"_:\" + get_sym(old)\n      end\n    end\n\n    class BlankNodeUniqer < BlankNodeMapper\n      ##\n      # Use the uniquely generated bnodes, rather than a sequence\n      # @param [String] old (\"\")\n      # @return [String]\n      def get_sym(old = \"\")\n        old = old.to_s.sub(/_:/, '')\n        if old && key?(old)\n          self[old]\n        elsif !old.empty?\n          self[old] = RDF::Node.new.to_unique_base[2..]\n        else\n          RDF::Node.new.to_unique_base[2..]\n        end\n      end\n    end\n\n    class BlankNodeNamer < BlankNodeMapper\n      # @param [String] prefix\n      def initialize(prefix)\n        @prefix = prefix.to_s\n        @num = 0\n        super\n      end\n\n      ##\n      # Get a new symbol mapped from `old`\n      # @param [String] old (\"\")\n      # @return [String]\n      def get_sym(old = \"\")\n        old = old.to_s.sub(/_:/, '')\n        if !old.empty? && key?(old)\n          self[old]\n        elsif !old.empty?\n          @num += 1\n          # puts \"allocate #{@prefix + (@num - 1).to_s} to #{old.inspect}\"\n          self[old] = @prefix + (@num - 1).to_s\n        else\n          # Not referenced, just return a new unique value\n          @num += 1\n          # puts \"allocate #{@prefix + (@num - 1).to_s} to #{old.inspect}\"\n          @prefix + (@num - 1).to_s\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/version.rb",
    "content": "# frozen_string_literal: true\n\nmodule JSON\n  module LD\n    module VERSION\n      VERSION_FILE = File.join(__dir__, \"..\", \"..\", \"..\", \"VERSION\")\n      MAJOR, MINOR, TINY, EXTRA = File.read(VERSION_FILE).chomp.split(\".\")\n\n      STRING = [MAJOR, MINOR, TINY, EXTRA].compact.join('.')\n\n      ##\n      # @return [String]\n      def self.to_s\n        STRING\n      end\n\n      ##\n      # @return [String]\n      def self.to_str\n        STRING\n      end\n\n      ##\n      # @return [Array(Integer, Integer, Integer)]\n      def self.to_a\n        STRING.split(\".\")\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld/writer.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'json/ld/streaming_writer'\nrequire 'link_header'\n\nmodule JSON\n  module LD\n    ##\n    # A JSON-LD parser in Ruby.\n    #\n    # Note that the natural interface is to write a whole graph at a time.\n    # Writing statements or Triples will create a graph to add them to\n    # and then serialize the graph.\n    #\n    # @example Obtaining a JSON-LD writer class\n    #   RDF::Writer.for(:jsonld)         #=> JSON::LD::Writer\n    #   RDF::Writer.for(\"etc/test.json\")\n    #   RDF::Writer.for(:file_name      => \"etc/test.json\")\n    #   RDF::Writer.for(file_extension: \"json\")\n    #   RDF::Writer.for(:content_type   => \"application/turtle\")\n    #\n    # @example Serializing RDF graph into an JSON-LD file\n    #   JSON::LD::Writer.open(\"etc/test.json\") do |writer|\n    #     writer << graph\n    #   end\n    #\n    # @example Serializing RDF statements into an JSON-LD file\n    #   JSON::LD::Writer.open(\"etc/test.json\") do |writer|\n    #     graph.each_statement do |statement|\n    #       writer << statement\n    #     end\n    #   end\n    #\n    # @example Serializing RDF statements into an JSON-LD string\n    #   JSON::LD::Writer.buffer do |writer|\n    #     graph.each_statement do |statement|\n    #       writer << statement\n    #     end\n    #   end\n    #\n    # The writer will add prefix definitions, and use them for creating @context definitions, and minting CURIEs\n    #\n    # @example Creating @@context prefix definitions in output\n    #   JSON::LD::Writer.buffer(\n    #     prefixes: {\n    #       nil => \"http://example.com/ns#\",\n    #       foaf: \"http://xmlns.com/foaf/0.1/\"}\n    #   ) do |writer|\n    #     graph.each_statement do |statement|\n    #       writer << statement\n    #     end\n    #   end\n    #\n    # Select the :expand option to output JSON-LD in expanded form\n    #\n    # @see https://www.w3.org/TR/json-ld11-api/\n    # @see https://www.w3.org/TR/json-ld11-api/#the-normalization-algorithm\n    # @author [Gregg Kellogg](http://greggkellogg.net/)\n    class Writer < RDF::Writer\n      include StreamingWriter\n      include Utils\n      include RDF::Util::Logger\n      format Format\n\n      # @!attribute [r] graph\n      # @return [RDF::Graph] Graph of statements serialized\n      attr_reader :graph\n\n      # @!attribute [r] context\n      # @return [Context] context used to load and administer contexts\n      attr_reader :context\n\n      ##\n      # JSON-LD Writer options\n      # @see https://ruby-rdf.github.io/rdf/RDF/Writer#options-class_method\n      def self.options\n        super + [\n          RDF::CLI::Option.new(\n            symbol: :compactArrays,\n            datatype: TrueClass,\n            default: true,\n            control: :checkbox,\n            on: [\"--[no-]compact-arrays\"],\n            description: \"Replaces arrays with just one element with that element during compaction. Default is `true` use --no-compact-arrays to disable.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :compactToRelative,\n            datatype: TrueClass,\n            default: true,\n            control: :checkbox,\n            on: [\"--[no-]compact-to-relative\"],\n            description: \"Creates document relative IRIs when compacting, if `true`, otherwise leaves expanded. Default is `true` use --no-compact-to-relative to disable.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :context,\n            datatype: RDF::URI,\n            control: :url2,\n            on: [\"--context CONTEXT\"],\n            description: \"Context to use when compacting.\"\n          ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) },\n          RDF::CLI::Option.new(\n            symbol: :embed,\n            datatype: %w[@always @once @never],\n            default: '@once',\n            control: :select,\n            on: [\"--embed EMBED\"],\n            description: \"How to embed matched objects (@once).\"\n          ) { |arg| RDF::URI(arg) },\n          RDF::CLI::Option.new(\n            symbol: :explicit,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]explicit\"],\n            description: \"Only include explicitly declared properties in output (false)\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :frame,\n            datatype: RDF::URI,\n            control: :url2,\n            use: :required,\n            on: [\"--frame FRAME\"],\n            description: \"Frame to use when serializing.\"\n          ) { |arg| RDF::URI(arg).absolute? ? RDF::URI(arg) : StringIO.new(File.read(arg)) },\n          RDF::CLI::Option.new(\n            symbol: :lowercaseLanguage,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]lowercase-language\"],\n            description: \"By default, language tags are left as is. To normalize to lowercase, set this option to `true`.\"\n          ),\n          RDF::CLI::Option.new(\n            symbol: :omitDefault,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]omitDefault\"],\n            description: \"Omit missing properties from output (false)\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :ordered,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]ordered\"],\n            description: \"Order object member processing lexographically.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :processingMode,\n            datatype: %w[json-ld-1.0 json-ld-1.1],\n            control: :radio,\n            on: [\"--processingMode MODE\", %w[json-ld-1.0 json-ld-1.1]],\n            description: \"Set Processing Mode (json-ld-1.0 or json-ld-1.1)\"\n          ),\n          RDF::CLI::Option.new(\n            symbol: :rdfDirection,\n            datatype: %w[i18n-datatype compound-literal],\n            default: 'null',\n            control: :select,\n            on: [\"--rdf-direction DIR\", %w[i18n-datatype compound-literal]],\n            description: \"How to serialize literal direction (i18n-datatype compound-literal)\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :requireAll,\n            datatype: TrueClass,\n            default: true,\n            control: :checkbox,\n            on: [\"--[no-]require-all\"],\n            description: \"Require all properties to match (true). Default is `true` use --no-require-all to disable.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :stream,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]stream\"],\n            description: \"Do not attempt to optimize graph presentation, suitable for streaming large graphs.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :useNativeTypes,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]use-native-types\"],\n            description: \"Use native JSON values in value objects.\"\n          ) { |arg| arg },\n          RDF::CLI::Option.new(\n            symbol: :useRdfType,\n            datatype: TrueClass,\n            control: :checkbox,\n            on: [\"--[no-]use-rdf-type\"],\n            description: \"Treat `rdf:type` like a normal property instead of using `@type`.\"\n          ) { |arg| arg }\n        ]\n      end\n\n      class << self\n        attr_reader :white_list, :black_list\n\n        ##\n        # Use parameters from accept-params to determine if the parameters are acceptable to invoke this writer. The `accept_params` will subsequently be provided to the writer instance.\n        #\n        # @param [Hash{Symbol => String}] accept_params\n        # @yield [accept_params] if a block is given, returns the result of evaluating that block\n        # @yieldparam [Hash{Symbol => String}] accept_params\n        # @return [Boolean]\n        # @see    http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.1\n        def accept?(accept_params)\n          if block_given?\n            yield(accept_params)\n          else\n            true\n          end\n        end\n\n        ##\n        # Returns default context used for compacted profile without an explicit context URL\n        # @return [String]\n        def default_context\n          @default_context || JSON::LD::DEFAULT_CONTEXT\n        end\n\n        ##\n        # Sets default context used for compacted profile without an explicit context URL\n        # @param [String] url\n        attr_writer :default_context\n      end\n\n      ##\n      # Initializes the JSON-LD writer instance.\n      #\n      # @param  [IO, File] output\n      #   the output stream\n      # @param  [Hash{Symbol => Object}] options\n      #   any additional options\n      # @option options [Encoding] :encoding     (Encoding::UTF_8)\n      #   the encoding to use on the output stream (Ruby 1.9+)\n      # @option options [Boolean]  :canonicalize (false)\n      #   whether to canonicalize literals when serializing\n      # @option options [Hash]     :prefixes     ({})\n      #   the prefix mappings to use (not supported by all writers)\n      # @option options [Boolean]  :standard_prefixes   (false)\n      #   Add standard prefixes to @prefixes, if necessary.\n      # @option options [IO, Array, Hash, String, Context]     :context     ({})\n      #   context to use when serializing. Constructed context for native serialization.\n      # @option options [IO, Array, Hash, String, Context]     :frame     ({})\n      #   frame to use when serializing.\n      # @option options [Boolean]  :unique_bnodes   (false)\n      #   Use unique bnode identifiers, defaults to using the identifier which the node was originall initialized with (if any).\n      # @option options [Proc] serializer (JSON::LD::API.serializer)\n      #   A Serializer method used for generating the JSON serialization of the result.\n      # @option options [Boolean] :stream (false)\n      #   Do not attempt to optimize graph presentation, suitable for streaming large graphs.\n      # @yield  [writer] `self`\n      # @yieldparam  [RDF::Writer] writer\n      # @yieldreturn [void]\n      # @yield  [writer]\n      # @yieldparam [RDF::Writer] writer\n      def initialize(output = $stdout, **options, &block)\n        options[:base_uri] ||= options[:base] if options.key?(:base)\n        options[:base] ||= options[:base_uri] if options.key?(:base_uri)\n        @serializer = options.fetch(:serializer, JSON::LD::API.method(:serializer))\n        super do\n          @repo = RDF::Repository.new\n\n          if block\n            case block.arity\n            when 0 then instance_eval(&block)\n            else yield(self)\n            end\n          end\n        end\n      end\n\n      ##\n      # Addes a triple to be serialized\n      # @param  [RDF::Resource] subject\n      # @param  [RDF::URI]      predicate\n      # @param  [RDF::Value]    object\n      # @return [void]\n      # @abstract\n      def write_triple(subject, predicate, object)\n        write_quad(subject, predicate, object, nil)\n      end\n\n      ##\n      # Outputs the N-Quads representation of a statement.\n      #\n      # @param  [RDF::Resource] subject\n      # @param  [RDF::URI]      predicate\n      # @param  [RDF::Term]     object\n      # @return [void]\n      def write_quad(subject, predicate, object, graph_name)\n        statement = RDF::Statement.new(subject, predicate, object, graph_name: graph_name)\n        if @options[:stream]\n          stream_statement(statement)\n        else\n          @repo.insert(statement)\n        end\n      end\n\n      ##\n      # Necessary for streaming\n      # @return [void] `self`\n      def write_prologue\n        stream_prologue if @options[:stream]\n        super\n      end\n\n      ##\n      # Outputs the Serialized JSON-LD representation of all stored statements.\n      #\n      # If provided a context or prefixes, we'll create a context\n      # and use it to compact the output. Otherwise, we return un-compacted JSON-LD\n      #\n      # @return [void]\n      # @see    #write_triple\n      def write_epilogue\n        if @options[:stream]\n          stream_epilogue\n        else\n\n          # log_debug(\"writer\") { \"serialize #{@repo.count} statements, #{@options.inspect}\"}\n          result = API.fromRdf(@repo, **@options.merge(serializer: nil))\n\n          # Some options may be indicated from accept parameters\n          profile = @options.fetch(:accept_params, {}).fetch(:profile, \"\").split\n          links = LinkHeader.parse(@options[:link])\n          @options[:context] ||= begin\n            links.find_link(['rel', JSON_LD_NS + \"context\"]).href\n          rescue StandardError\n            nil\n          end\n          @options[:context] ||= Writer.default_context if profile.include?(JSON_LD_NS + \"compacted\")\n          @options[:frame] ||= begin\n            links.find_link(['rel', JSON_LD_NS + \"frame\"]).href\n          rescue StandardError\n            nil\n          end\n\n          # If we were provided a context, or prefixes, use them to compact the output\n          context = @options[:context]\n          context ||= if @options[:prefixes] || @options[:language] || @options[:standard_prefixes]\n            ctx = Context.new(**@options)\n            ctx.language = @options[:language] if @options[:language]\n            @options[:prefixes]&.each do |prefix, iri|\n              ctx.set_mapping(prefix, iri) if prefix && iri\n            end\n            ctx\n          end\n\n          # Rename BNodes to uniquify them, if necessary\n          result = API.flatten(result, context, **@options.merge(serializer: nil)) if options[:unique_bnodes]\n\n          if (frame = @options[:frame])\n            # Perform framing, if given a frame\n            # log_debug(\"writer\") { \"frame result\"}\n            result = API.frame(result, frame, **@options.merge(serializer: nil))\n          elsif context\n            # Perform compaction, if we have a context\n            # log_debug(\"writer\") { \"compact result\"}\n            result = API.compact(result, context, **@options.merge(serializer: nil))\n          end\n\n          @output.write(@serializer.call(result, **@options))\n        end\n\n        super\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "lib/json/ld.rb",
    "content": "# frozen_string_literal: true\n\n$LOAD_PATH.unshift(File.expand_path('ld', __dir__))\nrequire 'rdf' # @see https://rubygems.org/gems/rdf\nrequire 'multi_json'\nrequire 'set'\n\nmodule JSON\n  ##\n  # **`JSON::LD`** is a JSON-LD extension for RDF.rb.\n  #\n  # @example Requiring the `JSON::LD` module\n  #   require 'json/ld'\n  #\n  # @example Parsing RDF statements from a JSON-LD file\n  #   JSON::LD::Reader.open(\"etc/foaf.jld\") do |reader|\n  #     reader.each_statement do |statement|\n  #       puts statement.inspect\n  #     end\n  #   end\n  #\n  # @see https://rubygems.org/gems/rdf\n  # @see http://www.w3.org/TR/REC-rdf-syntax/\n  #\n  # @author [Gregg Kellogg](http://greggkellogg.net/)\n  module LD\n    require 'json'\n    require 'json/ld/extensions'\n    require 'json/ld/format'\n    require 'json/ld/utils'\n    autoload :API,                'json/ld/api'\n    autoload :ContentNegotiation, 'json/ld/conneg'\n    autoload :Context,            'json/ld/context'\n    autoload :Normalize,          'json/ld/normalize'\n    autoload :Reader,             'json/ld/reader'\n    autoload :Resource,           'json/ld/resource'\n    autoload :StreamingReader,    'json/ld/streaming_reader'\n    autoload :StreamingWriter,    'json/ld/streaming_writer'\n    autoload :VERSION,            'json/ld/version'\n    autoload :Writer,             'json/ld/writer'\n\n    # JSON-LD profiles\n    JSON_LD_NS = 'http://www.w3.org/ns/json-ld#'\n    PROFILES = %w[expanded compacted flattened framed].map { |p| JSON_LD_NS + p }.freeze\n\n    # Default context when compacting without one being specified\n    DEFAULT_CONTEXT = 'http://schema.org'\n\n    # Acceptable MultiJson adapters\n    MUTLI_JSON_ADAPTERS = %i[oj json_gem json_pure ok_json yajl nsjsonseerialization]\n\n    KEYWORDS = Set.new(%w[\n                         @annotation\n                         @base\n                         @container\n                         @context\n                         @default\n                         @direction\n                         @embed\n                         @explicit\n                         @first\n                         @graph\n                         @id\n                         @import\n                         @included\n                         @index\n                         @json\n                         @language\n                         @list\n                         @nest\n                         @none\n                         @omitDefault\n                         @propagate\n                         @protected\n                         @preserve\n                         @requireAll\n                         @reverse\n                         @set\n                         @type\n                         @value\n                         @version\n                         @vocab\n                       ]).freeze\n\n    # Regexp matching an NCName.\n    NC_REGEXP = Regexp.new(\n      %{^\n        (?!\\\\\\\\u0301)             # &#x301; is a non-spacing acute accent.\n                                  # It is legal within an XML Name, but not as the first character.\n        (  [a-zA-Z_]\n         | \\\\\\\\u[0-9a-fA-F]\n        )\n        (  [0-9a-zA-Z_.-]\n         | \\\\\\\\u([0-9a-fA-F]{4})\n        )*\n      $},\n      Regexp::EXTENDED\n    )\n\n    # Datatypes that are expressed in a native form and don't expand or compact\n    NATIVE_DATATYPES = [RDF::XSD.integer.to_s, RDF::XSD.boolean.to_s, RDF::XSD.double.to_s]\n\n    JSON_STATE = JSON::State.new(\n      indent:       '  ',\n      space:        ' ',\n      space_before: '',\n      object_nl:    \"\\n\",\n      array_nl:     \"\\n\"\n    )\n\n    MAX_CONTEXTS_LOADED = 50\n\n    # URI Constants\n    RDF_JSON = RDF::URI(\"#{RDF.to_uri}JSON\")\n    RDF_DIRECTION = RDF::URI(\"#{RDF.to_uri}direction\")\n    RDF_LANGUAGE = RDF::URI(\"#{RDF.to_uri}language\")\n\n    class JsonLdError < StandardError\n      def to_s\n        \"#{self.class.instance_variable_get :@code}: #{super}\"\n      end\n\n      def code\n        self.class.instance_variable_get :@code\n      end\n\n      class CollidingKeywords < JsonLdError; @code = 'colliding keywords'; end\n      class ConflictingIndexes < JsonLdError; @code = 'conflicting indexes'; end\n      class CyclicIRIMapping < JsonLdError; @code = 'cyclic IRI mapping'; end\n      class InvalidAnnotation < JsonLdError; @code = 'invalid annotation'; end\n      class InvalidBaseIRI < JsonLdError; @code = 'invalid base IRI'; end\n      class InvalidContainerMapping < JsonLdError; @code = 'invalid container mapping'; end\n      class InvalidContextEntry < JsonLdError; @code = 'invalid context entry'; end\n      class InvalidContextNullification < JsonLdError; @code = 'invalid context nullification'; end\n      class InvalidDefaultLanguage < JsonLdError; @code = 'invalid default language'; end\n      class InvalidIdValue < JsonLdError; @code = 'invalid @id value'; end\n      class InvalidIndexValue < JsonLdError; @code = 'invalid @index value'; end\n      class InvalidVersionValue < JsonLdError; @code = 'invalid @version value'; end\n      class InvalidImportValue < JsonLdError; @code = 'invalid @import value'; end\n      class InvalidIncludedValue < JsonLdError; @code = 'invalid @included value'; end\n      class InvalidIRIMapping < JsonLdError; @code = 'invalid IRI mapping'; end\n      class InvalidJsonLiteral < JsonLdError; @code = 'invalid JSON literal'; end\n      class InvalidKeywordAlias < JsonLdError; @code = 'invalid keyword alias'; end\n      class InvalidLanguageMapping < JsonLdError; @code = 'invalid language mapping'; end\n      class InvalidLanguageMapValue < JsonLdError; @code = 'invalid language map value'; end\n      class InvalidLanguageTaggedString < JsonLdError; @code = 'invalid language-tagged string'; end\n      class InvalidLanguageTaggedValue < JsonLdError; @code = 'invalid language-tagged value'; end\n      class InvalidLocalContext < JsonLdError; @code = 'invalid local context'; end\n      class InvalidNestValue < JsonLdError; @code = 'invalid @nest value'; end\n      class InvalidPrefixValue < JsonLdError; @code = 'invalid @prefix value'; end\n      class InvalidPropagateValue < JsonLdError; @code = 'invalid @propagate value'; end\n      class InvalidEmbeddedNode < JsonLdError; @code = 'invalid embedded node'; end\n      class InvalidRemoteContext < JsonLdError; @code = 'invalid remote context'; end\n      class InvalidReverseProperty < JsonLdError; @code = 'invalid reverse property'; end\n      class InvalidReversePropertyMap < JsonLdError; @code = 'invalid reverse property map'; end\n      class InvalidReversePropertyValue < JsonLdError; @code = 'invalid reverse property value'; end\n      class InvalidReverseValue < JsonLdError; @code = 'invalid @reverse value'; end\n      class InvalidScopedContext < JsonLdError; @code = 'invalid scoped context'; end\n      class InvalidScriptElement < JsonLdError; @code = 'invalid script element'; end\n      class InvalidSetOrListObject < JsonLdError; @code = 'invalid set or list object'; end\n      class InvalidStreamingKeyOrder < JsonLdError; @code = 'invalid streaming key order' end\n      class InvalidTermDefinition < JsonLdError; @code = 'invalid term definition'; end\n      class InvalidBaseDirection < JsonLdError; @code = 'invalid base direction'; end\n      class InvalidTypedValue < JsonLdError; @code = 'invalid typed value'; end\n      class InvalidTypeMapping < JsonLdError; @code = 'invalid type mapping'; end\n      class InvalidTypeValue < JsonLdError; @code = 'invalid type value'; end\n      class InvalidValueObject < JsonLdError; @code = 'invalid value object'; end\n      class InvalidValueObjectValue < JsonLdError; @code = 'invalid value object value'; end\n      class InvalidVocabMapping < JsonLdError; @code = 'invalid vocab mapping'; end\n      class IRIConfusedWithPrefix < JsonLdError; @code = 'IRI confused with prefix'; end\n      class KeywordRedefinition < JsonLdError; @code = 'keyword redefinition'; end\n      class LoadingDocumentFailed < JsonLdError; @code = 'loading document failed'; end\n      class LoadingRemoteContextFailed < JsonLdError; @code = 'loading remote context failed'; end\n      class ContextOverflow < JsonLdError; @code = 'context overflow'; end\n      class MissingIncludedReferent < JsonLdError; @code = 'missing @included referent'; end\n      class MultipleContextLinkHeaders < JsonLdError; @code = 'multiple context link headers'; end\n      class ProtectedTermRedefinition < JsonLdError; @code = 'protected term redefinition'; end\n      class ProcessingModeConflict < JsonLdError; @code = 'processing mode conflict'; end\n      class InvalidFrame < JsonLdError; @code = 'invalid frame'; end\n      class InvalidEmbedValue < InvalidFrame; @code = 'invalid @embed value'; end\n    end\n  end\nend\n"
  },
  {
    "path": "presentation/API/context.jsonld",
    "content": "{\n  \"@context\": {\n    \"schema\":     \"http://schema.org/\",\n    \"Person\":     \"schema:Person\",\n    \"colleagues\": {\"@id\": \"schema:coleagues\", \"@type\": \"@id\"},\n    \"name\":       \"schema:name\",\n    \"image\":      {\"@id\": \"schema:image\", \"@type\": \"@id\"},\n    \"url\":        {\"@id\": \"schema:url\", \"@type\": \"@id\"}\n  }\n}"
  },
  {
    "path": "presentation/API/doc.jsonld",
    "content": "{\n  \"@context\": \"http://example.com/context.jsonld\",\n  \"@type\": \"Person\",\n  \"image\": \"http://localhost:9393/examples/schema.org/janedoe.jpg\",\n  \"colleagues\": [\n    \"http://www.xyz.edu/students/alicejones.html\",\n    \"http://www.xyz.edu/students/bobsmith.html\"\n  ],\n  \"name\": \"Jane Doe\",\n  \"url\": \"http://www.janedoe.com\"\n}"
  },
  {
    "path": "presentation/combined.jsonld",
    "content": "{\n  \"@context\": \"http://example.org/context.jsonld\",\n  \"@id\": \"http://greggkellogg.net/foaf#me\",\n  \"@type\": \"Person\",\n  \"name\": \"Gregg Kellogg\",\n  \"knows\": {\n    \"@id\": \"http://www.markus-lanthaler.com/\",\n    \"@type\": \"Person\",\n    \"name\": \"Markus Lanthaler\",\n    \"knows\" \"http://greggkellogg.net/foaf#me\"\n  }\n}\n"
  },
  {
    "path": "presentation/dave.jsonld",
    "content": ""
  },
  {
    "path": "presentation/dbpedia/compact-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"dbpedia\": \"http://dbpedia.org/resource/\",\n    \"dbpedia-owl\": \"http://dbpedia.org/ontology/\",\n    \"dbpprop\": \"http://dbpedia.org/property/\",\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"owl\": \"http://www.w3.org/2002/07/owl#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"enwp\": \"http://en.wikipedia.org/wiki/\",\n\n    \"disambiguates\": {\"@id\": \"dbpedia-owl:wikiPageDisambiguates\", \"@type\": \"@id\"},\n    \"externalLink\": {\"@id\": \"dbpedia-owl:wikiPageExternalLink\", \"@type\": \"@id\"},\n    \"redirects\": {\"@id\": \"dbpedia-owl:wikiPageRedirects\", \"@type\": \"@id\"},\n    \"genre\": {\"@id\": \"dbpedia-owl:genre\", \"@type\": \"@id\"},\n    \"dbpprop:genre\": {\"@type\": \"@id\"},\n    \"subject\": {\"@id\": \"dc:subject\", \"@type\": \"@id\"},\n    \"page\": {\"@id\": \"foaf:page\", \"@type\": \"@id\"},\n    \"primaryTopic\": {\"@id\": \"foaf:primaryTopic\", \"@type\": \"@id\"},\n    \"sameAs\": {\"@id\": \"owl:sameAs\", \"@type\": \"@id\"},\n\n    \"abstract_de\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"de\"},\n    \"abstract_en\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"en\"},\n    \"abstract_es\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"es\"},\n    \"abstract_fr\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"fr\"},\n    \"abstract_it\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"it\"},\n    \"abstract_zh\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"zh\"},\n\n    \"comment_de\": {\"@id\": \"rdfs:comment\", \"@language\": \"de\"},\n    \"comment_en\": {\"@id\": \"rdfs:comment\", \"@language\": \"en\"},\n    \"comment_es\": {\"@id\": \"rdfs:comment\", \"@language\": \"es\"},\n    \"comment_fr\": {\"@id\": \"rdfs:comment\", \"@language\": \"fr\"},\n    \"comment_it\": {\"@id\": \"rdfs:comment\", \"@language\": \"it\"},\n    \"comment_zh\": {\"@id\": \"rdfs:comment\", \"@language\": \"zh\"},\n\n    \"label_de\": {\"@id\": \"rdfs:label\", \"@language\": \"de\"},\n    \"label_en\": {\"@id\": \"rdfs:label\", \"@language\": \"en\"},\n    \"label_es\": {\"@id\": \"rdfs:label\", \"@language\": \"es\"},\n    \"label_fr\": {\"@id\": \"rdfs:label\", \"@language\": \"fr\"},\n    \"label_it\": {\"@id\": \"rdfs:label\", \"@language\": \"it\"},\n    \"label_zh\": {\"@id\": \"rdfs:label\", \"@language\": \"zh\"}\n  }\n}\n"
  },
  {
    "path": "presentation/dbpedia/compacted.jsonld",
    "content": "{\n  \"@context\": \"presentation/dbpedia/compact-context.jsonld\",\n  \"@graph\": [\n    {\n      \"@id\": \"dbpedia:DBpedia\",\n      \"dbpprop:genre\": \"dbpedia:Linked_Data\",\n      \"genre\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"http://www4.wiwiss.fu-berlin.de/flickrwrappr/photos/Linked_Data\",\n      \"sameAs\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"dbpedia:Linked_Data\",\n      \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n      \"abstract_de\": \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verfügbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und darüber direkt per HTTP abgerufen werden können und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist. Die miteinander verknüpften Daten ergeben ein weltweites Netz, das auch als „Linked [Open Open] Data Cloud“ oder „Giant Global Graph“ bezeichnet wird. Dort wo der Schwerpunkt weniger auf der freien Nutzbarkeit der Daten wie bei freien Inhalten liegt, ist auch die Bezeichnung Linked Data üblich.\",\n      \"abstract_en\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried. Tim Berners-Lee, director of the World Wide Web Consortium, coined the term in a design note discussing issues around the Semantic Web project.. However, the idea is very old and is closely related to concepts such as the network model (database), citations between scholarly articles, and authority control in libraries.\",\n      \"abstract_es\": \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web semántica. El término \\\"datos vinculados\\\" hace referencia al método con el que se pueden mostrar, intercambiar y conectar datos a través de URIs desreferenciables en la Web.\",\n      \"abstract_fr\": \"Le Web des données (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant à favoriser la publication de données structurées sur le Web, non pas sous la forme de silos de données isolés les uns des autres, mais en les reliant entre elles pour constituer un réseau global d'informations. Il s'appuie sur les standards du Web, tels que HTTP et URI - mais plutôt qu'utiliser ces standards uniquement pour faciliter la navigation par les être humains, le Web des données les étend pour partager l'information également entre machines. Cela permet d'interroger automatiquement les données, quels que soient leurs lieux de stockage, et sans avoir à les dupliquer. Tim Berners-Lee, directeur du W3C, a inventé et défini le terme Linked Data et son synonyme Web of Data au sein d'un ouvrage portant sur l'avenir du Web Sémantique. En France, le terme Web des données est de plus en plus utilisé par la communauté des professionnels du domaine.\",\n      \"abstract_it\": \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati è usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\",\n      \"abstract_zh\": \"鍵連資料是正在快速發展的語義網的一系列的活動，它描述了一套在全球資訊網上發佈、分享、及連結資料的方法。主要以可參照的URI作為最基本的要素、以RDF作為描述連結的語言。\",\n      \"comment_de\": \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verfügbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und darüber direkt per HTTP abgerufen werden können und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist.\",\n      \"comment_en\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried.\",\n      \"comment_es\": \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web semántica. El término \\\"datos vinculados\\\" hace referencia al método con el que se pueden mostrar, intercambiar y conectar datos a través de URIs desreferenciables en la Web.\",\n      \"comment_fr\": \"Le Web des données (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant à favoriser la publication de données structurées sur le Web, non pas sous la forme de silos de données isolés les uns des autres, mais en les reliant entre elles pour constituer un réseau global d'informations.\",\n      \"comment_it\": \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati è usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\",\n      \"comment_zh\": \"鍵連資料是正在快速發展的語義網的一系列的活動，它描述了一套在全球資訊網上發佈、分享、及連結資料的方法。主要以可參照的URI作為最基本的要素、以RDF作為描述連結的語言。\",\n      \"externalLink\": [\n        \"http://revyu.com/\",\n        \"http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html\",\n        \"http://dataviewer.zitgist.com/\",\n        \"http://tomheath.com/papers/bizer-heath-berners-lee-ijswis-linked-data.pdf\",\n        \"http://www.tecweb.inf.puc-rio.br/explorator/demo\",\n        \"http://knoesis.wright.edu/library/publications/linkedai2010_submission_13.pdf\",\n        \"http://relfinder.visualdataweb.org/\",\n        \"http://linkeddata.uriburner.com/ode\",\n        \"http://www.linkeddataplanet.com/\",\n        \"http://code.google.com/p/ontology-browser/\",\n        \"http://tomheath.com/slides/2008-02-amsterdam-linking-open-data-project.pdf\",\n        \"http://knoesis.wright.edu/library/publications/iswc10_paper218.pdf\",\n        \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData#dbpedia-lod-cloud\",\n        \"http://virtuoso.openlinksw.com/presentations/Creating_Deploying_Exploiting_Linked_Data2/Creating_Deploying_Exploiting_Linked_Data2_TimBL_v3.html\",\n        \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData\",\n        \"http://events.linkeddata.org/ldow2011/\",\n        \"http://www.sensorpedia.com\",\n        \"http://ws.nju.edu.cn/explorer/myview/\",\n        \"http://ws.nju.edu.cn/explorer/\",\n        \"http://www.openpsi.org/\",\n        \"http://sites.wiwiss.fu-berlin.de/suhl/bizer/pub/LinkingOpenData.pdf\",\n        \"http://events.linkeddata.org/ldow2008/\",\n        \"http://nomisma.org/\",\n        \"http://events.linkeddata.org/ldow2009/\",\n        \"http://www.viaf.org\",\n        \"http://linkeddatabook.com/book\",\n        \"http://events.linkeddata.org/ldow2010/\",\n        \"http://demo.openlinksw.com/Demo/customers/CustomerID/ALFKI%23this\",\n        \"http://www.plasticbag.org/archives/2006/02/my_future_of_web_apps_slides/\",\n        \"http://www.w3.org/2008/Talks/0617-lod-tbl/#(1)\",\n        \"http://www.scientificamerican.com/article.cfm?id=berners-lee-linked-data\",\n        \"http://www.linkeddataplanet.com\",\n        \"http://linkeddata.org\",\n        \"http://sig.ma\",\n        \"http://www4.wiwiss.fu-berlin.de/bizer/pub/lod-datasets_2009-07-14.html\",\n        \"http://virtuoso.openlinksw.com/white-papers/\",\n        \"http://isweb.uni-koblenz.de/Research/lena/\",\n        \"http://people.aifb.kit.edu/aha/2010/cold/\",\n        \"http://www.w3.org/2008/Talks/WWW2008-W3CTrack-LOD.pdf\",\n        \"http://www.w3.org/wiki/LinkedData\",\n        \"http://virtuoso.openlinksw.com/presentations/Virtuoso_Deploying_Linked_Data/Virtuoso_Deploying_Linked_Data.html\",\n        \"http://umbel.org/sites/umbel.org/lod/lod_constellation.html\",\n        \"http://latc-project.eu/\",\n        \"http://riese.joanneum.at\",\n        \"http://visinav.deri.org/\",\n        \"http://www.w3.org/2005/ajar/tab\",\n        \"http://www.sheaflight.com/browser/\",\n        \"http://www4.wiwiss.fu-berlin.de/dblp/\",\n        \"http://www.razorbase.com\",\n        \"http://www.w3.org/DesignIssues/LinkedData.html\",\n        \"http://www.w3.org/DesignIssues/LinkedData\",\n        \"http://www.wandora.org\",\n        \"http://www4.wiwiss.fu-berlin.de/bizer/ng4j/disco/\",\n        \"http://planet-data.eu/about\",\n        \"http://www.webknox.com/blog/2010/05/linked-open-data-on-the-web-visualization/\",\n        \"http://www.slideshare.net/knoesis/how-to-make-linked-data-more-than-data\",\n        \"http://www.slideshare.net/mediasemanticweb/linked-data-michael-hausenblas-2009-03-05\",\n        \"http://www2008.org/papers/pdf/p1265-bizer.pdf\"\n      ],\n      \"label_de\": \"Linked Open Data\",\n      \"label_en\": \"Linked Data\",\n      \"label_es\": \"Datos vinculados\",\n      \"label_fr\": \"Web des données\",\n      \"label_it\": \"Dati collegati\",\n      \"label_zh\": \"鍵連資料\",\n      \"page\": \"enwp:Linked_Data\",\n      \"sameAs\": \"http://rdf.freebase.com/ns/m/02r2kb1\",\n      \"subject\": [\n        \"dbpedia:Category:World_Wide_Web\",\n        \"dbpedia:Category:Buzzwords\",\n        \"dbpedia:Category:Semantic_Web\"\n      ]\n    },\n    {\n      \"@id\": \"dbpedia:LinkedData\",\n      \"redirects\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"dbpedia:Linked_data\",\n      \"redirects\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"dbpedia:Linking_Open_Data\",\n      \"redirects\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"enwp:Linked_Data\",\n      \"primaryTopic\": \"dbpedia:Linked_Data\"\n    },\n    {\n      \"@id\": \"http://mpii.de/yago/resource/Linked_Data\",\n      \"sameAs\": \"dbpedia:Linked_Data\"\n    }\n  ]\n}\n"
  },
  {
    "path": "presentation/dbpedia/expanded-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"http://dbpedia.org/ontology/wikiPageDisambiguates\": {\"@type\": \"@id\"},\n    \"http://dbpedia.org/ontology/wikiPageExternalLink\": {\"@type\": \"@id\"},\n    \"http://dbpedia.org/ontology/wikiPageRedirects\": {\"@type\": \"@id\"},\n    \"http://dbpedia.org/ontology/genre\": {\"@type\": \"@id\"},\n    \"http://dbpedia.org/property/genre\": {\"@type\": \"@id\"},\n    \"http://www.w3.org/2002/07/owl#sameAs\": {\"@type\": \"@id\"},\n    \"http://purl.org/dc/terms/subject\": {\"@type\": \"@id\"},\n    \"http://xmlns.com/foaf/0.1/page\": {\"@type\": \"@id\"},\n    \"http://xmlns.com/foaf/0.1/primaryTopic\": {\"@type\": \"@id\"}\n  }\n}\n"
  },
  {
    "path": "presentation/dbpedia/expanded.jsonld",
    "content": "[\n  {\n    \"@id\": \"http://dbpedia.org/resource/DBpedia\",\n    \"http://dbpedia.org/ontology/genre\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ],\n    \"http://dbpedia.org/property/genre\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://www4.wiwiss.fu-berlin.de/flickrwrappr/photos/Linked_Data\",\n    \"http://www.w3.org/2002/07/owl#sameAs\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://dbpedia.org/resource/Linked_Data\",\n    \"@type\": [\n      \"http://dbpedia.org/class/yago/Buzzwords\"\n    ],\n    \"http://www.w3.org/2002/07/owl#sameAs\": [\n      {\n        \"@id\": \"http://rdf.freebase.com/ns/m/02r2kb1\"\n      }\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": [\n      {\n        \"@value\": \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verfügbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und darüber direkt per HTTP abgerufen werden können und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist.\",\n        \"@language\": \"de\"\n      },\n      {\n        \"@value\": \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati è usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\",\n        \"@language\": \"it\"\n      },\n      {\n        \"@value\": \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web semántica. El término \\\"datos vinculados\\\" hace referencia al método con el que se pueden mostrar, intercambiar y conectar datos a través de URIs desreferenciables en la Web.\",\n        \"@language\": \"es\"\n      },\n      {\n        \"@value\": \"Le Web des données (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant à favoriser la publication de données structurées sur le Web, non pas sous la forme de silos de données isolés les uns des autres, mais en les reliant entre elles pour constituer un réseau global d'informations.\",\n        \"@language\": \"fr\"\n      },\n      {\n        \"@value\": \"鍵連資料是正在快速發展的語義網的一系列的活動，它描述了一套在全球資訊網上發佈、分享、及連結資料的方法。主要以可參照的URI作為最基本的要素、以RDF作為描述連結的語言。\",\n        \"@language\": \"zh\"\n      },\n      {\n        \"@value\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried.\",\n        \"@language\": \"en\"\n      }\n    ],\n    \"http://www.w3.org/2000/01/rdf-schema#label\": [\n      {\n        \"@value\": \"Linked Data\",\n        \"@language\": \"en\"\n      },\n      {\n        \"@value\": \"Dati collegati\",\n        \"@language\": \"it\"\n      },\n      {\n        \"@value\": \"Datos vinculados\",\n        \"@language\": \"es\"\n      },\n      {\n        \"@value\": \"Web des données\",\n        \"@language\": \"fr\"\n      },\n      {\n        \"@value\": \"鍵連資料\",\n        \"@language\": \"zh\"\n      },\n      {\n        \"@value\": \"Linked Open Data\",\n        \"@language\": \"de\"\n      }\n    ],\n    \"http://dbpedia.org/ontology/abstract\": [\n      {\n        \"@value\": \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verfügbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und darüber direkt per HTTP abgerufen werden können und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist. Die miteinander verknüpften Daten ergeben ein weltweites Netz, das auch als „Linked [Open Open] Data Cloud“ oder „Giant Global Graph“ bezeichnet wird. Dort wo der Schwerpunkt weniger auf der freien Nutzbarkeit der Daten wie bei freien Inhalten liegt, ist auch die Bezeichnung Linked Data üblich.\",\n        \"@language\": \"de\"\n      },\n      {\n        \"@value\": \"鍵連資料是正在快速發展的語義網的一系列的活動，它描述了一套在全球資訊網上發佈、分享、及連結資料的方法。主要以可參照的URI作為最基本的要素、以RDF作為描述連結的語言。\",\n        \"@language\": \"zh\"\n      },\n      {\n        \"@value\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried. Tim Berners-Lee, director of the World Wide Web Consortium, coined the term in a design note discussing issues around the Semantic Web project.. However, the idea is very old and is closely related to concepts such as the network model (database), citations between scholarly articles, and authority control in libraries.\",\n        \"@language\": \"en\"\n      },\n      {\n        \"@value\": \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati è usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\",\n        \"@language\": \"it\"\n      },\n      {\n        \"@value\": \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web semántica. El término \\\"datos vinculados\\\" hace referencia al método con el que se pueden mostrar, intercambiar y conectar datos a través de URIs desreferenciables en la Web.\",\n        \"@language\": \"es\"\n      },\n      {\n        \"@value\": \"Le Web des données (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant à favoriser la publication de données structurées sur le Web, non pas sous la forme de silos de données isolés les uns des autres, mais en les reliant entre elles pour constituer un réseau global d'informations. Il s'appuie sur les standards du Web, tels que HTTP et URI - mais plutôt qu'utiliser ces standards uniquement pour faciliter la navigation par les être humains, le Web des données les étend pour partager l'information également entre machines. Cela permet d'interroger automatiquement les données, quels que soient leurs lieux de stockage, et sans avoir à les dupliquer. Tim Berners-Lee, directeur du W3C, a inventé et défini le terme Linked Data et son synonyme Web of Data au sein d'un ouvrage portant sur l'avenir du Web Sémantique. En France, le terme Web des données est de plus en plus utilisé par la communauté des professionnels du domaine.\",\n        \"@language\": \"fr\"\n      }\n    ],\n    \"http://dbpedia.org/ontology/wikiPageExternalLink\": [\n      {\n        \"@id\": \"http://revyu.com/\"\n      },\n      {\n        \"@id\": \"http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html\"\n      },\n      {\n        \"@id\": \"http://dataviewer.zitgist.com/\"\n      },\n      {\n        \"@id\": \"http://tomheath.com/papers/bizer-heath-berners-lee-ijswis-linked-data.pdf\"\n      },\n      {\n        \"@id\": \"http://www.tecweb.inf.puc-rio.br/explorator/demo\"\n      },\n      {\n        \"@id\": \"http://knoesis.wright.edu/library/publications/linkedai2010_submission_13.pdf\"\n      },\n      {\n        \"@id\": \"http://relfinder.visualdataweb.org/\"\n      },\n      {\n        \"@id\": \"http://linkeddata.uriburner.com/ode\"\n      },\n      {\n        \"@id\": \"http://www.linkeddataplanet.com/\"\n      },\n      {\n        \"@id\": \"http://code.google.com/p/ontology-browser/\"\n      },\n      {\n        \"@id\": \"http://tomheath.com/slides/2008-02-amsterdam-linking-open-data-project.pdf\"\n      },\n      {\n        \"@id\": \"http://knoesis.wright.edu/library/publications/iswc10_paper218.pdf\"\n      },\n      {\n        \"@id\": \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData#dbpedia-lod-cloud\"\n      },\n      {\n        \"@id\": \"http://virtuoso.openlinksw.com/presentations/Creating_Deploying_Exploiting_Linked_Data2/Creating_Deploying_Exploiting_Linked_Data2_TimBL_v3.html\"\n      },\n      {\n        \"@id\": \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData\"\n      },\n      {\n        \"@id\": \"http://events.linkeddata.org/ldow2011/\"\n      },\n      {\n        \"@id\": \"http://www.sensorpedia.com\"\n      },\n      {\n        \"@id\": \"http://ws.nju.edu.cn/explorer/myview/\"\n      },\n      {\n        \"@id\": \"http://ws.nju.edu.cn/explorer/\"\n      },\n      {\n        \"@id\": \"http://www.openpsi.org/\"\n      },\n      {\n        \"@id\": \"http://sites.wiwiss.fu-berlin.de/suhl/bizer/pub/LinkingOpenData.pdf\"\n      },\n      {\n        \"@id\": \"http://events.linkeddata.org/ldow2008/\"\n      },\n      {\n        \"@id\": \"http://nomisma.org/\"\n      },\n      {\n        \"@id\": \"http://events.linkeddata.org/ldow2009/\"\n      },\n      {\n        \"@id\": \"http://www.viaf.org\"\n      },\n      {\n        \"@id\": \"http://linkeddatabook.com/book\"\n      },\n      {\n        \"@id\": \"http://events.linkeddata.org/ldow2010/\"\n      },\n      {\n        \"@id\": \"http://demo.openlinksw.com/Demo/customers/CustomerID/ALFKI%23this\"\n      },\n      {\n        \"@id\": \"http://www.plasticbag.org/archives/2006/02/my_future_of_web_apps_slides/\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/2008/Talks/0617-lod-tbl/#(1)\"\n      },\n      {\n        \"@id\": \"http://www.scientificamerican.com/article.cfm?id=berners-lee-linked-data\"\n      },\n      {\n        \"@id\": \"http://www.linkeddataplanet.com\"\n      },\n      {\n        \"@id\": \"http://linkeddata.org\"\n      },\n      {\n        \"@id\": \"http://sig.ma\"\n      },\n      {\n        \"@id\": \"http://www4.wiwiss.fu-berlin.de/bizer/pub/lod-datasets_2009-07-14.html\"\n      },\n      {\n        \"@id\": \"http://virtuoso.openlinksw.com/white-papers/\"\n      },\n      {\n        \"@id\": \"http://isweb.uni-koblenz.de/Research/lena/\"\n      },\n      {\n        \"@id\": \"http://people.aifb.kit.edu/aha/2010/cold/\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/2008/Talks/WWW2008-W3CTrack-LOD.pdf\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/wiki/LinkedData\"\n      },\n      {\n        \"@id\": \"http://virtuoso.openlinksw.com/presentations/Virtuoso_Deploying_Linked_Data/Virtuoso_Deploying_Linked_Data.html\"\n      },\n      {\n        \"@id\": \"http://umbel.org/sites/umbel.org/lod/lod_constellation.html\"\n      },\n      {\n        \"@id\": \"http://latc-project.eu/\"\n      },\n      {\n        \"@id\": \"http://riese.joanneum.at\"\n      },\n      {\n        \"@id\": \"http://visinav.deri.org/\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/2005/ajar/tab\"\n      },\n      {\n        \"@id\": \"http://www.sheaflight.com/browser/\"\n      },\n      {\n        \"@id\": \"http://www4.wiwiss.fu-berlin.de/dblp/\"\n      },\n      {\n        \"@id\": \"http://www.razorbase.com\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/DesignIssues/LinkedData.html\"\n      },\n      {\n        \"@id\": \"http://www.w3.org/DesignIssues/LinkedData\"\n      },\n      {\n        \"@id\": \"http://www.wandora.org\"\n      },\n      {\n        \"@id\": \"http://www4.wiwiss.fu-berlin.de/bizer/ng4j/disco/\"\n      },\n      {\n        \"@id\": \"http://planet-data.eu/about\"\n      },\n      {\n        \"@id\": \"http://www.webknox.com/blog/2010/05/linked-open-data-on-the-web-visualization/\"\n      },\n      {\n        \"@id\": \"http://www.slideshare.net/knoesis/how-to-make-linked-data-more-than-data\"\n      },\n      {\n        \"@id\": \"http://www.slideshare.net/mediasemanticweb/linked-data-michael-hausenblas-2009-03-05\"\n      },\n      {\n        \"@id\": \"http://www2008.org/papers/pdf/p1265-bizer.pdf\"\n      }\n    ],\n    \"http://purl.org/dc/terms/subject\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Category:World_Wide_Web\"\n      },\n      {\n        \"@id\": \"http://dbpedia.org/resource/Category:Buzzwords\"\n      },\n      {\n        \"@id\": \"http://dbpedia.org/resource/Category:Semantic_Web\"\n      }\n    ],\n    \"http://xmlns.com/foaf/0.1/page\": [\n      {\n        \"@id\": \"http://en.wikipedia.org/wiki/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://dbpedia.org/resource/LinkedData\",\n    \"http://dbpedia.org/ontology/wikiPageRedirects\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://dbpedia.org/resource/Linked_data\",\n    \"http://dbpedia.org/ontology/wikiPageRedirects\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://dbpedia.org/resource/Linking_Open_Data\",\n    \"http://dbpedia.org/ontology/wikiPageRedirects\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://en.wikipedia.org/wiki/Linked_Data\",\n    \"http://xmlns.com/foaf/0.1/primaryTopic\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  },\n  {\n    \"@id\": \"http://mpii.de/yago/resource/Linked_Data\",\n    \"http://www.w3.org/2002/07/owl#sameAs\": [\n      {\n        \"@id\": \"http://dbpedia.org/resource/Linked_Data\"\n      }\n    ]\n  }\n]\n"
  },
  {
    "path": "presentation/dbpedia/frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"dbpedia\": \"http://dbpedia.org/resource/\",\n    \"dbpedia-owl\": \"http://dbpedia.org/ontology/\",\n    \"dbpprop\": \"http://dbpedia.org/property/\",\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"owl\": \"http://www.w3.org/2002/07/owl#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"enwp\": \"http://en.wikipedia.org/wiki/\",\n\n    \"disambiguates\": {\"@id\": \"dbpedia-owl:wikiPageDisambiguates\", \"@type\": \"@id\"},\n    \"externalLink\": {\"@id\": \"dbpedia-owl:wikiPageExternalLink\", \"@type\": \"@id\"},\n    \"redirects\": {\"@id\": \"dbpedia-owl:wikiPageRedirects\", \"@type\": \"@id\"},\n    \"genre\": {\"@id\": \"dbpedia-owl:genre\", \"@type\": \"@id\"},\n    \"subject\": {\"@id\": \"dc:subject\", \"@type\": \"@id\"},\n    \"page\": {\"@id\": \"foaf:page\", \"@type\": \"@id\"},\n    \"primaryTopic\": {\"@id\": \"foaf:primaryTopic\", \"@type\": \"@id\"},\n    \"sameAs\": {\"@id\": \"owl:sameAs\", \"@type\": \"@id\"},\n\n    \"abstract\": {\"@id\": \"dbpedia-owl:abstract\", \"@language\": \"en\"},\n    \"http://dbpedia.org/ontology/abstract\": null,\n\n    \"comment\": {\"@id\": \"rdfs:comment\", \"@language\": \"en\"},\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": null,\n\n    \"label\": {\"@id\": \"rdfs:label\", \"@language\": \"en\"},\n    \"http://www.w3.org/2000/01/rdf-schema#label\": null\n  },\n  \"primaryTopic\": {\n    \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n    \"@explicit\": true,\n    \"abstract\": {},\n    \"comment\": {},\n    \"label\": {},\n    \"genre\": {},\n    \"externalLink\": {},\n    \"page\": {},\n    \"subject\": {},\n    \"sameAs\": {}\n  }\n}\n"
  },
  {
    "path": "presentation/dbpedia/framed.jsonld",
    "content": "{\n  \"@context\": {\n    \"dbpedia\": \"http://dbpedia.org/resource/\",\n    \"dbpedia-owl\": \"http://dbpedia.org/ontology/\",\n    \"dbpprop\": \"http://dbpedia.org/property/\",\n    \"dc\": \"http://purl.org/dc/terms/\",\n    \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n    \"owl\": \"http://www.w3.org/2002/07/owl#\",\n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n    \"enwp\": \"http://en.wikipedia.org/wiki/\",\n    \"disambiguates\": {\n      \"@id\": \"dbpedia-owl:wikiPageDisambiguates\",\n      \"@type\": \"@id\"\n    },\n    \"externalLink\": {\n      \"@id\": \"dbpedia-owl:wikiPageExternalLink\",\n      \"@type\": \"@id\"\n    },\n    \"redirects\": {\n      \"@id\": \"dbpedia-owl:wikiPageRedirects\",\n      \"@type\": \"@id\"\n    },\n    \"genre\": {\n      \"@id\": \"dbpedia-owl:genre\",\n      \"@type\": \"@id\"\n    },\n    \"subject\": {\n      \"@id\": \"dc:subject\",\n      \"@type\": \"@id\"\n    },\n    \"page\": {\n      \"@id\": \"foaf:page\",\n      \"@type\": \"@id\"\n    },\n    \"primaryTopic\": {\n      \"@id\": \"foaf:primaryTopic\",\n      \"@type\": \"@id\"\n    },\n    \"sameAs\": {\n      \"@id\": \"owl:sameAs\",\n      \"@type\": \"@id\"\n    },\n    \"abstract\": {\n      \"@id\": \"dbpedia-owl:abstract\",\n      \"@language\": \"en\"\n    },\n    \"http://dbpedia.org/ontology/abstract\": null,\n    \"comment\": {\n      \"@id\": \"rdfs:comment\",\n      \"@language\": \"en\"\n    },\n    \"http://www.w3.org/2000/01/rdf-schema#comment\": null,\n    \"label\": {\n      \"@id\": \"rdfs:label\",\n      \"@language\": \"en\"\n    },\n    \"http://www.w3.org/2000/01/rdf-schema#label\": null\n  },\n  \"@graph\": [\n    {\n      \"@id\": \"enwp:Linked_Data\",\n      \"primaryTopic\": {\n        \"@id\": \"dbpedia:Linked_Data\",\n        \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n        \"abstract\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried. Tim Berners-Lee, director of the World Wide Web Consortium, coined the term in a design note discussing issues around the Semantic Web project.. However, the idea is very old and is closely related to concepts such as the network model (database), citations between scholarly articles, and authority control in libraries.\",\n        \"comment\": \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried.\",\n        \"externalLink\": [\n          \"http://revyu.com/\",\n          \"http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html\",\n          \"http://dataviewer.zitgist.com/\",\n          \"http://tomheath.com/papers/bizer-heath-berners-lee-ijswis-linked-data.pdf\",\n          \"http://www.tecweb.inf.puc-rio.br/explorator/demo\",\n          \"http://knoesis.wright.edu/library/publications/linkedai2010_submission_13.pdf\",\n          \"http://relfinder.visualdataweb.org/\",\n          \"http://linkeddata.uriburner.com/ode\",\n          \"http://www.linkeddataplanet.com/\",\n          \"http://code.google.com/p/ontology-browser/\",\n          \"http://tomheath.com/slides/2008-02-amsterdam-linking-open-data-project.pdf\",\n          \"http://knoesis.wright.edu/library/publications/iswc10_paper218.pdf\",\n          \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData#dbpedia-lod-cloud\",\n          \"http://virtuoso.openlinksw.com/presentations/Creating_Deploying_Exploiting_Linked_Data2/Creating_Deploying_Exploiting_Linked_Data2_TimBL_v3.html\",\n          \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData\",\n          \"http://events.linkeddata.org/ldow2011/\",\n          \"http://www.sensorpedia.com\",\n          \"http://ws.nju.edu.cn/explorer/myview/\",\n          \"http://ws.nju.edu.cn/explorer/\",\n          \"http://www.openpsi.org/\",\n          \"http://sites.wiwiss.fu-berlin.de/suhl/bizer/pub/LinkingOpenData.pdf\",\n          \"http://events.linkeddata.org/ldow2008/\",\n          \"http://nomisma.org/\",\n          \"http://events.linkeddata.org/ldow2009/\",\n          \"http://www.viaf.org\",\n          \"http://linkeddatabook.com/book\",\n          \"http://events.linkeddata.org/ldow2010/\",\n          \"http://demo.openlinksw.com/Demo/customers/CustomerID/ALFKI%23this\",\n          \"http://www.plasticbag.org/archives/2006/02/my_future_of_web_apps_slides/\",\n          \"http://www.w3.org/2008/Talks/0617-lod-tbl/#(1)\",\n          \"http://www.scientificamerican.com/article.cfm?id=berners-lee-linked-data\",\n          \"http://www.linkeddataplanet.com\",\n          \"http://linkeddata.org\",\n          \"http://sig.ma\",\n          \"http://www4.wiwiss.fu-berlin.de/bizer/pub/lod-datasets_2009-07-14.html\",\n          \"http://virtuoso.openlinksw.com/white-papers/\",\n          \"http://isweb.uni-koblenz.de/Research/lena/\",\n          \"http://people.aifb.kit.edu/aha/2010/cold/\",\n          \"http://www.w3.org/2008/Talks/WWW2008-W3CTrack-LOD.pdf\",\n          \"http://www.w3.org/wiki/LinkedData\",\n          \"http://virtuoso.openlinksw.com/presentations/Virtuoso_Deploying_Linked_Data/Virtuoso_Deploying_Linked_Data.html\",\n          \"http://umbel.org/sites/umbel.org/lod/lod_constellation.html\",\n          \"http://latc-project.eu/\",\n          \"http://riese.joanneum.at\",\n          \"http://visinav.deri.org/\",\n          \"http://www.w3.org/2005/ajar/tab\",\n          \"http://www.sheaflight.com/browser/\",\n          \"http://www4.wiwiss.fu-berlin.de/dblp/\",\n          \"http://www.razorbase.com\",\n          \"http://www.w3.org/DesignIssues/LinkedData.html\",\n          \"http://www.w3.org/DesignIssues/LinkedData\",\n          \"http://www.wandora.org\",\n          \"http://www4.wiwiss.fu-berlin.de/bizer/ng4j/disco/\",\n          \"http://planet-data.eu/about\",\n          \"http://www.webknox.com/blog/2010/05/linked-open-data-on-the-web-visualization/\",\n          \"http://www.slideshare.net/knoesis/how-to-make-linked-data-more-than-data\",\n          \"http://www.slideshare.net/mediasemanticweb/linked-data-michael-hausenblas-2009-03-05\",\n          \"http://www2008.org/papers/pdf/p1265-bizer.pdf\"\n        ],\n        \"genre\": null,\n        \"label\": \"Linked Data\",\n        \"page\": \"enwp:Linked_Data\",\n        \"sameAs\": \"http://rdf.freebase.com/ns/m/02r2kb1\",\n        \"subject\": [\n          \"dbpedia:Category:World_Wide_Web\",\n          \"dbpedia:Category:Buzzwords\",\n          \"dbpedia:Category:Semantic_Web\"\n        ]\n      }\n    }\n  ]\n}\n"
  },
  {
    "path": "presentation/dbpedia/orig.jsonld",
    "content": "{ \"@graph\": [\n    { \"@id\": \"http://dbpedia.org/resource/DBpedia\",\n      \"http://dbpedia.org/ontology/genre\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] ,\n      \"http://dbpedia.org/property/genre\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://www4.wiwiss.fu-berlin.de/flickrwrappr/photos/Linked_Data\",\n      \"http://www.w3.org/2002/07/owl#sameAs\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://dbpedia.org/resource/Linked_Data\",\n      \"@type\" : [ \"http://dbpedia.org/class/yago/Buzzwords\" ] ,\n      \"http://www.w3.org/2002/07/owl#sameAs\" : [ \"http://rdf.freebase.com/ns/m/02r2kb1\" ] ,\n      \"http://www.w3.org/2000/01/rdf-schema#comment\" : [ { \"@value\" : \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verf\\u00FCgbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und dar\\u00FCber direkt per HTTP abgerufen werden k\\u00F6nnen und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist.\" , \"@language\" : \"de\" } ,\n        { \"@value\" : \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati \\u00E8 usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\" , \"@language\" : \"it\" } ,\n        { \"@value\" : \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web sem\\u00E1ntica. El t\\u00E9rmino \\\"datos vinculados\\\" hace referencia al m\\u00E9todo con el que se pueden mostrar, intercambiar y conectar datos a trav\\u00E9s de URIs desreferenciables en la Web.\" , \"@language\" : \"es\" } ,\n        { \"@value\" : \"Le Web des donn\\u00E9es (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant \\u00E0 favoriser la publication de donn\\u00E9es structur\\u00E9es sur le Web, non pas sous la forme de silos de donn\\u00E9es isol\\u00E9s les uns des autres, mais en les reliant entre elles pour constituer un r\\u00E9seau global d'informations.\" , \"@language\" : \"fr\" } ,\n        { \"@value\" : \"\\u9375\\u9023\\u8CC7\\u6599\\u662F\\u6B63\\u5728\\u5FEB\\u901F\\u767C\\u5C55\\u7684\\u8A9E\\u7FA9\\u7DB2\\u7684\\u4E00\\u7CFB\\u5217\\u7684\\u6D3B\\u52D5\\uFF0C\\u5B83\\u63CF\\u8FF0\\u4E86\\u4E00\\u5957\\u5728\\u5168\\u7403\\u8CC7\\u8A0A\\u7DB2\\u4E0A\\u767C\\u4F48\\u3001\\u5206\\u4EAB\\u3001\\u53CA\\u9023\\u7D50\\u8CC7\\u6599\\u7684\\u65B9\\u6CD5\\u3002\\u4E3B\\u8981\\u4EE5\\u53EF\\u53C3\\u7167\\u7684URI\\u4F5C\\u70BA\\u6700\\u57FA\\u672C\\u7684\\u8981\\u7D20\\u3001\\u4EE5RDF\\u4F5C\\u70BA\\u63CF\\u8FF0\\u9023\\u7D50\\u7684\\u8A9E\\u8A00\\u3002\" , \"@language\" : \"zh\" } ,\n        { \"@value\" : \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried.\" , \"@language\" : \"en\" } ] ,\n      \"http://www.w3.org/2000/01/rdf-schema#label\" : [ { \"@value\" : \"Linked Data\" , \"@language\" : \"en\" } ,\n        { \"@value\" : \"Dati collegati\" , \"@language\" : \"it\" } ,\n        { \"@value\" : \"Datos vinculados\" , \"@language\" : \"es\" } ,\n        { \"@value\" : \"Web des donn\\u00E9es\" , \"@language\" : \"fr\" } ,\n        { \"@value\" : \"\\u9375\\u9023\\u8CC7\\u6599\" , \"@language\" : \"zh\" } ,\n        { \"@value\" : \"Linked Open Data\" , \"@language\" : \"de\" } ] ,\n      \"http://dbpedia.org/ontology/abstract\" : [ { \"@value\" : \"Linked Open Data (LOD) bezeichnet im World Wide Web frei verf\\u00FCgbare Daten, die per Uniform Resource Identifier (URI) identifiziert sind und dar\\u00FCber direkt per HTTP abgerufen werden k\\u00F6nnen und ebenfalls per URI auf andere Daten verweisen. Idealerweise werden zur Kodierung und Verlinkung der Daten das Resource Description Framework (RDF) und darauf aufbauende Standards wie SPARQL und die Web Ontology Language (OWL) verwendet, so dass Linked Open Data gleichzeitig Teil des Semantic Web ist. Die miteinander verkn\\u00FCpften Daten ergeben ein weltweites Netz, das auch als \\u201ELinked [Open Open] Data Cloud\\u201C oder \\u201EGiant Global Graph\\u201C bezeichnet wird. Dort wo der Schwerpunkt weniger auf der freien Nutzbarkeit der Daten wie bei freien Inhalten liegt, ist auch die Bezeichnung Linked Data \\u00FCblich.\" , \"@language\" : \"de\" } ,\n        { \"@value\" : \"\\u9375\\u9023\\u8CC7\\u6599\\u662F\\u6B63\\u5728\\u5FEB\\u901F\\u767C\\u5C55\\u7684\\u8A9E\\u7FA9\\u7DB2\\u7684\\u4E00\\u7CFB\\u5217\\u7684\\u6D3B\\u52D5\\uFF0C\\u5B83\\u63CF\\u8FF0\\u4E86\\u4E00\\u5957\\u5728\\u5168\\u7403\\u8CC7\\u8A0A\\u7DB2\\u4E0A\\u767C\\u4F48\\u3001\\u5206\\u4EAB\\u3001\\u53CA\\u9023\\u7D50\\u8CC7\\u6599\\u7684\\u65B9\\u6CD5\\u3002\\u4E3B\\u8981\\u4EE5\\u53EF\\u53C3\\u7167\\u7684URI\\u4F5C\\u70BA\\u6700\\u57FA\\u672C\\u7684\\u8981\\u7D20\\u3001\\u4EE5RDF\\u4F5C\\u70BA\\u63CF\\u8FF0\\u9023\\u7D50\\u7684\\u8A9E\\u8A00\\u3002\" , \"@language\" : \"zh\" } ,\n        { \"@value\" : \"In computing, linked Data describes a method of publishing structured data so that it can be interlinked and become more useful. It builds upon standard Web technologies such as HTTP and URIs, but rather than using them to serve web pages for human readers, it extends them to share information in a way that can be read automatically by computers. This enables data from different sources to be connected and queried. Tim Berners-Lee, director of the World Wide Web Consortium, coined the term in a design note discussing issues around the Semantic Web project.. However, the idea is very old and is closely related to concepts such as the network model (database), citations between scholarly articles, and authority control in libraries.\" , \"@language\" : \"en\" } ,\n        { \"@value\" : \"I dati collegati (linked data in inglese) sono un aspetto del web semantico. Il termine dati collegati \\u00E8 usato per descrivere un metodo di esporre, condividere e connettere dati attraverso URI deferenziabili.\" , \"@language\" : \"it\" } ,\n        { \"@value\" : \"La propuesta de datos vinculados (linked data) surge dentro de marco general de la Web sem\\u00E1ntica. El t\\u00E9rmino \\\"datos vinculados\\\" hace referencia al m\\u00E9todo con el que se pueden mostrar, intercambiar y conectar datos a trav\\u00E9s de URIs desreferenciables en la Web.\" , \"@language\" : \"es\" } ,\n        { \"@value\" : \"Le Web des donn\\u00E9es (Linked Data, en Anglais) est une initiative du W3C(Consortium World Wide Web) visant \\u00E0 favoriser la publication de donn\\u00E9es structur\\u00E9es sur le Web, non pas sous la forme de silos de donn\\u00E9es isol\\u00E9s les uns des autres, mais en les reliant entre elles pour constituer un r\\u00E9seau global d'informations. Il s'appuie sur les standards du Web, tels que HTTP et URI - mais plut\\u00F4t qu'utiliser ces standards uniquement pour faciliter la navigation par les \\u00EAtre humains, le Web des donn\\u00E9es les \\u00E9tend pour partager l'information \\u00E9galement entre machines. Cela permet d'interroger automatiquement les donn\\u00E9es, quels que soient leurs lieux de stockage, et sans avoir \\u00E0 les dupliquer. Tim Berners-Lee, directeur du W3C, a invent\\u00E9 et d\\u00E9fini le terme Linked Data et son synonyme Web of Data au sein d'un ouvrage portant sur l'avenir du Web S\\u00E9mantique. En France, le terme Web des donn\\u00E9es est de plus en plus utilis\\u00E9 par la communaut\\u00E9 des professionnels du domaine.\" , \"@language\" : \"fr\" } ] ,\n      \"http://dbpedia.org/ontology/wikiPageExternalLink\" : [ \"http://revyu.com/\" ,\n        \"http://www.ted.com/talks/tim_berners_lee_on_the_next_web.html\" ,\n        \"http://dataviewer.zitgist.com/\" ,\n        \"http://tomheath.com/papers/bizer-heath-berners-lee-ijswis-linked-data.pdf\" ,\n        \"http://www.tecweb.inf.puc-rio.br/explorator/demo\" ,\n        \"http://knoesis.wright.edu/library/publications/linkedai2010_submission_13.pdf\" ,\n        \"http://relfinder.visualdataweb.org/\" ,\n        \"http://linkeddata.uriburner.com/ode\" ,\n        \"http://www.linkeddataplanet.com/\" ,\n        \"http://code.google.com/p/ontology-browser/\" ,\n        \"http://tomheath.com/slides/2008-02-amsterdam-linking-open-data-project.pdf\" ,\n        \"http://knoesis.wright.edu/library/publications/iswc10_paper218.pdf\" ,\n        \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData#dbpedia-lod-cloud\" ,\n        \"http://virtuoso.openlinksw.com/presentations/Creating_Deploying_Exploiting_Linked_Data2/Creating_Deploying_Exploiting_Linked_Data2_TimBL_v3.html\" ,\n        \"http://esw.w3.org/topic/SweoIG/TaskForces/CommunityProjects/LinkingOpenData\" ,\n        \"http://events.linkeddata.org/ldow2011/\" ,\n        \"http://www.sensorpedia.com\" ,\n        \"http://ws.nju.edu.cn/explorer/myview/\" ,\n        \"http://ws.nju.edu.cn/explorer/\" ,\n        \"http://www.openpsi.org/\" ,\n        \"http://sites.wiwiss.fu-berlin.de/suhl/bizer/pub/LinkingOpenData.pdf\" ,\n        \"http://events.linkeddata.org/ldow2008/\" ,\n        \"http://nomisma.org/\" ,\n        \"http://events.linkeddata.org/ldow2009/\" ,\n        \"http://www.viaf.org\" ,\n        \"http://linkeddatabook.com/book\" ,\n        \"http://events.linkeddata.org/ldow2010/\" ,\n        \"http://demo.openlinksw.com/Demo/customers/CustomerID/ALFKI%23this\" ,\n        \"http://www.plasticbag.org/archives/2006/02/my_future_of_web_apps_slides/\" ,\n        \"http://www.w3.org/2008/Talks/0617-lod-tbl/#(1)\" ,\n        \"http://www.scientificamerican.com/article.cfm?id=berners-lee-linked-data\" ,\n        \"http://www.linkeddataplanet.com\" ,\n        \"http://linkeddata.org\" ,\n        \"http://sig.ma\" ,\n        \"http://www4.wiwiss.fu-berlin.de/bizer/pub/lod-datasets_2009-07-14.html\" ,\n        \"http://virtuoso.openlinksw.com/white-papers/\" ,\n        \"http://isweb.uni-koblenz.de/Research/lena/\" ,\n        \"http://people.aifb.kit.edu/aha/2010/cold/\" ,\n        \"http://www.w3.org/2008/Talks/WWW2008-W3CTrack-LOD.pdf\" ,\n        \"http://www.w3.org/wiki/LinkedData\" ,\n        \"http://virtuoso.openlinksw.com/presentations/Virtuoso_Deploying_Linked_Data/Virtuoso_Deploying_Linked_Data.html\" ,\n        \"http://umbel.org/sites/umbel.org/lod/lod_constellation.html\" ,\n        \"http://latc-project.eu/\" ,\n        \"http://riese.joanneum.at\" ,\n        \"http://visinav.deri.org/\" ,\n        \"http://www.w3.org/2005/ajar/tab\" ,\n        \"http://www.sheaflight.com/browser/\" ,\n        \"http://www4.wiwiss.fu-berlin.de/dblp/\" ,\n        \"http://www.razorbase.com\" ,\n        \"http://www.w3.org/DesignIssues/LinkedData.html\" ,\n        \"http://www.w3.org/DesignIssues/LinkedData\" ,\n        \"http://www.wandora.org\" ,\n        \"http://www4.wiwiss.fu-berlin.de/bizer/ng4j/disco/\" ,\n        \"http://planet-data.eu/about\" ,\n        \"http://www.webknox.com/blog/2010/05/linked-open-data-on-the-web-visualization/\" ,\n        \"http://www.slideshare.net/knoesis/how-to-make-linked-data-more-than-data\" ,\n        \"http://www.slideshare.net/mediasemanticweb/linked-data-michael-hausenblas-2009-03-05\" ,\n        \"http://www2008.org/papers/pdf/p1265-bizer.pdf\" ] ,\n      \"http://purl.org/dc/terms/subject\" : [ \"http://dbpedia.org/resource/Category:World_Wide_Web\" ,\n        \"http://dbpedia.org/resource/Category:Buzzwords\" ,\n        \"http://dbpedia.org/resource/Category:Semantic_Web\" ] ,\n      \"http://xmlns.com/foaf/0.1/page\" : [ \"http://en.wikipedia.org/wiki/Linked_Data\" ] } ,\n    { \"@id\": \"http://dbpedia.org/resource/LinkedData\",\n      \"http://dbpedia.org/ontology/wikiPageRedirects\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://dbpedia.org/resource/Linked_data\",\n      \"http://dbpedia.org/ontology/wikiPageRedirects\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://dbpedia.org/resource/Linking_Open_Data\",\n      \"http://dbpedia.org/ontology/wikiPageRedirects\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://en.wikipedia.org/wiki/Linked_Data\",\n      \"http://xmlns.com/foaf/0.1/primaryTopic\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] } ,\n    { \"@id\": \"http://mpii.de/yago/resource/Linked_Data\",\n      \"http://www.w3.org/2002/07/owl#sameAs\" : [ \"http://dbpedia.org/resource/Linked_Data\" ] }\n] }\n"
  },
  {
    "path": "presentation/drupal/compacted.jsonld",
    "content": "{\n    \"@context\": \"http://drupal.example.org/context.jsonld\",\n    \"@id\": \"http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina\",\n    \"@type\": [\"ows:Occupation\", \"schema:Organization\"],\n    \"foaf:name\": \"Occupy Prishtina\",\n    \"schema:name\": \"Occupy Prishtina\",\n    \"dc:date\": \"2012-02-12T21:18:08-05:00\",\n    \"dc:created\": \"2012-02-12T21:18:08-05:00\",\n    \"dc:modified\": \"2012-02-12T21:57:52-05:00\",\n    \"sioc:num_replies\": 0,\n    \"schema:foundingDate\": \"2011-10-15T00:00:00-04:00\",\n    \"ows:twitter_account\": \"@OccupyPrishtina\",\n    \"foaf:mbox\": \"\",\n    \"schema:telephone\": \"\",\n    \"foaf:phone\": \"\"\n}"
  },
  {
    "path": "presentation/drupal/context.jsonld",
    "content": "{  \"@context\": {\n    \"content\": \"http://purl.org/rss/1.0/modules/content/\", \n    \"dc\": \"http://purl.org/dc/terms/\", \n    \"foaf\": \"http://xmlns.com/foaf/0.1/\", \n    \"og\": \"http://ogp.me/ns#\", \n    \"owl\": \"http://www.w3.org/2002/07/owl#\", \n    \"ows\": \"http://vocab.occupy.net/ows#\", \n    \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\", \n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\", \n    \"rss\": \"http://purl.org/rss/1.0/\", \n    \"schema\": \"http://schema.org/\", \n    \"sioc\": \"http://rdfs.org/sioc/ns#\", \n    \"sioct\": \"http://rdfs.org/sioc/types#\", \n    \"site\": \"http://dev.fga-directory.gotpantheon.com/ns#\", \n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\", \n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"dc:created\": {\"@type\": \"xsd:dateTime\"},\n    \"dc:modified\": {\"@type\": \"xsd:dateTime\"},\n    \"dc:date\": {\"@type\": \"xsd:dateTime\"},\n    \"schema:foundingDate\": {\"@type\": \"xsd:date\"},\n    \"sioc:num_replies\": {\"@type\": \"xsd:integer\"}\n  }\n}"
  },
  {
    "path": "presentation/drupal/drupal.jsonld",
    "content": "{\n  \"@context\": {\n    \"content\": \"http://purl.org/rss/1.0/modules/content/\", \n    \"dc\": \"http://purl.org/dc/terms/\", \n    \"foaf\": \"http://xmlns.com/foaf/0.1/\", \n    \"og\": \"http://ogp.me/ns#\", \n    \"owl\": \"http://www.w3.org/2002/07/owl#\", \n    \"ows\": \"http://vocab.occupy.net/ows#\", \n    \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\", \n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\", \n    \"rss\": \"http://purl.org/rss/1.0/\", \n    \"schema\": \"http://schema.org/\", \n    \"sioc\": \"http://rdfs.org/sioc/ns#\", \n    \"sioct\": \"http://rdfs.org/sioc/types#\", \n    \"site\": \"http://dev.fga-directory.gotpantheon.com/ns#\", \n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\", \n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\"\n  }, \n  \"@id\": \"http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina\", \n  \"@type\": [\n      \"http://vocab.occupy.net/ows#Occupation\", \n      \"http://schema.org/Organization\"\n  ], \n  \"http://purl.org/dc/terms/created\": [\n      {\n          \"@type\": \"xsd:dateTime\", \n          \"@value\": \"2012-02-12T21:18:08-05:00\"\n      }\n  ], \n  \"http://purl.org/dc/terms/date\": [\n      {\n          \"@type\": \"xsd:dateTime\", \n          \"@value\": \"2012-02-12T21:18:08-05:00\"\n      }\n  ], \n  \"http://purl.org/dc/terms/modified\": [\n      {\n          \"@type\": \"xsd:dateTime\", \n          \"@value\": \"2012-02-12T21:57:52-05:00\"\n      }\n  ], \n  \"http://rdfs.org/sioc/ns#num_replies\": [\n      {\n          \"@type\": \"xsd:integer\", \n          \"@value\": \"0\"\n      }\n  ], \n  \"http://schema.org/foundingDate\": [\n      {\n          \"@type\": \"xsd:date\", \n          \"@value\": \"2011-10-15T00:00:00-04:00\"\n      }\n  ], \n  \"http://schema.org/name\": [\n      {\n          \"@value\": \"Occupy Prishtina\"\n      }\n  ], \n  \"http://schema.org/telephone\": [\n      {\n          \"@value\": \"\"\n      }\n  ], \n  \"http://vocab.occupy.net/ows#twitter_account\": [\n      {\n          \"@value\": \"@OccupyPrishtina\"\n      }\n  ], \n  \"http://xmlns.com/foaf/0.1/mbox\": [\n      {\n          \"@value\": \"\"\n      }\n  ], \n  \"http://xmlns.com/foaf/0.1/name\": [\n      {\n          \"@value\": \"Occupy Prishtina\"\n      }\n  ], \n  \"http://xmlns.com/foaf/0.1/phone\": [\n      {\n          \"@value\": \"\"\n      }\n  ]\n}\n"
  },
  {
    "path": "presentation/drupal/expanded.jsonld",
    "content": "[{\n    \"@id\": \"http://dev.fga-directory.gotpantheon.com/occupation/al/kosovo/occupy-prishtina\",\n    \"@type\": [\"http://vocab.occupy.net/ows#Occupation\", \"http://schema.org/Organization\"],\n    \"http://purl.org/dc/terms/created\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#dateTime\",\n        \"@value\": \"2012-02-12T21:18:08-05:00\"\n    }],\n    \"http://purl.org/dc/terms/date\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#dateTime\",\n        \"@value\": \"2012-02-12T21:18:08-05:00\"\n    }],\n    \"http://purl.org/dc/terms/modified\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#dateTime\",\n        \"@value\": \"2012-02-12T21:57:52-05:00\"\n    }],\n    \"http://rdfs.org/sioc/ns#num_replies\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\",\n        \"@value\": \"0\"\n    }],\n    \"http://schema.org/foundingDate\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#date\",\n        \"@value\": \"2011-10-15T00:00:00-04:00\"\n    }],\n    \"http://schema.org/name\": [\"Occupy Prishtina\"],\n    \"http://schema.org/telephone\": [\"\"],\n    \"http://vocab.occupy.net/ows#twitter_account\": [\"@OccupyPrishtina\"],\n    \"http://xmlns.com/foaf/0.1/mbox\": [\"\"],\n    \"http://xmlns.com/foaf/0.1/name\": [\"Occupy Prishtina\"],\n    \"http://xmlns.com/foaf/0.1/phone\": [\"\"]\n}]"
  },
  {
    "path": "presentation/gregg.jsonld",
    "content": "{\n  \"@context\": \"http://example.org/context.jsonld\",\n  \"@id\": \"http://greggkellogg.net/foaf#me\",\n  \"@type\": \"Person\",\n  \"name\": \"Gregg Kellogg\",\n  \"knows\": \"http://www.markus-lanthaler.com/\"\n}\n"
  },
  {
    "path": "presentation/manu.jsonld",
    "content": ""
  },
  {
    "path": "presentation/markus.jsonld",
    "content": "{\n  \"@context\": \"http://example.org/context.jsonld\",\n  \"@id\": \"http://www.markus-lanthaler.com/\",\n  \"@type\": \"Person\",\n  \"name\": \"Markus Lanthaler\",\n  \"knows\" \"http://greggkellogg.net/foaf#me\"\n}\n"
  },
  {
    "path": "profiler/.gitignore",
    "content": "/graph-output.txt\n"
  },
  {
    "path": "profiler/all_data.json",
    "content": "[{\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/group/7\", \"type\": \"Group\", \"_label\": \"Paintings Department\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300263534\", \"type\": \"Type\", \"_label\": \"Department\"}], \"member\": [{\"id\": \"https://linked.art/example/person/19\", \"type\": \"Person\", \"_label\": \"Curator\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/group/0\", \"type\": \"Group\", \"_label\": \"Example Museum Organization\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/group/4\", \"type\": \"Group\", \"_label\": \"Example Organization\", \"dissolved_by\": {\"id\": \"https://linked.art/example/Dissolution/0\", \"type\": \"Dissolution\", \"_label\": \"Dissolution of Example Organization\", \"timespan\": {\"id\": \"https://linked.art/example/time/6\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1790-06-12T00:00:00\", \"end_of_the_end\": \"1790-06-12T23:59:59\"}}, \"formed_by\": {\"id\": \"https://linked.art/example/Formation/0\", \"type\": \"Formation\", \"_label\": \"Formation of Example Organization\", \"timespan\": {\"id\": \"https://linked.art/example/time/5\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1639-12-01T00:00:00\", \"end_of_the_end\": \"1639-12-31T23:59:59\"}}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/6\", \"type\": \"Person\", \"_label\": \"Vincent Van Gogh\", \"exact_match\": [{\"id\": \"http://vocab.getty.edu/ulan/500115588\", \"_label\": \"Van Gogh, Vincent\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/7\", \"type\": \"Person\", \"_label\": \"A. Bacchus\", \"member_of\": [{\"id\": \"https://linked.art/example/group/3\", \"type\": \"Group\", \"_label\": \"Example City Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}], \"contact_point\": [{\"id\": \"https://linked.art/example/identifier/5\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435687\", \"type\": \"Type\", \"_label\": \"Street Address\"}], \"content\": \"1200 Museum Drive, Example City\"}]}], \"contact_point\": [{\"id\": \"https://linked.art/example/identifier/4\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435686\", \"type\": \"Type\", \"_label\": \"Email Address\"}], \"content\": \"a.person@example.org\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/10\", \"type\": \"Person\", \"_label\": \"David E. Frederickson\", \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/5\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435422\", \"type\": \"Type\", \"_label\": \"Biography Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"David was born at a very early age.\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/0\", \"type\": \"Person\", \"_label\": \"Example French Person\", \"member_of\": [{\"id\": \"http://vocab.getty.edu/aat/300111188\", \"type\": \"Group\", \"_label\": \"French\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/11\", \"type\": \"Person\", \"_label\": \"Jeremy K. Lintott\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300111159\", \"type\": \"Type\", \"_label\": \"British\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300379842\", \"type\": \"Type\", \"_label\": \"Nationality\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/12\", \"type\": \"Person\", \"_label\": \"Mabel N. Overton\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300189557\", \"type\": \"Type\", \"_label\": \"feminine\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055147\", \"type\": \"Type\", \"_label\": \"Gender\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/13\", \"type\": \"Person\", \"_label\": \"Gertrude H. Ingram\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/3\", \"type\": \"Person\", \"_label\": \"J. Smith\", \"identified_by\": [{\"id\": \"https://linked.art/example/name/2\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404670\", \"type\": \"Type\", \"_label\": \"Primary Name\"}], \"content\": \"J. Smith\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/8\", \"type\": \"Person\", \"_label\": \"Amanda B. Curtlett\", \"born\": {\"id\": \"https://linked.art/example/activity/5\", \"type\": \"Birth\", \"timespan\": {\"id\": \"https://linked.art/example/time/3\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1767-01-09\", \"end_of_the_end\": \"1767-01-12\"}}, \"died\": {\"id\": \"https://linked.art/example/activity/6\", \"type\": \"Death\", \"timespan\": {\"id\": \"https://linked.art/example/time/4\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1824-08-21\", \"end_of_the_end\": \"1824-08-21\"}, \"took_place_at\": [{\"id\": \"https://linked.art/example/place/5\", \"type\": \"Place\", \"_label\": \"Death Place\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/4\", \"type\": \"Person\", \"_label\": \"Lady Joan A. Smith, Duchess of Wolverhampton\", \"identified_by\": [{\"id\": \"https://linked.art/example/name/3\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404670\", \"type\": \"Type\", \"_label\": \"Primary Name\"}], \"part\": [{\"id\": \"https://linked.art/example/name/6\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404845\", \"type\": \"Type\", \"_label\": \"Name Prefix\"}], \"content\": \"Lady\"}, {\"id\": \"https://linked.art/example/name/4\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404651\", \"type\": \"Type\", \"_label\": \"Given Name\"}], \"content\": \"Joan\"}, {\"id\": \"https://linked.art/example/name/8\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404654\", \"type\": \"Type\", \"_label\": \"Middle Name\"}], \"content\": \"A.\"}, {\"id\": \"https://linked.art/example/name/5\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404652\", \"type\": \"Type\", \"_label\": \"Family Name\"}], \"content\": \"Smith\"}, {\"id\": \"https://linked.art/example/name/7\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404662\", \"type\": \"Type\", \"_label\": \"Name Suffix\"}], \"content\": \"Duchess of Wolverhampton\"}], \"content\": \"Lady Joan A. Smith, Duchess of Wolverhampton\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/14\", \"type\": \"Person\", \"_label\": \"Sameen T. Underwood\", \"member_of\": [{\"id\": \"https://linked.art/example/group/5\", \"type\": \"Group\", \"_label\": \"Paintings Department\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300263534\", \"type\": \"Type\", \"_label\": \"Department\"}], \"member_of\": [{\"id\": \"https://linked.art/example/group/6\", \"type\": \"Group\", \"_label\": \"Example Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/5\", \"type\": \"Person\", \"_label\": \"Xavier Y. Zeelander\", \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/3\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404621\", \"type\": \"Type\", \"_label\": \"Owner-Assigned Number\"}], \"content\": \"643\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/person/9\", \"type\": \"Person\", \"_label\": \"Patrick Q. Robertson\", \"carried_out\": [{\"id\": \"https://linked.art/example/activity/7\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300393177\", \"type\": \"Type\", \"_label\": \"Professional Activities\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/7\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1910-01-01\", \"end_of_the_end\": \"1934-03-21\"}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/103\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/Encounter/0\", \"type\": \"Encounter\", \"_label\": \"Encounter of Sculpture\", \"took_place_at\": [{\"id\": \"https://linked.art/example/place/17\", \"type\": \"Place\", \"_label\": \"At Sea\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/56\", \"type\": \"Person\", \"_label\": \"Fisher\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/object/99\", \"type\": \"HumanMadeObject\", \"_label\": \"Fishing Net\"}], \"encountered\": [{\"id\": \"https://linked.art/example/object/98\", \"type\": \"HumanMadeObject\", \"_label\": \"Lost Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}]}, {\"id\": \"https://linked.art/example/activity/104\", \"type\": \"Acquisition\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/98\", \"type\": \"HumanMadeObject\", \"_label\": \"Lost Sculpture\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/56\", \"type\": \"Person\", \"_label\": \"Fisher\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/61\", \"type\": \"Activity\", \"_label\": \"Example Auction in London 1875-03-12,13\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054751\", \"type\": \"Type\", \"_label\": \"Auction Event\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/20\", \"type\": \"TimeSpan\", \"_label\": \"12th and 13th of March, 1875\", \"begin_of_the_begin\": \"1875-03-12T00:00:00Z\", \"end_of_the_end\": \"1875-03-14T00:00:00Z\"}, \"took_place_at\": [{\"id\": \"https://linked.art/example/place/16\", \"type\": \"Place\", \"_label\": \"Auction House Premises, London\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300005234\", \"type\": \"Type\", \"_label\": \"Auction House (place)\"}]}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/21\", \"type\": \"Group\", \"_label\": \"Auction House\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417515\", \"type\": \"Type\", \"_label\": \"Auction House (organization)\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/119\", \"type\": \"Activity\", \"_label\": \"Commission of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/120\", \"type\": \"Activity\", \"_label\": \"Obligation to Pay Artist\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435599\", \"type\": \"Type\", \"_label\": \"Promise\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/31\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Promise to pay $1000 for a painting to be created by the artist, with 10% in advance\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/58\", \"type\": \"Person\", \"_label\": \"Commissioner\"}], \"participant\": [{\"id\": \"https://linked.art/example/person/59\", \"type\": \"Person\", \"_label\": \"Artist\"}]}, {\"id\": \"https://linked.art/example/activity/121\", \"type\": \"Activity\", \"_label\": \"Obligation to Produce Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435599\", \"type\": \"Type\", \"_label\": \"Promise\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/32\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\"}], \"content\": \"Promise to paint a landscape for the commissioning party\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/59\", \"type\": \"Person\", \"_label\": \"Artist\"}], \"participant\": [{\"id\": \"https://linked.art/example/person/58\", \"type\": \"Person\", \"_label\": \"Commissioner\"}]}, {\"id\": \"https://linked.art/example/activity/122\", \"type\": \"Payment\", \"_label\": \"Down Payment\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/9\", \"type\": \"MonetaryAmount\", \"value\": 100, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/person/58\", \"type\": \"Person\", \"_label\": \"Commissioner\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/person/59\", \"type\": \"Person\", \"_label\": \"Artist\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/95\", \"type\": \"Activity\", \"_label\": \"Loss of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/96\", \"type\": \"TransferOfCustody\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417655\", \"type\": \"Type\", \"_label\": \"Loss\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/21\", \"type\": \"TimeSpan\", \"_label\": \"Time noticed as Lost\", \"begin_of_the_begin\": \"1790-12-04T00:00:00Z\", \"end_of_the_end\": \"1790-12-05T00:00:00Z\"}, \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/94\", \"type\": \"HumanMadeObject\", \"_label\": \"Lost Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/52\", \"type\": \"Person\", \"_label\": \"Owner\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/56\", \"type\": \"Activity\", \"_label\": \"Purchase of Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/57\", \"type\": \"Payment\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/0\", \"type\": \"MonetaryAmount\", \"value\": 1000, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/actor/9\", \"type\": \"Actor\", \"_label\": \"Buyer\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/actor/8\", \"type\": \"Actor\", \"_label\": \"Seller\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/114\", \"type\": \"Activity\", \"_label\": \"Exhibiting a Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/116\", \"type\": \"Move\", \"moved\": [{\"id\": \"https://linked.art/example/object/100\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}], \"moved_from\": {\"id\": \"https://linked.art/example/place/18\", \"type\": \"Place\", \"_label\": \"Storage Venue\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300150151\", \"type\": \"Type\", \"_label\": \"Storage (place)\"}]}, \"moved_to\": {\"id\": \"https://linked.art/example/place/19\", \"type\": \"Place\", \"_label\": \"Gallery\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300240057\", \"type\": \"Type\", \"_label\": \"Gallery (place)\"}]}}], \"motivated_by\": [{\"id\": \"https://linked.art/example/activity/115\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/47\", \"type\": \"Activity\", \"_label\": \"Purchase of Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/48\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Sculpture from Seller\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/80\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/32\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/31\", \"type\": \"Person\", \"_label\": \"Buyer\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/51\", \"type\": \"Activity\", \"_label\": \"Purchase of Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/52\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Sculpture from Seller\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/38\", \"type\": \"Person\", \"_label\": \"Agent for the Buyer\"}], \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/82\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/37\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/36\", \"type\": \"Person\", \"_label\": \"Buyer\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/92\", \"type\": \"Activity\", \"_label\": \"Purchase of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/93\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/93\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/51\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/group/23\", \"type\": \"Group\", \"_label\": \"Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}, {\"id\": \"https://linked.art/example/activity/94\", \"type\": \"TransferOfCustody\", \"_label\": \"Custody by Department\", \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/93\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/51\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/group/24\", \"type\": \"Group\", \"_label\": \"Paintings Department of Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300263534\", \"type\": \"Type\", \"_label\": \"Department\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/125\", \"type\": \"Activity\", \"_label\": \"Delivery of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/126\", \"type\": \"Acquisition\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/103\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/61\", \"type\": \"Person\", \"_label\": \"Artist\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/62\", \"type\": \"Person\", \"_label\": \"Commissioner\"}]}, {\"id\": \"https://linked.art/example/activity/127\", \"type\": \"Payment\", \"_label\": \"Payment\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/10\", \"type\": \"MonetaryAmount\", \"value\": 900, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/person/62\", \"type\": \"Person\", \"_label\": \"Commissioner\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/person/61\", \"type\": \"Person\", \"_label\": \"Artist\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/0\", \"type\": \"Activity\", \"_label\": \"Example Auction\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300420001\", \"type\": \"Type\", \"_label\": \"Auction of Lot\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/105\", \"type\": \"Activity\", \"_label\": \"Purchase of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/12\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404621\", \"type\": \"Type\", \"_label\": \"Owner-Assigned Number\"}], \"content\": \"acq-2002-0005\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/22\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"2002-04-19T00:00:00Z\", \"end_of_the_end\": \"2002-04-26T00:00:00Z\"}, \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/26\", \"type\": \"Group\", \"_label\": \"Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}], \"part\": [{\"id\": \"https://linked.art/example/activity/106\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting from Seller\"}, {\"id\": \"https://linked.art/example/activity/107\", \"type\": \"Payment\", \"_label\": \"Payment of Price to Seller\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/71\", \"type\": \"Activity\", \"_label\": \"Return to Owner from Auction House\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/72\", \"type\": \"TransferOfCustody\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300438467\", \"type\": \"Type\", \"_label\": \"Return of Loan\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/88\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/group/22\", \"type\": \"Group\", \"_label\": \"Auction House\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/person/45\", \"type\": \"Person\", \"_label\": \"Owner\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/88\", \"type\": \"Activity\", \"_label\": \"Lending a Sculpture to Recipient\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/89\", \"type\": \"TransferOfCustody\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417645\", \"type\": \"Type\", \"_label\": \"Loan\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/91\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/47\", \"type\": \"Person\", \"_label\": \"Lender\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/person/48\", \"type\": \"Person\", \"_label\": \"Recipient\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/66\", \"type\": \"Activity\", \"_label\": \"Auction of Lot J-1823-5\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300420001\", \"type\": \"Type\", \"_label\": \"Auction of Lot\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/67\", \"type\": \"Activity\", \"_label\": \"Bids on Lot J-1823-5\", \"part\": [{\"id\": \"https://linked.art/example/Creation/8\", \"type\": \"Creation\", \"_label\": \"Bid of 10000 dollars\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054602\", \"type\": \"Type\", \"_label\": \"Bidding\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/42\", \"type\": \"Person\", \"_label\": \"Example Bidder\"}], \"created\": [{\"id\": \"https://linked.art/example/concept/1\", \"type\": \"PropositionalObject\", \"refers_to\": [{\"id\": \"https://linked.art/example/money/3\", \"type\": \"MonetaryAmount\", \"value\": 10000, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}]}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/128\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/129\", \"type\": \"Acquisition\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/104\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/group/28\", \"type\": \"Group\", \"_label\": \"Museum\"}]}, {\"id\": \"https://linked.art/example/RightAcquisition/0\", \"type\": \"RightAcquisition\", \"establishes\": {\"id\": \"https://linked.art/example/Right/1\", \"type\": \"Right\", \"_label\": \"Right of Ownership for Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/28\", \"type\": \"Group\", \"_label\": \"Museum\"}], \"applies_to\": [{\"id\": \"https://linked.art/example/object/104\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/27\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/11\", \"type\": \"Set\", \"member\": [{\"id\": \"https://linked.art/example/object/35\", \"type\": \"HumanMadeObject\", \"_label\": \"Real Painting Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}], \"part\": [{\"id\": \"https://linked.art/example/activity/28\", \"type\": \"AttributeAssignment\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/23\", \"type\": \"Person\", \"_label\": \"A. Curator\"}], \"assigned\": {\"id\": \"https://linked.art/example/name/17\", \"type\": \"Name\", \"content\": \"Exhibition Specific Name\"}, \"assigned_property\": \"identified_by\", \"assigned_to\": {\"id\": \"https://linked.art/example/object/35\", \"type\": \"HumanMadeObject\", \"_label\": \"Real Painting Name\"}, \"involved\": [{\"id\": \"https://linked.art/example/Set/11\", \"type\": \"Set\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/1\", \"type\": \"Production\", \"timespan\": {\"id\": \"https://linked.art/example/time/2\", \"type\": \"TimeSpan\", \"_label\": \"ca. 1604\", \"begin_of_the_begin\": \"1603-01-01T00:00:00Z\", \"end_of_the_end\": \"1606-01-01T00:00:00Z\"}, \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/1\", \"type\": \"Person\", \"_label\": \"Rubens, Peter Paul\", \"born\": {\"id\": \"https://linked.art/example/activity/2\", \"type\": \"Birth\", \"timespan\": {\"id\": \"https://linked.art/example/time/0\", \"type\": \"TimeSpan\", \"_label\": \"1577\", \"begin_of_the_begin\": \"1577-01-01T00:00:00Z\", \"end_of_the_end\": \"1578-01-01T00:00:00Z\"}}, \"died\": {\"id\": \"https://linked.art/example/activity/3\", \"type\": \"Death\", \"timespan\": {\"id\": \"https://linked.art/example/time/1\", \"type\": \"TimeSpan\", \"_label\": \"1640\", \"begin_of_the_begin\": \"1640-01-01T00:00:00Z\", \"end_of_the_end\": \"1641-01-01T00:00:00Z\"}}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/132\", \"type\": \"Activity\", \"_label\": \"Copyright acquisition by PCA\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/RightAcquisition/4\", \"type\": \"RightAcquisition\", \"establishes\": {\"id\": \"https://linked.art/example/Right/9\", \"type\": \"Right\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055598\", \"type\": \"Type\", \"_label\": \"Copyright\"}], \"applies_to\": [{\"id\": \"https://linked.art/example/object/107\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/33\", \"type\": \"Group\", \"_label\": \"Paintings Copyright Association\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/108\", \"type\": \"Activity\", \"_label\": \"Gift of two Paintings to Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}, {\"id\": \"http://vocab.getty.edu/aat/300417637\", \"type\": \"Type\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/109\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting 1\"}, {\"id\": \"https://linked.art/example/activity/110\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting 2\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/11\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/4\", \"type\": \"Set\", \"member\": [{\"id\": \"https://linked.art/example/object/12\", \"type\": \"HumanMadeObject\", \"_label\": \"Real Painting Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}], \"part\": [{\"id\": \"https://linked.art/example/activity/12\", \"type\": \"AttributeAssignment\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/18\", \"type\": \"Person\", \"_label\": \"A. Curator\"}], \"assigned\": {\"id\": \"https://linked.art/example/name/10\", \"type\": \"Name\", \"content\": \"Exhibition Specific Name\"}, \"assigned_property\": \"identified_by\", \"assigned_to\": {\"id\": \"https://linked.art/example/object/12\", \"type\": \"HumanMadeObject\", \"_label\": \"Real Painting Name\"}, \"involved\": [{\"id\": \"https://linked.art/example/Set/4\", \"type\": \"Set\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/131\", \"type\": \"Activity\", \"_label\": \"Trading Shares of Painting between Two Dealers\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/RightAcquisition/2\", \"type\": \"RightAcquisition\", \"invalidates\": [{\"id\": \"https://linked.art/example/Right/6\", \"type\": \"Right\", \"_label\": \"30% Ownership by Dealer 1\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}]}], \"establishes\": {\"id\": \"https://linked.art/example/Right/5\", \"type\": \"Right\", \"_label\": \"40% Ownership by Dealer 1\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/13\", \"type\": \"Dimension\", \"value\": 40, \"unit\": {\"id\": \"http://qudt.org/1.1/vocab/unit/Percent\", \"type\": \"MeasurementUnit\", \"_label\": \"Percent\"}}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/31\", \"type\": \"Group\", \"_label\": \"Dealer 1\"}], \"applies_to\": [{\"id\": \"https://linked.art/example/object/106\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}]}}, {\"id\": \"https://linked.art/example/RightAcquisition/3\", \"type\": \"RightAcquisition\", \"invalidates\": [{\"id\": \"https://linked.art/example/Right/8\", \"type\": \"Right\", \"_label\": \"70% Ownership by Dealer 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}]}], \"establishes\": {\"id\": \"https://linked.art/example/Right/7\", \"type\": \"Right\", \"_label\": \"60% Ownership by Dealer 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/14\", \"type\": \"Dimension\", \"value\": 70, \"unit\": {\"id\": \"http://qudt.org/1.1/vocab/unit/Percent\", \"type\": \"MeasurementUnit\", \"_label\": \"Percent\"}}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/32\", \"type\": \"Group\", \"_label\": \"Dealer 2\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/90\", \"type\": \"Activity\", \"_label\": \"Return of the Sculpture to Lender\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/91\", \"type\": \"TransferOfCustody\", \"_label\": \"Return\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300438467\", \"type\": \"Type\", \"_label\": \"Return of Loan\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/92\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/49\", \"type\": \"Person\", \"_label\": \"Recipient\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/person/50\", \"type\": \"Person\", \"_label\": \"Lender\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/53\", \"type\": \"Activity\", \"_label\": \"Exchange of Sculpture for Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/54\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Sculpture from Seller\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/83\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"id\": \"https://linked.art/example/object/84\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/40\", \"type\": \"Person\", \"_label\": \"Seller\"}, {\"id\": \"https://linked.art/example/person/39\", \"type\": \"Person\", \"_label\": \"Buyer\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/39\", \"type\": \"Person\", \"_label\": \"Buyer\"}, {\"id\": \"https://linked.art/example/person/40\", \"type\": \"Person\", \"_label\": \"Seller\"}]}, {\"id\": \"https://linked.art/example/activity/55\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting from Buyer\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/49\", \"type\": \"Activity\", \"_label\": \"Purchase of Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/50\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Sculpture from Seller by two Buyers\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/81\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/35\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/33\", \"type\": \"Person\", \"_label\": \"Buyer\"}, {\"id\": \"https://linked.art/example/person/34\", \"type\": \"Person\", \"_label\": \"Buyer 2\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/111\", \"type\": \"Activity\", \"_label\": \"Undated Purchase of Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"ends_before_the_start_of\": [{\"id\": \"https://linked.art/example/activity/113\", \"type\": \"Activity\", \"_label\": \"Subsequent Owner's Acquisition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}]}], \"starts_after_the_end_of\": [{\"id\": \"https://linked.art/example/activity/112\", \"type\": \"Activity\", \"_label\": \"Previous Owner's Acquisition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/25\", \"type\": \"Move\", \"_label\": \"Move of object for exhibition\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/15\", \"type\": \"Group\", \"_label\": \"Exhibiting Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}], \"moved\": [{\"id\": \"https://linked.art/example/object/34\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"current_owner\": [{\"id\": \"https://linked.art/example/group/15\", \"type\": \"Group\", \"_label\": \"Exhibiting Museum\"}]}], \"specific_purpose\": [{\"id\": \"https://linked.art/example/activity/26\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/15\", \"type\": \"Group\", \"_label\": \"Exhibiting Museum\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/10\", \"type\": \"Set\", \"_label\": \"Set of Exhibited Objects\", \"member\": [{\"id\": \"https://linked.art/example/object/34\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/13\", \"type\": \"Activity\", \"_label\": \"Inferred Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300202389\", \"type\": \"Type\", \"_label\": \"Computer Generated\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/1\", \"type\": \"Actor\", \"_label\": \"Performer of inferred activity\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/29\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/12\", \"type\": \"Set\", \"member\": [{\"id\": \"https://linked.art/example/object/36\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/68\", \"type\": \"Activity\", \"_label\": \"Purchase via Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/16\", \"type\": \"Set\", \"_label\": \"Set of Objects for Lot 812\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/69\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting via Lot 812\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/87\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\"}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/43\", \"type\": \"Person\", \"_label\": \"Seller\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/44\", \"type\": \"Person\", \"_label\": \"Buyer\"}]}, {\"id\": \"https://linked.art/example/activity/70\", \"type\": \"Payment\", \"_label\": \"Payment for Lot 812\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/7\", \"type\": \"MonetaryAmount\", \"value\": 4500, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/person/44\", \"type\": \"Person\", \"_label\": \"Buyer\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/person/43\", \"type\": \"Person\", \"_label\": \"Seller\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/130\", \"type\": \"Activity\", \"_label\": \"Purchase of Painting by Two Dealers\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/RightAcquisition/1\", \"type\": \"RightAcquisition\", \"establishes\": {\"id\": \"https://linked.art/example/Right/2\", \"type\": \"Right\", \"_label\": \"Total Right of Ownership\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"part\": [{\"id\": \"https://linked.art/example/Right/3\", \"type\": \"Right\", \"_label\": \"30% Ownership by Dealer 1\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/11\", \"type\": \"Dimension\", \"value\": 30, \"unit\": {\"id\": \"http://qudt.org/1.1/vocab/unit/Percent\", \"type\": \"MeasurementUnit\", \"_label\": \"Percent\"}}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/29\", \"type\": \"Group\", \"_label\": \"Dealer 1\"}]}, {\"id\": \"https://linked.art/example/Right/4\", \"type\": \"Right\", \"_label\": \"70% Ownership by Dealer 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055603\", \"type\": \"Type\", \"_label\": \"Ownership Right\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/12\", \"type\": \"Dimension\", \"value\": 70, \"unit\": {\"id\": \"http://qudt.org/1.1/vocab/unit/Percent\", \"type\": \"MeasurementUnit\", \"_label\": \"Percent\"}}], \"possessed_by\": [{\"id\": \"https://linked.art/example/group/30\", \"type\": \"Group\", \"_label\": \"Dealer 2\"}]}], \"applies_to\": [{\"id\": \"https://linked.art/example/object/105\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/8\", \"type\": \"AttributeAssignment\", \"timespan\": {\"id\": \"https://linked.art/example/time/8\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1804-05-19\", \"end_of_the_end\": \"1804-05-19\"}, \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/15\", \"type\": \"Person\", \"_label\": \"Painting Curator\"}], \"assigned\": {\"id\": \"https://linked.art/example/name/9\", \"type\": \"Name\", \"content\": \"Previous Painting Title\"}, \"assigned_property\": \"identified_by\", \"assigned_to\": {\"id\": \"https://linked.art/example/object/10\", \"type\": \"HumanMadeObject\", \"_label\": \"Current Painting Title\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/75\", \"type\": \"Phase\", \"_label\": \"Ownership of the Painting\", \"relationship\": \"current_owner\", \"initiated_by\": [{\"id\": \"https://linked.art/example/activity/76\", \"type\": \"Acquisition\", \"_label\": \"Acquisition of Painting by Owner\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/89\", \"type\": \"HumanMadeObject\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/person/46\", \"type\": \"Person\", \"_label\": \"Someone Else\"}]}], \"phase_of\": {\"id\": \"https://linked.art/example/object/89\", \"type\": \"HumanMadeObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, \"related_entity\": {\"id\": \"https://linked.art/example/person/46\", \"type\": \"Person\", \"_label\": \"Someone Else\"}, \"terminated_by\": [{\"id\": \"https://linked.art/example/activity/77\", \"type\": \"Acquisition\", \"_label\": \"Owner gives Painting to someone else\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/89\", \"type\": \"HumanMadeObject\"}], \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/46\", \"type\": \"Person\", \"_label\": \"Someone Else\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/22\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/8\", \"type\": \"Set\", \"member\": [{\"id\": \"https://linked.art/example/object/30\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"id\": \"https://linked.art/example/object/31\", \"type\": \"HumanMadeObject\", \"_label\": \"Another Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\"}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"id\": \"https://linked.art/example/object/32\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/18\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/12\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"2010-08-01\", \"end_of_the_end\": \"2011-06-01\"}, \"took_place_at\": [{\"id\": \"https://linked.art/example/place/7\", \"type\": \"Place\", \"_label\": \"Example Museum's Location\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300005768\", \"type\": \"Type\", \"_label\": \"Museum (place)\"}]}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/12\", \"type\": \"Group\", \"_label\": \"Example Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/117\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/118\", \"type\": \"Activity\", \"_label\": \"Promise of Gift\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435599\", \"type\": \"Type\", \"_label\": \"Promise\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/30\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Contractual gift over time from Owner to be completed in 2032\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/57\", \"type\": \"Person\", \"_label\": \"Owner\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/object/101\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}], \"participant\": [{\"id\": \"https://linked.art/example/group/27\", \"type\": \"Group\", \"_label\": \"Museum\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/4\", \"type\": \"Acquisition\", \"transferred_title_from\": [{\"id\": \"https://linked.art/example/person/2\", \"type\": \"Person\", \"_label\": \"J. Smith\"}], \"transferred_title_to\": [{\"id\": \"https://linked.art/example/group/2\", \"type\": \"Group\", \"_label\": \"Example Museum Organization\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/80\", \"type\": \"Phase\", \"_label\": \"Lifetime of Painting\", \"part\": [{\"id\": \"https://linked.art/example/activity/81\", \"type\": \"Production\", \"produced\": [{\"id\": \"https://linked.art/example/object/90\", \"type\": \"HumanMadeObject\"}]}, {\"id\": \"https://linked.art/example/activity/82\", \"type\": \"Phase\", \"_label\": \"Ownership by Artist\"}, {\"id\": \"https://linked.art/example/activity/83\", \"type\": \"Acquisition\", \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/90\", \"type\": \"HumanMadeObject\"}]}, {\"id\": \"https://linked.art/example/activity/84\", \"type\": \"Phase\", \"_label\": \"Ownership by first owner\"}, {\"id\": \"https://linked.art/example/activity/85\", \"type\": \"Acquisition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300077989\", \"type\": \"Type\", \"_label\": \"Purchasing\"}], \"transferred_title_of\": [{\"id\": \"https://linked.art/example/object/90\", \"type\": \"HumanMadeObject\"}]}, {\"id\": \"https://linked.art/example/activity/86\", \"type\": \"Phase\", \"_label\": \"Ownership by second and final owner\"}, {\"id\": \"https://linked.art/example/activity/87\", \"type\": \"Destruction\", \"took_out_of_existence\": [{\"id\": \"https://linked.art/example/object/90\", \"type\": \"HumanMadeObject\"}]}], \"phase_of\": {\"id\": \"https://linked.art/example/object/90\", \"type\": \"HumanMadeObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/14\", \"type\": \"Activity\", \"timespan\": {\"id\": \"https://linked.art/example/time/9\", \"type\": \"TimeSpan\", \"_label\": \"When\", \"begin_of_the_begin\": \"earliest-start-datetime\", \"end_of_the_end\": \"latest-end-datetime\"}, \"took_place_at\": [{\"id\": \"https://linked.art/example/place/6\", \"type\": \"Place\", \"_label\": \"Where\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/2\", \"type\": \"Actor\", \"_label\": \"Who\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/15\", \"type\": \"Activity\", \"_label\": \"Auction\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054751\", \"type\": \"Type\", \"_label\": \"Auction Event\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/10\", \"type\": \"TimeSpan\", \"identified_by\": [{\"id\": \"https://linked.art/example/name/13\", \"type\": \"Name\", \"content\": \"Three days within April 1763\"}], \"begin_of_the_begin\": \"1763-04-01T00:00:00Z\", \"end_of_the_begin\": \"1763-04-28T00:00:00Z\", \"begin_of_the_end\": \"1763-04-04T00:00:00Z\", \"end_of_the_end\": \"1763-05-01T00:00:00Z\", \"duration\": {\"id\": \"https://linked.art/example/value/4\", \"type\": \"Dimension\", \"value\": 3, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379242\", \"type\": \"MeasurementUnit\", \"_label\": \"days\"}}}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/78\", \"type\": \"Phase\", \"_label\": \"Ownership of the Painting\", \"part\": [{\"id\": \"https://linked.art/example/activity/79\", \"type\": \"Activity\", \"_label\": \"Inventory Taking by Owner\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300077506\", \"type\": \"Type\", \"_label\": \"Inventorying\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/97\", \"type\": \"Activity\", \"_label\": \"Theft of Two Paintings\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/98\", \"type\": \"TransferOfCustody\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055292\", \"type\": \"Type\", \"_label\": \"Theft\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/95\", \"type\": \"HumanMadeObject\", \"_label\": \"Stolen Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/53\", \"type\": \"Person\", \"_label\": \"Owner\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/person/54\", \"type\": \"Person\", \"_label\": \"Thief\"}]}, {\"id\": \"https://linked.art/example/activity/99\", \"type\": \"TransferOfCustody\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055292\", \"type\": \"Type\", \"_label\": \"Theft\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/96\", \"type\": \"HumanMadeObject\", \"_label\": \"Stolen Painting 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\"}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/53\", \"type\": \"Person\", \"_label\": \"Owner\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/person/54\", \"type\": \"Person\", \"_label\": \"Thief\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/19\", \"type\": \"Activity\", \"_label\": \"Example Travelling Exhibition at Two Museums\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054773\", \"type\": \"Type\", \"_label\": \"Exhibiting in multiple locations\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/13\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1980-10-01\", \"end_of_the_end\": \"1981-08-14\"}, \"part\": [{\"id\": \"https://linked.art/example/activity/20\", \"type\": \"Activity\", \"_label\": \"Exhibition at Museum 1\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/14\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1980-10-01\", \"end_of_the_end\": \"1981-03-01\"}}, {\"id\": \"https://linked.art/example/activity/21\", \"type\": \"Activity\", \"_label\": \"Exhibition at Museum 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/15\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1981-03-14\", \"end_of_the_end\": \"1981-08-14\"}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/58\", \"type\": \"Activity\", \"_label\": \"Purchase of Sculpture with Commission\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/59\", \"type\": \"Payment\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/1\", \"type\": \"MonetaryAmount\", \"value\": 900, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/actor/11\", \"type\": \"Actor\", \"_label\": \"Buyer\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/actor/10\", \"type\": \"Actor\", \"_label\": \"Seller\"}]}, {\"id\": \"https://linked.art/example/activity/60\", \"type\": \"Payment\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300393199\", \"type\": \"Type\", \"_label\": \"Commission\"}], \"paid_amount\": {\"id\": \"https://linked.art/example/money/2\", \"type\": \"MonetaryAmount\", \"value\": 100, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/actor/11\", \"type\": \"Actor\", \"_label\": \"Buyer\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/group/20\", \"type\": \"Group\", \"_label\": \"Auction House\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417515\", \"type\": \"Type\", \"_label\": \"Auction House (organization)\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/100\", \"type\": \"Activity\", \"_label\": \"Unknowing Purchase of Stolen Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/101\", \"type\": \"TransferOfCustody\", \"_label\": \"Obtaining Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/xxx\", \"type\": \"Type\", \"_label\": \"Sale of Stolen Goods\"}], \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/97\", \"type\": \"HumanMadeObject\", \"_label\": \"Stolen Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/person/55\", \"type\": \"Person\", \"_label\": \"Thief\"}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/group/25\", \"type\": \"Group\", \"_label\": \"Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}, {\"id\": \"https://linked.art/example/activity/102\", \"type\": \"Payment\", \"paid_amount\": {\"id\": \"https://linked.art/example/money/8\", \"type\": \"MonetaryAmount\", \"_label\": \"Payment to Thief\", \"value\": 10000, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411998\", \"type\": \"Currency\", \"_label\": \"British Pounds\"}}, \"paid_from\": [{\"id\": \"https://linked.art/example/group/25\", \"type\": \"Group\", \"_label\": \"Museum\"}], \"paid_to\": [{\"id\": \"https://linked.art/example/person/55\", \"type\": \"Person\", \"_label\": \"Thief\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/23\", \"type\": \"TransferOfCustody\", \"_label\": \"Custody Transfer of Painting for Exhibition\", \"transferred_custody_of\": [{\"id\": \"https://linked.art/example/object/33\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"current_owner\": [{\"id\": \"https://linked.art/example/group/14\", \"type\": \"Group\", \"_label\": \"Owning Museum\"}]}], \"transferred_custody_from\": [{\"id\": \"https://linked.art/example/group/14\", \"type\": \"Group\", \"_label\": \"Owning Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}], \"transferred_custody_to\": [{\"id\": \"https://linked.art/example/group/13\", \"type\": \"Group\", \"_label\": \"Exhibiting Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}], \"specific_purpose\": [{\"id\": \"https://linked.art/example/activity/24\", \"type\": \"Activity\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/13\", \"type\": \"Group\", \"_label\": \"Exhibiting Museum\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/9\", \"type\": \"Set\", \"member\": [{\"id\": \"https://linked.art/example/object/33\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/62\", \"type\": \"Activity\", \"_label\": \"Auction of Lot J-1823-5\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300420001\", \"type\": \"Type\", \"_label\": \"Auction of Lot\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/41\", \"type\": \"Person\", \"_label\": \"Example Auctioneer\"}], \"used_specific_object\": [{\"id\": \"https://linked.art/example/Set/13\", \"type\": \"Set\", \"_label\": \"Set of Objects for Lot J-1823-5\"}], \"part_of\": [{\"id\": \"https://linked.art/example/activity/63\", \"type\": \"Activity\", \"_label\": \"Example Auction\"}], \"part\": [{\"id\": \"https://linked.art/example/activity/64\", \"type\": \"Activity\", \"_label\": \"Bids on Lot J-1823-5\"}], \"caused\": [{\"id\": \"https://linked.art/example/activity/65\", \"type\": \"Activity\", \"_label\": \"Sale of Lot J-1823-5\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055863\", \"type\": \"Type\", \"_label\": \"Provenance Entry\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/activity/9\", \"type\": \"AttributeAssignment\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/17\", \"type\": \"Person\", \"_label\": \"Painting Curator\"}], \"assigned\": {\"id\": \"https://linked.art/example/activity/10\", \"type\": \"Production\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404285\", \"type\": \"Type\", \"_label\": \"Style Of\"}], \"influenced_by\": [{\"id\": \"https://linked.art/example/person/16\", \"type\": \"Person\", \"_label\": \"Well Known Artist\"}]}, \"assigned_to\": {\"id\": \"https://linked.art/example/object/11\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, \"assigned_property\": \"produced_by\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/value/0\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055644\", \"type\": \"Type\", \"_label\": \"Height\"}], \"value\": 24}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/value/1\", \"type\": \"Dimension\", \"_label\": \"24 inches high\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055644\", \"type\": \"Type\", \"_label\": \"Height\"}], \"value\": 24, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379100\", \"type\": \"MeasurementUnit\", \"_label\": \"inches\"}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/identifier/0\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312355\", \"type\": \"Type\", \"_label\": \"Accession Number\"}], \"content\": \"P2005.12.276\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/identifier/1\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312355\", \"type\": \"Type\", \"_label\": \"Accession Number\"}], \"content\": \"292221\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/77\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture of a Dragon\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/61\", \"type\": \"HumanMadeObject\", \"_label\": \"Glass Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/33\", \"type\": \"Production\", \"technique\": [{\"id\": \"http://vocab.getty.edu/aat/300053932\", \"type\": \"Type\", \"_label\": \"Glassblowing\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/5\", \"type\": \"Actor\", \"_label\": \"Glassblowing Artist\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/41\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Impressionist Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/3\", \"type\": \"VisualItem\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300021503\", \"type\": \"Type\", \"_label\": \"Impressionism\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300015646\", \"type\": \"Type\", \"_label\": \"Style\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/16\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting: Pasture and Sheep\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/name/11\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404670\", \"type\": \"Type\", \"_label\": \"Primary Name\"}], \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388277\", \"type\": \"Language\", \"_label\": \"English\"}], \"content\": \"Pasture and Sheep\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/6\", \"type\": \"HumanMadeObject\", \"_label\": \"St. Sebastian\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/name/1\", \"type\": \"Name\", \"content\": \"St. Sebastian\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/2\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435429\", \"type\": \"Type\", \"_label\": \"Material Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Oil on canvas\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/2\", \"type\": \"Dimension\", \"_label\": \"Height\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055644\", \"type\": \"Type\", \"_label\": \"Height\"}], \"value\": 153, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379098\", \"type\": \"MeasurementUnit\", \"_label\": \"centimeters\"}}, {\"id\": \"https://linked.art/example/value/3\", \"type\": \"Dimension\", \"_label\": \"Width\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055647\", \"type\": \"Type\", \"_label\": \"Width\"}], \"value\": 118, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379098\", \"type\": \"MeasurementUnit\", \"_label\": \"centimeters\"}}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300015050\", \"type\": \"Material\", \"_label\": \"oil\"}], \"part\": [{\"id\": \"https://linked.art/example/object/7\", \"type\": \"HumanMadeObject\", \"_label\": \"Canvas Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300014844\", \"type\": \"Type\", \"_label\": \"Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300014078\", \"type\": \"Material\", \"_label\": \"canvas\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/56\", \"type\": \"HumanMadeObject\", \"_label\": \"Photograph of Example Artwork\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300128347\", \"type\": \"Type\", \"_label\": \"Color Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"part\": [{\"id\": \"https://linked.art/example/object/57\", \"type\": \"HumanMadeObject\", \"_label\": \"Front of Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300190703\", \"type\": \"Type\", \"_label\": \"Front Part\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/5\", \"type\": \"VisualItem\", \"represents\": [{\"id\": \"https://linked.art/example/object/59\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}]}, {\"id\": \"https://linked.art/example/object/58\", \"type\": \"HumanMadeObject\", \"_label\": \"Back of Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300190692\", \"type\": \"Type\", \"_label\": \"Back Part\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"carries\": [{\"id\": \"https://linked.art/example/text/24\", \"type\": \"LinguisticObject\", \"content\": \"Photograph of Example Painting, taken 1932\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/17\", \"type\": \"HumanMadeObject\", \"_label\": \"Pasture and Sheep\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/6\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312355\", \"type\": \"Type\", \"_label\": \"Accession Number\"}], \"content\": \"P1998-27\"}, {\"id\": \"https://linked.art/example/name/12\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404670\", \"type\": \"Type\", \"_label\": \"Primary Name\"}], \"content\": \"Pasture and Sheep\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/40\", \"type\": \"HumanMadeObject\", \"_label\": \"Portrait of Lord Nelson\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/2\", \"type\": \"VisualItem\", \"about\": [{\"id\": \"http://vocab.getty.edu/aat/300055314\", \"type\": \"Type\", \"_label\": \"War\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/37\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300015045\", \"type\": \"Material\", \"_label\": \"watercolors\"}], \"part\": [{\"id\": \"https://linked.art/example/object/37/part/1\", \"type\": \"HumanMadeObject\", \"_label\": \"Canvas Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300014844\", \"type\": \"Type\", \"_label\": \"Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300014078\", \"type\": \"Material\", \"_label\": \"canvas\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/60\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/32\", \"type\": \"Production\", \"timespan\": {\"id\": \"https://linked.art/example/time/16\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1780-03-05T00:00:00Z\", \"end_of_the_end\": \"1780-03-06T00:00:00Z\"}, \"took_place_at\": [{\"id\": \"https://linked.art/example/place/9\", \"type\": \"Place\", \"_label\": \"Artist's Studio\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/4\", \"type\": \"Actor\", \"_label\": \"Artist\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/76\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"subject_to\": [{\"id\": \"https://linked.art/example/Right/0\", \"type\": \"Right\", \"classified_as\": [{\"id\": \"http://rightsstatements.org/vocab/NKC/1.0/\", \"type\": \"Type\", \"_label\": \"No known copyright\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/102\", \"type\": \"HumanMadeObject\", \"_label\": \"Commissioned Landscape Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/33\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"A commissioned painting by Artist\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/47\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"current_location\": {\"id\": \"https://linked.art/example/place/8\", \"type\": \"Place\", \"_label\": \"Gallery W6\"}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/51\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Green Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/10\", \"type\": \"Dimension\", \"_label\": \"green\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300080438\", \"type\": \"Type\", \"_label\": \"Color\"}, {\"id\": \"http://vocab.getty.edu/aat/300128438\", \"type\": \"Type\", \"_label\": \"Green\"}], \"value\": 65280, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300266239\", \"type\": \"MeasurementUnit\", \"_label\": \"rgb\"}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/0\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/26\", \"type\": \"HumanMadeObject\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"representation\": [{\"id\": \"http://iiif.example.org/image/1\", \"type\": \"VisualItem\", \"_label\": \"IIIF Image API for Sculpture\", \"conforms_to\": [{\"id\": \"http://iiif.io/api/image\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/66\", \"type\": \"HumanMadeObject\", \"_label\": \"Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300046300\", \"type\": \"Type\", \"_label\": \"Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/6\", \"type\": \"VisualItem\", \"_label\": \"Visual Content of Photographs and Negative\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/39\", \"type\": \"Production\", \"_label\": \"Printing of Photograph\", \"used_specific_object\": [{\"id\": \"https://linked.art/example/object/67\", \"type\": \"HumanMadeObject\", \"_label\": \"Negative of Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300127173\", \"type\": \"Type\", \"_label\": \"Photographic Negative\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/6\", \"type\": \"VisualItem\", \"_label\": \"Visual Content of Photographs and Negative\"}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/70\", \"type\": \"HumanMadeObject\", \"_label\": \"Page of Manuscript\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300194222\", \"type\": \"Type\", \"_label\": \"Page\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"removed_by\": [{\"id\": \"https://linked.art/example/PartRemoval/0\", \"type\": \"PartRemoval\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/29\", \"type\": \"Person\", \"_label\": \"Unscrupulous Seller\"}], \"diminished\": [{\"id\": \"https://linked.art/example/object/71\", \"type\": \"HumanMadeObject\", \"_label\": \"Manuscript\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300265483\", \"type\": \"Type\", \"_label\": \"Manuscript\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/27\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"subject_of\": [{\"id\": \"http://iiif.example.org/presentation/1/manifest.json\", \"type\": \"InformationObject\", \"conforms_to\": [{\"id\": \"http://iiif.io/api/presentation\"}], \"format\": \"application/ld+json;profile=\\\"http://iiif.io/api/presentation/2/context.json\\\"\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/1\", \"type\": \"HumanMadeObject\", \"_label\": \"Oak Frame\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404391\", \"type\": \"Type\", \"_label\": \"Frame\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300012264\", \"type\": \"Material\", \"_label\": \"oak\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/50\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"dimension\": [{\"id\": \"https://linked.art/example/value/9\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055644\", \"type\": \"Type\", \"_label\": \"Height\"}], \"value\": 20, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379100\", \"type\": \"MeasurementUnit\", \"_label\": \"inches\"}, \"assigned_by\": [{\"id\": \"https://linked.art/example/activity/31\", \"type\": \"AttributeAssignment\", \"_label\": \"Measurement of Painting\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/24\", \"type\": \"Person\", \"_label\": \"Curator\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/46\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"current_owner\": [{\"id\": \"https://linked.art/example/group/17\", \"type\": \"Group\", \"_label\": \"Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}], \"current_custodian\": [{\"id\": \"https://linked.art/example/group/18\", \"type\": \"Group\", \"_label\": \"Paintings Department\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300263534\", \"type\": \"Type\", \"_label\": \"Department\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/69\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/41\", \"type\": \"Production\", \"assigned_by\": [{\"id\": \"https://linked.art/example/activity/42\", \"type\": \"AttributeAssignment\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404908\", \"type\": \"Type\", \"_label\": \"Obsolete\"}], \"timespan\": {\"id\": \"https://linked.art/example/time/17\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1923-07-20\", \"end_of_the_end\": \"1923-07-21\"}, \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/28\", \"type\": \"Person\", \"_label\": \"Paintings Curator\"}], \"assigned\": {\"id\": \"https://linked.art/example/activity/43\", \"type\": \"Production\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/27\", \"type\": \"Person\", \"_label\": \"J. Artist\"}]}, \"assigned_property\": \"part_of\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/2\", \"type\": \"HumanMadeObject\", \"_label\": \"Black and White Photograph of 'St. Sebastian'\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300128359\", \"type\": \"Type\", \"_label\": \"Black and White Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/28\", \"type\": \"HumanMadeObject\", \"_label\": \"Physical Book\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300028051\", \"type\": \"Type\", \"_label\": \"Book\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"carries\": [{\"id\": \"https://linked.art/example/text/7\", \"type\": \"LinguisticObject\", \"_label\": \"Textual content of the Book\", \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388277\", \"type\": \"Language\", \"_label\": \"English\"}], \"content\": \"Once upon a time, ...\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/53\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Marble Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300011443\", \"type\": \"Material\", \"_label\": \"marble\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/45\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"current_owner\": [{\"id\": \"https://linked.art/example/group/16\", \"type\": \"Group\", \"_label\": \"Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/73\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Destroyed Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"destroyed_by\": {\"id\": \"https://linked.art/example/activity/45\", \"type\": \"Destruction\", \"_label\": \"Destruction of Painting\", \"timespan\": {\"id\": \"https://linked.art/example/time/19\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1823-03-01T00:00:00Z\", \"end_of_the_end\": \"1823-03-31T00:00:00Z\"}, \"caused_by\": [{\"id\": \"https://linked.art/example/activity/46\", \"type\": \"Activity\", \"_label\": \"Burning of the Painting\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/30\", \"type\": \"Person\", \"_label\": \"Painting Burner\"}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/24\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"subject_of\": [{\"id\": \"http://example.org/collection/1/painting\", \"type\": \"LinguisticObject\", \"_label\": \"Homepage for Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300264578\", \"type\": \"Type\", \"_label\": \"Web Page\"}, {\"id\": \"http://vocab.getty.edu/aat/300404670\", \"type\": \"Type\", \"_label\": \"Primary\"}], \"format\": \"text/html\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/49\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/22\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435430\", \"type\": \"Type\", \"_label\": \"Dimension Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"The painting is approximately 16 inches wide, by 20 inches high\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/48\", \"type\": \"HumanMadeObject\", \"_label\": \"Example 16x20 Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/7\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055647\", \"type\": \"Type\", \"_label\": \"Width\"}], \"value\": 16, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379100\", \"type\": \"MeasurementUnit\", \"_label\": \"inches\"}}, {\"id\": \"https://linked.art/example/value/8\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055644\", \"type\": \"Type\", \"_label\": \"Height\"}], \"value\": 20, \"unit\": {\"id\": \"http://vocab.getty.edu/aat/300379100\", \"type\": \"MeasurementUnit\", \"_label\": \"inches\"}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/25\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"http://example.org/journal/article\", \"type\": \"LinguisticObject\", \"_label\": \"Webpage that discusses Painting, but is not its homepage\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300264578\", \"type\": \"Type\", \"_label\": \"Web Page\"}], \"format\": \"text/html\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/72\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Destroyed Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"destroyed_by\": {\"id\": \"https://linked.art/example/activity/44\", \"type\": \"Destruction\", \"_label\": \"Destruction of Painting\", \"timespan\": {\"id\": \"https://linked.art/example/time/18\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1823-03-01T00:00:00Z\", \"end_of_the_end\": \"1823-03-31T00:00:00Z\"}}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/64\", \"type\": \"HumanMadeObject\", \"_label\": \"Copy of Painting of a Fish\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/38\", \"type\": \"Production\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/25\", \"type\": \"Person\", \"_label\": \"Copyist\"}], \"influenced_by\": [{\"id\": \"https://linked.art/example/object/65\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting of a Fish\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\"}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/13\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Object\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/52\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Oval Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}, {\"id\": \"http://vocab.getty.edu/aat/300263817\", \"type\": \"Type\", \"_label\": \"Oval\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300056273\", \"type\": \"Type\", \"_label\": \"Shape\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/68\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting from the workshop of Franckz\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/40\", \"type\": \"Production\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/19\", \"type\": \"Group\", \"_label\": \"Workshop of Franckz\", \"formed_by\": {\"id\": \"https://linked.art/example/Formation/1\", \"type\": \"Formation\", \"influenced_by\": [{\"id\": \"https://linked.art/example/person/26\", \"type\": \"Person\", \"_label\": \"Franckz\"}]}}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/3\", \"type\": \"HumanMadeObject\", \"_label\": \"Black and White Photograph of 'St. Sebastian'\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300128359\", \"type\": \"Type\", \"_label\": \"Black and White Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"member_of\": [{\"id\": \"https://linked.art/example/Set/1\", \"type\": \"Set\", \"_label\": \"Collection of Anderson\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/0\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/0\", \"type\": \"Actor\", \"_label\": \"Anderson\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/63\", \"type\": \"HumanMadeObject\", \"_label\": \"Painted Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300047090\", \"type\": \"Type\", \"_label\": \"Sculpture\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/35\", \"type\": \"Production\", \"part\": [{\"id\": \"https://linked.art/example/activity/36\", \"type\": \"Production\", \"technique\": [{\"id\": \"http://vocab.getty.edu/aat/300264383\", \"type\": \"Type\", \"_label\": \"Sculpting\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/6\", \"type\": \"Actor\", \"_label\": \"Sculptor\"}]}, {\"id\": \"https://linked.art/example/activity/37\", \"type\": \"Production\", \"technique\": [{\"id\": \"http://vocab.getty.edu/aat/300054216\", \"type\": \"Type\", \"_label\": \"Painting\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/7\", \"type\": \"Actor\", \"_label\": \"Painter\"}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/8\", \"type\": \"HumanMadeObject\", \"_label\": \"St. Sebastian\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"member_of\": [{\"id\": \"https://linked.art/example/Set/3\", \"type\": \"Set\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}, {\"id\": \"http://vocab.getty.edu/aat/300411912\", \"type\": \"Type\", \"_label\": \"Public Collection\"}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/1\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/1\", \"type\": \"Group\", \"_label\": \"Galleria Nazionale d'Arte Antica, Palazzo Corsini\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/75\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/26\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435434\", \"type\": \"Type\", \"_label\": \"Copyright/License Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Copyright of this object has not yet been assessed\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/18\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting on Canvas\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/object/18/statement/1\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435429\", \"type\": \"Type\", \"_label\": \"Material Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388277\", \"type\": \"Language\", \"_label\": \"English\"}], \"content\": \"Oil on Canvas\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/38\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/21\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"The Example Painting is a great example of exampleness.\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/4\", \"type\": \"HumanMadeObject\", \"_label\": \"Black and White Photograph of 'St. Sebastian'\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300128359\", \"type\": \"Type\", \"_label\": \"Black and White Photograph\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"member_of\": [{\"id\": \"https://linked.art/example/Set/2\", \"type\": \"Set\", \"_label\": \"Erwin Panofsky Collection\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}]}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/0\", \"type\": \"VisualItem\", \"_label\": \"Image on Photograph\", \"represents\": [{\"id\": \"https://linked.art/example/object/5\", \"type\": \"HumanMadeObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/79\", \"type\": \"HumanMadeObject\", \"_label\": \"Frank Lloyd Wright House\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300004792\", \"type\": \"Type\", \"_label\": \"Building\"}], \"current_location\": {\"id\": \"https://linked.art/example/place/15\", \"type\": \"Place\", \"_label\": \"Current Location in Arkansas at Crystal Bridges\"}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/55\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300015045\", \"type\": \"Material\", \"_label\": \"watercolors\"}], \"part\": [{\"id\": \"https://linked.art/example/object/55/part/1\", \"type\": \"HumanMadeObject\", \"_label\": \"Canvas Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300014844\", \"type\": \"Type\", \"_label\": \"Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300014078\", \"type\": \"Material\", \"_label\": \"canvas\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/14\", \"type\": \"HumanMadeObject\", \"_label\": \"Simple Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\"}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Work of Art\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/43\", \"type\": \"HumanMadeObject\", \"_label\": \"Another Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"related_from_by\": [{\"id\": \"https://linked.art/example/Relationship/0\", \"type\": \"Relationship\", \"_label\": \"Related Example Paintings\", \"relates_to\": {\"id\": \"https://linked.art/example/object/44\", \"type\": \"HumanMadeObject\", \"_label\": \"Yet Another Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\"}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/42\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Allusion Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/4\", \"type\": \"VisualItem\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055815\", \"type\": \"Type\", \"_label\": \"Allusion\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/15\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/54\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Multi-Media Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/23\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435429\", \"type\": \"Type\", \"_label\": \"Material Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Oil, French Watercolors on Paper, Graphite and Ink on Canvas, with an Oak frame\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/78\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/9\", \"type\": \"Identifier\", \"_label\": \"Accession Number for Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312355\", \"type\": \"Type\", \"_label\": \"Accession Number\"}], \"content\": \"X198-093\"}, {\"id\": \"https://linked.art/example/identifier/10\", \"type\": \"Identifier\", \"_label\": \"Local Repository Number\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404621\", \"type\": \"Type\", \"_label\": \"Owner-Assigned Number\"}], \"content\": \"677\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/39\", \"type\": \"HumanMadeObject\", \"_label\": \"Self Portrait\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"shows\": [{\"id\": \"https://linked.art/example/VisualItem/1\", \"type\": \"VisualItem\", \"represents\": [{\"id\": \"https://linked.art/example/actor/3\", \"type\": \"Actor\", \"_label\": \"Artist\"}]}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/30\", \"type\": \"Production\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/actor/3\", \"type\": \"Actor\", \"_label\": \"Artist\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/19\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300015045\", \"type\": \"Material\", \"_label\": \"watercolors\"}], \"part\": [{\"id\": \"https://linked.art/example/object/19/part/1\", \"type\": \"HumanMadeObject\", \"_label\": \"Canvas Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300014844\", \"type\": \"Type\", \"_label\": \"Support\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300241583\", \"type\": \"Type\", \"_label\": \"Part Type\"}]}], \"made_of\": [{\"id\": \"http://vocab.getty.edu/aat/300014078\", \"type\": \"Material\", \"_label\": \"canvas\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/23\", \"type\": \"HumanMadeObject\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/74\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/25\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300026687\", \"type\": \"Type\", \"_label\": \"Credit Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Donation of Ms J. Smith; Example Organization\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/62\", \"type\": \"HumanMadeObject\", \"_label\": \"Graffiti\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"produced_by\": {\"id\": \"https://linked.art/example/activity/34\", \"type\": \"Production\", \"_label\": \"Production of Graffiti\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300055299\", \"type\": \"Type\", \"_label\": \"Vandalism\"}], \"technique\": [{\"id\": \"http://vocab.getty.edu/aat/300053816\", \"type\": \"Type\", \"_label\": \"Spraypainting\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/object/9\", \"type\": \"HumanMadeObject\", \"_label\": \"St. Sebastian\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/3\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435438\", \"type\": \"Type\", \"_label\": \"Provenance Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Cardinal Neri Corsini (1685-1770); Purchased by the Italian government form Prince Tommaso Corsini (1884)\"}, {\"id\": \"https://linked.art/example/text/4\", \"type\": \"LinguisticObject\", \"_label\": \"Vlieghe, CorpRub 8 (1972-73), no.144.\"}], \"carries\": [{\"id\": \"https://linked.art/example/info/0\", \"type\": \"InformationObject\", \"about\": [{\"id\": \"https://linked.art/example/Type/0\", \"type\": \"Type\", \"_label\": \"Religious, Devotional\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/concept/0\", \"type\": \"PropositionalObject\", \"_label\": \"Example Exhibition\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417531\", \"type\": \"Type\", \"_label\": \"Exhibition\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/8\", \"type\": \"Identifier\", \"content\": \"exh-2010-eg-a\"}, {\"id\": \"https://linked.art/example/name/16\", \"type\": \"Name\", \"content\": \"Example Exhibition\"}], \"about\": [{\"id\": \"http://vocab.getty.edu/aat/300233686\", \"type\": \"Type\", \"_label\": \"Gender Issues\"}], \"motivated\": [{\"id\": \"https://linked.art/example/activity/17\", \"type\": \"Activity\", \"_label\": \"Exhibition at Venue\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054766\", \"type\": \"Type\", \"_label\": \"Exhibiting\"}]}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/7\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/22\", \"type\": \"Person\", \"_label\": \"Curator\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/16\", \"type\": \"LinguisticObject\", \"_label\": \"Abstract of Example Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300026032\", \"type\": \"Type\", \"_label\": \"Abstract\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"This is the abstract of the example article, which is excellent.\", \"refers_to\": [{\"id\": \"https://linked.art/example/text/17\", \"type\": \"LinguisticObject\", \"_label\": \"Example Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}]}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/6\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/21\", \"type\": \"Person\", \"_label\": \"Example Abstracter\"}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/10\", \"type\": \"LinguisticObject\", \"_label\": \"Example Monograph Text\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300060417\", \"type\": \"Type\", \"_label\": \"Monograph\"}], \"part\": [{\"id\": \"https://linked.art/example/text/11\", \"type\": \"LinguisticObject\", \"_label\": \"Chapter 1\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300311699\", \"type\": \"Type\", \"_label\": \"Chapter\"}]}, {\"id\": \"https://linked.art/example/text/12\", \"type\": \"LinguisticObject\", \"_label\": \"Chapter 2\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300311699\", \"type\": \"Type\", \"_label\": \"Chapter\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/0\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435430\", \"type\": \"Type\", \"_label\": \"Dimension Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Example painting is 24 inches wide by 36 1/2 inches tall\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/1\", \"type\": \"LinguisticObject\", \"_label\": \"Example Auction Catalog\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300026068\", \"type\": \"Type\", \"_label\": \"Auction Catalog\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/28\", \"type\": \"LinguisticObject\", \"_label\": \"Auction Catalog of Example Auction\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300026068\", \"type\": \"Type\", \"_label\": \"Auction Catalog\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}], \"part\": [{\"id\": \"https://linked.art/example/text/29\", \"type\": \"LinguisticObject\", \"_label\": \"Entry for Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417223\", \"type\": \"Type\", \"_label\": \"Paragraph\"}], \"refers_to\": [{\"id\": \"https://linked.art/example/activity/74\", \"type\": \"Activity\", \"_label\": \"Auction of Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300420001\", \"type\": \"Type\", \"_label\": \"Auction of Lot\"}]}, {\"id\": \"https://linked.art/example/Set/17\", \"type\": \"Set\", \"_label\": \"Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411307\", \"type\": \"Type\", \"_label\": \"Auction Lot\"}]}]}], \"refers_to\": [{\"id\": \"https://linked.art/example/activity/73\", \"type\": \"Activity\", \"_label\": \"Example Auction, 1924\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054751\", \"type\": \"Type\", \"_label\": \"Auction Event\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/13\", \"type\": \"LinguisticObject\", \"_label\": \"Example 10 page Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/14\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435440\", \"type\": \"Type\", \"_label\": \"Pagination Statement\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"125-135\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/8\", \"type\": \"LinguisticObject\", \"_label\": \"Example Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/name/15\", \"type\": \"Name\", \"content\": \"Title of Article\"}, {\"id\": \"https://linked.art/example/identifier/7\", \"type\": \"Identifier\", \"_label\": \"DOI of Article\", \"content\": \"10.1000/1011\"}], \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388277\", \"type\": \"Language\", \"_label\": \"English\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/18\", \"type\": \"LinguisticObject\", \"_label\": \"Article about Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"refers_to\": [{\"id\": \"https://linked.art/example/object/29\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}, {\"id\": \"http://vocab.getty.edu/aat/300133025\", \"type\": \"Type\", \"_label\": \"Artwork\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/15\", \"type\": \"LinguisticObject\", \"_label\": \"Example 10 page Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"dimension\": [{\"id\": \"https://linked.art/example/value/5\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404050\", \"type\": \"Type\", \"_label\": \"First\"}], \"value\": 125, \"unit\": {\"id\": \"https://linked.art/example/MeasurementUnit/0\", \"type\": \"MeasurementUnit\", \"_label\": \"Page Numbers\"}}, {\"id\": \"https://linked.art/example/value/6\", \"type\": \"Dimension\", \"classified_as\": [{\"id\": \"https://linked.art/example/Type/1\", \"type\": \"Type\", \"_label\": \"Last -- waiting for AAT id\"}], \"value\": 135, \"unit\": {\"id\": \"https://linked.art/example/MeasurementUnit/0\", \"type\": \"MeasurementUnit\", \"_label\": \"Page Numbers\"}}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/19\", \"type\": \"LinguisticObject\", \"_label\": \"The Birth of Artistic Conception in China\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388277\", \"type\": \"Language\", \"_label\": \"English\"}], \"translation_of\": [{\"id\": \"https://linked.art/example/text/20\", \"type\": \"LinguisticObject\", \"_label\": \"Zhongguo yishu yijing zhi dansheng\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"language\": [{\"id\": \"http://vocab.getty.edu/aat/300388113\", \"type\": \"Language\", \"_label\": \"Chinese\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/text/9\", \"type\": \"LinguisticObject\", \"_label\": \"Example Journal Article\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300048715\", \"type\": \"Type\", \"_label\": \"Article\"}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/5\", \"type\": \"Creation\", \"_label\": \"Creation of the Article Content\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/person/20\", \"type\": \"Person\", \"_label\": \"Author\"}]}, \"used_for\": [{\"id\": \"https://linked.art/example/activity/16\", \"type\": \"Activity\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300054686\", \"type\": \"Type\", \"_label\": \"Publishing\"}], \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/11\", \"type\": \"Group\", \"_label\": \"Publishing House\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/6\", \"type\": \"Set\", \"_label\": \"Collection of Example Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}], \"member\": [{\"id\": \"https://linked.art/example/object/21\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/3\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/8\", \"type\": \"Group\", \"_label\": \"Example Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/7\", \"type\": \"Set\", \"_label\": \"Collection of Example Museum's Paintings Department\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}], \"member\": [{\"id\": \"https://linked.art/example/object/22\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/4\", \"type\": \"Creation\", \"carried_out_by\": [{\"id\": \"https://linked.art/example/group/10\", \"type\": \"Group\", \"_label\": \"Paintings Department\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300263534\", \"type\": \"Type\", \"_label\": \"Department\"}], \"member_of\": [{\"id\": \"https://linked.art/example/group/9\", \"type\": \"Group\", \"_label\": \"Example Museum\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300312281\", \"type\": \"Type\", \"_label\": \"Museum\"}]}]}]}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/0\", \"type\": \"Set\", \"_label\": \"Set of Objects in an Auction Lot\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411307\", \"type\": \"Type\", \"_label\": \"Auction Lot\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/14\", \"type\": \"Set\", \"_label\": \"Set of Objects for Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411307\", \"type\": \"Type\", \"_label\": \"Auction Lot\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/identifier/11\", \"type\": \"Identifier\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404628\", \"type\": \"Type\", \"_label\": \"Lot Number\"}], \"content\": \"812\"}, {\"id\": \"https://linked.art/example/name/19\", \"type\": \"Name\", \"content\": \"One Example Painting\"}], \"member\": [{\"id\": \"https://linked.art/example/object/85\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/15\", \"type\": \"Set\", \"_label\": \"Set of Objects for Lot 812\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411307\", \"type\": \"Type\", \"_label\": \"Auction Lot\"}], \"dimension\": [{\"id\": \"https://linked.art/example/money/4\", \"type\": \"MonetaryAmount\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417242\", \"type\": \"Type\", \"_label\": \"Starting Price\"}], \"value\": 500, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, {\"id\": \"https://linked.art/example/money/5\", \"type\": \"MonetaryAmount\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417244\", \"type\": \"Type\", \"_label\": \"Estimated Price\"}], \"value\": 4000, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}, {\"id\": \"https://linked.art/example/money/6\", \"type\": \"MonetaryAmount\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300417243\", \"type\": \"Type\", \"_label\": \"Reserve Price\"}], \"value\": 3000, \"currency\": {\"id\": \"http://vocab.getty.edu/aat/300411994\", \"type\": \"Currency\", \"_label\": \"US Dollars\"}}], \"member\": [{\"id\": \"https://linked.art/example/object/86\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/Set/5\", \"type\": \"Set\", \"_label\": \"Example Collection\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300025976\", \"type\": \"Type\", \"_label\": \"Collection\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/name/14\", \"type\": \"Name\", \"content\": \"Example Collection\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/6\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"This is a lovely little collection\"}], \"member\": [{\"id\": \"https://linked.art/example/object/20\", \"type\": \"HumanMadeObject\", \"_label\": \"Example Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300033618\", \"type\": \"Type\", \"_label\": \"Painting\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300435443\", \"type\": \"Type\", \"_label\": \"Type of Work\"}]}]}], \"created_by\": {\"id\": \"https://linked.art/example/Creation/2\", \"type\": \"Creation\", \"timespan\": {\"id\": \"https://linked.art/example/time/11\", \"type\": \"TimeSpan\", \"begin_of_the_begin\": \"1954-01-01\", \"end_of_the_end\": \"1955-01-01\"}}}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/place/10\", \"type\": \"Place\", \"_label\": \"Los Angeles, CA\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300008389\", \"type\": \"Type\", \"_label\": \"City\"}], \"identified_by\": [{\"id\": \"https://linked.art/example/name/18\", \"type\": \"Name\", \"content\": \"Los Angeles\"}], \"referred_to_by\": [{\"id\": \"https://linked.art/example/text/27\", \"type\": \"LinguisticObject\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300411780\", \"type\": \"Type\", \"_label\": \"Description\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300418049\", \"type\": \"Type\", \"_label\": \"Brief Text\"}]}], \"content\": \"Los Angeles is a city in California, USA.\"}], \"part_of\": [{\"id\": \"https://linked.art/example/place/11\", \"type\": \"Place\", \"_label\": \"California\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300000774\", \"type\": \"Type\", \"_label\": \"Province\"}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/place/0\", \"type\": \"Place\", \"_label\": \"Example Museum Site\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300005768\", \"type\": \"Type\", \"_label\": \"Museum (place)\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/place/12\", \"type\": \"Place\", \"_label\": \"New Zealand\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300128207\", \"type\": \"Type\", \"_label\": \"Nation\"}], \"defined_by\": \"POLYGON((165.74 -33.55, -179.96 -33.55, -179.96 -47.8, 165.74 -47.8, 165.74 -33.55))\"}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/place/13\", \"type\": \"Place\", \"_label\": \"True Auction House Location\", \"approximated_by\": [{\"id\": \"https://linked.art/example/place/14\", \"type\": \"Place\", \"_label\": \"Auction House Location Approximation\", \"defined_by\": \"POINT(-0.0032937526703165 51.515107154846)\"}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/place/4\", \"type\": \"Place\", \"_label\": \"Rome\", \"part_of\": [{\"id\": \"https://linked.art/example/place/3\", \"type\": \"Place\", \"_label\": \"Roma\", \"part_of\": [{\"id\": \"https://linked.art/example/place/2\", \"type\": \"Place\", \"_label\": \"Lazio\", \"part_of\": [{\"id\": \"https://linked.art/example/place/1\", \"type\": \"Place\", \"_label\": \"Italy\"}]}]}]}, {\"@context\": \"https://linked.art/ns/v1/linked-art.json\", \"id\": \"https://linked.art/example/name/0\", \"type\": \"Name\", \"classified_as\": [{\"id\": \"http://vocab.getty.edu/aat/300404651\", \"type\": \"Type\", \"_label\": \"Given Name\"}], \"content\": \"Example\"}]"
  },
  {
    "path": "profiler/linked-art.json",
    "content": "{\n  \"@context\": {\n    \"@version\": 1.1, \n    \"crm\": \"http://www.cidoc-crm.org/cidoc-crm/\", \n    \"sci\": \"http://www.ics.forth.gr/isl/CRMsci/\", \n    \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\", \n    \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\", \n    \"dc\": \"http://purl.org/dc/elements/1.1/\", \n    \"dcterms\": \"http://purl.org/dc/terms/\", \n    \"schema\": \"http://schema.org/\", \n    \"skos\": \"http://www.w3.org/2004/02/skos/core#\", \n    \"foaf\": \"http://xmlns.com/foaf/0.1/\", \n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\", \n    \"dig\": \"http://www.ics.forth.gr/isl/CRMdig/\", \n    \"la\": \"https://linked.art/ns/terms/\", \n    \"id\": \"@id\", \n    \"type\": \"@type\", \n    \"CRMEntity\": {\n      \"@id\": \"crm:E1_CRM_Entity\"\n    }, \n    \"TemporalEntity\": {\n      \"@id\": \"crm:E2_Temporal_Entity\"\n    }, \n    \"ConditionState\": {\n      \"@id\": \"crm:E3_Condition_State\"\n    }, \n    \"Period\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E4_Period\"\n    }, \n    \"Event\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E5_Event\"\n    }, \n    \"Destruction\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E6_Destruction\"\n    }, \n    \"Activity\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E7_Activity\"\n    }, \n    \"Acquisition\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E8_Acquisition\"\n    }, \n    \"Move\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E9_Move\"\n    }, \n    \"TransferOfCustody\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E10_Transfer_of_Custody\"\n    }, \n    \"Modification\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E11_Modification\"\n    }, \n    \"Production\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E12_Production\"\n    }, \n    \"AttributeAssignment\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E13_Attribute_Assignment\"\n    }, \n    \"ConditionAssessment\": {\n      \"@id\": \"crm:E14_Condition_Assessment\"\n    }, \n    \"IdentifierAssignment\": {\n      \"@id\": \"crm:E15_Identifier_Assignment\"\n    }, \n    \"Measurement\": {\n      \"@id\": \"crm:E16_Measurement\"\n    }, \n    \"TypeAssignment\": {\n      \"@id\": \"crm:E17_Type_Assignment\"\n    }, \n    \"PhysicalThing\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E18_Physical_Thing\"\n    }, \n    \"PhysicalObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E19_Physical_Object\"\n    }, \n    \"BiologicalObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E20_Biological_Object\"\n    }, \n    \"Person\": {\n      \"@id\": \"crm:E21_Person\"\n    }, \n    \"HumanMadeObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E22_Human-Made_Object\"\n    }, \n    \"PhysicalHumanMadeThing\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E24_Physical_Human-Made_Thing\"\n    }, \n    \"HumanMadeFeature\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E25_Human-Made_Feature\"\n    }, \n    \"PhysicalFeature\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E26_Physical_Feature\"\n    }, \n    \"Site\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P46i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P46_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E27_Site\"\n    }, \n    \"ConceptualObject\": {\n      \"@id\": \"crm:E28_Conceptual_Object\"\n    }, \n    \"DesignOrProcedure\": {\n      \"@id\": \"crm:E29_Design_or_Procedure\"\n    }, \n    \"Right\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P148i_is_component_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P148_has_component\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E30_Right\"\n    }, \n    \"Document\": {\n      \"@id\": \"crm:E31_Document\"\n    }, \n    \"AuthorityDocument\": {\n      \"@id\": \"crm:E32_Authority_Document\"\n    }, \n    \"LinguisticObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E33_Linguistic_Object\"\n    }, \n    \"Inscription\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E34_Inscription\"\n    }, \n    \"Title\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E35_Title\"\n    }, \n    \"VisualItem\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E36_Visual_Item\"\n    }, \n    \"Mark\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E37_Mark\"\n    }, \n    \"Actor\": {\n      \"@id\": \"crm:E39_Actor\"\n    }, \n    \"Appellation\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E41_Appellation\"\n    }, \n    \"Identifier\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E42_Identifier\"\n    }, \n    \"TimeSpan\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P86_falls_within\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P86i_contains\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E52_Time-Span\"\n    }, \n    \"Place\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P89_falls_within\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P89i_contains\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E53_Place\"\n    }, \n    \"Dimension\": {\n      \"@id\": \"crm:E54_Dimension\"\n    }, \n    \"Type\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"skos:broader\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"skos:narrower\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E55_Type\"\n    }, \n    \"Language\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"skos:broader\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"skos:narrower\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E56_Language\"\n    }, \n    \"Material\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"skos:broader\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"skos:narrower\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E57_Material\"\n    }, \n    \"MeasurementUnit\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"skos:broader\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"skos:narrower\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E58_Measurement_Unit\"\n    }, \n    \"BeginningOfExistence\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E63_Beginning_of_Existence\"\n    }, \n    \"EndOfExistence\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E64_End_of_Existence\"\n    }, \n    \"Creation\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E65_Creation\"\n    }, \n    \"Formation\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E66_Formation\"\n    }, \n    \"Birth\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E67_Birth\"\n    }, \n    \"Dissolution\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E68_Dissolution\"\n    }, \n    \"Death\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E69_Death\"\n    }, \n    \"Thing\": {\n      \"@id\": \"crm:E70_Thing\"\n    }, \n    \"HumanMadeThing\": {\n      \"@id\": \"crm:E71_Human-Made_Thing\"\n    }, \n    \"LegalObject\": {\n      \"@id\": \"crm:E72_Legal_Object\"\n    }, \n    \"InformationObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E73_Information_Object\"\n    }, \n    \"Group\": {\n      \"@context\": {\n        \"member\": {\n          \"@id\": \"crm:P107_has_current_or_former_member\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"crm:P107i_is_current_or_former_member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E74_Group\"\n    }, \n    \"PersistentItem\": {\n      \"@id\": \"crm:E77_Persistent_Item\"\n    }, \n    \"CuratedHolding\": {\n      \"@id\": \"crm:E78_Curated_Holding\"\n    }, \n    \"PartAddition\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E79_Part_Addition\"\n    }, \n    \"PartRemoval\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E80_Part_Removal\"\n    }, \n    \"Transformation\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E81_Transformation\"\n    }, \n    \"TypeCreation\": {\n      \"@id\": \"crm:E83_Type_Creation\"\n    }, \n    \"Joining\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E85_Joining\"\n    }, \n    \"Leaving\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E86_Leaving\"\n    }, \n    \"CurationActivity\": {\n      \"@id\": \"crm:E87_Curation_Activity\"\n    }, \n    \"PropositionalObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P148i_is_component_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P148_has_component\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E89_Propositional_Object\"\n    }, \n    \"SymbolicObject\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E90_Symbolic_Object\"\n    }, \n    \"SpacetimeVolume\": {\n      \"@id\": \"crm:E92_Spacetime_Volume\"\n    }, \n    \"Presence\": {\n      \"@id\": \"crm:E93_Presence\"\n    }, \n    \"Purchase\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E96_Purchase\"\n    }, \n    \"MonetaryAmount\": {\n      \"@id\": \"crm:E97_Monetary_Amount\"\n    }, \n    \"Currency\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"skos:broader\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"skos:narrower\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E98_Currency\"\n    }, \n    \"ProductType\": {\n      \"@id\": \"crm:E99_Product_Type\"\n    }, \n    \"Name\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P106i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P106_is_composed_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"crm:E33_E41_Linguistic_Appellation\"\n    }, \n    \"identified_by\": {\n      \"@id\": \"crm:P1_is_identified_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"identifies\": {\n      \"@id\": \"crm:P1i_identifies\", \n      \"@type\": \"@id\"\n    }, \n    \"classified_as\": {\n      \"@id\": \"crm:P2_has_type\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"type_of\": {\n      \"@id\": \"crm:P2i_is_type_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"note\": {\n      \"@id\": \"crm:P3_has_note\"\n    }, \n    \"timespan\": {\n      \"@id\": \"crm:P4_has_time-span\", \n      \"@type\": \"@id\"\n    }, \n    \"timespan_of\": {\n      \"@id\": \"crm:P4i_is_time-span_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"subState\": {\n      \"@id\": \"crm:P5_consists_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"subState_of\": {\n      \"@id\": \"crm:P5i_forms_part_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"took_place_at\": {\n      \"@id\": \"crm:P7_took_place_at\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"location_of\": {\n      \"@id\": \"crm:P7i_witnessed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"took_place_on_or_within\": {\n      \"@id\": \"crm:P8_took_place_on_or_within\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"witnessed\": {\n      \"@id\": \"crm:P8i_witnessed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"falls_within\": {\n      \"@id\": \"crm:P10_falls_within\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"contains\": {\n      \"@id\": \"crm:P10i_contains\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"participant\": {\n      \"@id\": \"crm:P11_had_participant\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"participated_in\": {\n      \"@id\": \"crm:P11i_participated_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"involved\": {\n      \"@id\": \"crm:P12_occurred_in_the_presence_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"present_at\": {\n      \"@id\": \"crm:P12i_was_present_at\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"destroyed\": {\n      \"@id\": \"crm:P13_destroyed\", \n      \"@type\": \"@id\"\n    }, \n    \"destroyed_by\": {\n      \"@id\": \"crm:P13i_was_destroyed_by\", \n      \"@type\": \"@id\"\n    }, \n    \"carried_out_by\": {\n      \"@id\": \"crm:P14_carried_out_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"carried_out\": {\n      \"@id\": \"crm:P14i_performed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"influenced_by\": {\n      \"@id\": \"crm:P15_was_influenced_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"influenced\": {\n      \"@id\": \"crm:P15i_influenced\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_specific_object\": {\n      \"@id\": \"crm:P16_used_specific_object\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_for\": {\n      \"@id\": \"crm:P16i_was_used_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"motivated_by\": {\n      \"@id\": \"crm:P17_was_motivated_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"motivated\": {\n      \"@id\": \"crm:P17i_motivated\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"intended_use_of\": {\n      \"@id\": \"crm:P19_was_intended_use_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"made_for\": {\n      \"@id\": \"crm:P19i_was_made_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"specific_purpose\": {\n      \"@id\": \"crm:P20_had_specific_purpose\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"specific_purpose_of\": {\n      \"@id\": \"crm:P20i_was_purpose_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"general_purpose\": {\n      \"@id\": \"crm:P21_had_general_purpose\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"purpose_of\": {\n      \"@id\": \"crm:P21i_was_purpose_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_title_to\": {\n      \"@id\": \"crm:P22_transferred_title_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"acquired_title_through\": {\n      \"@id\": \"crm:P22i_acquired_title_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_title_from\": {\n      \"@id\": \"crm:P23_transferred_title_from\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"surrendered_title_through\": {\n      \"@id\": \"crm:P23i_surrendered_title_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_title_of\": {\n      \"@id\": \"crm:P24_transferred_title_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"changed_ownership_through\": {\n      \"@id\": \"crm:P24i_changed_ownership_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"moved\": {\n      \"@id\": \"crm:P25_moved\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"moved_by\": {\n      \"@id\": \"crm:P25i_moved_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"moved_to\": {\n      \"@id\": \"crm:P26_moved_to\", \n      \"@type\": \"@id\"\n    }, \n    \"destination_of\": {\n      \"@id\": \"crm:P26i_was_destination_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"moved_from\": {\n      \"@id\": \"crm:P27_moved_from\", \n      \"@type\": \"@id\"\n    }, \n    \"origin_of\": {\n      \"@id\": \"crm:P27i_was_origin_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_custody_from\": {\n      \"@id\": \"crm:P28_custody_surrendered_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"surrendered_custody_through\": {\n      \"@id\": \"crm:P28i_surrendered_custody_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_custody_to\": {\n      \"@id\": \"crm:P29_custody_received_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"acquired_custody_through\": {\n      \"@id\": \"crm:P29i_received_custody_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transferred_custody_of\": {\n      \"@id\": \"crm:P30_transferred_custody_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"custody_transferred_through\": {\n      \"@id\": \"crm:P30i_custody_transferred_through\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"modified\": {\n      \"@id\": \"crm:P31_has_modified\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"modified_by\": {\n      \"@id\": \"crm:P31i_was_modified_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"technique\": {\n      \"@id\": \"crm:P32_used_general_technique\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"technique_of\": {\n      \"@id\": \"crm:P32i_was_technique_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"specific_technique\": {\n      \"@id\": \"crm:P33_used_specific_technique\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_by\": {\n      \"@id\": \"crm:P33i_was_used_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"concerned\": {\n      \"@id\": \"crm:P34_concerned\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"assessed_by\": {\n      \"@id\": \"crm:P34i_was_assessed_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"identified\": {\n      \"@id\": \"crm:P35_has_identified\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"condition_identified_by\": {\n      \"@id\": \"crm:P35i_was_identified_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"assigned_identifier\": {\n      \"@id\": \"crm:P37_assigned\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"identifier_assigned_by\": {\n      \"@id\": \"crm:P37i_was_assigned_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"deassigned\": {\n      \"@id\": \"crm:P38_deassigned\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"deassigned_by\": {\n      \"@id\": \"crm:P38i_was_deassigned_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"measured\": {\n      \"@id\": \"crm:P39_measured\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"measured_by\": {\n      \"@id\": \"crm:P39i_was_measured_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"observed_dimension\": {\n      \"@id\": \"crm:P40_observed_dimension\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"observed_in\": {\n      \"@id\": \"crm:P40i_was_observed_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"classified\": {\n      \"@id\": \"crm:P41_classified\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"classified_by\": {\n      \"@id\": \"crm:P41i_was_classified_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"assigned_type\": {\n      \"@id\": \"crm:P42_assigned\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"type_assigned_by\": {\n      \"@id\": \"crm:P42i_was_assigned_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"dimension\": {\n      \"@id\": \"crm:P43_has_dimension\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"dimension_of\": {\n      \"@id\": \"crm:P43i_is_dimension_of\", \n      \"@type\": \"@id\"\n    }, \n    \"condition\": {\n      \"@id\": \"crm:P44_has_condition\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"condition_of\": {\n      \"@id\": \"crm:P44i_is_condition_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"made_of\": {\n      \"@id\": \"crm:P45_consists_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"incorporated_in\": {\n      \"@id\": \"crm:P45i_is_incorporated_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"preferred_identifier\": {\n      \"@id\": \"crm:P48_has_preferred_identifier\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"preferred_identifier_of\": {\n      \"@id\": \"crm:P48i_is_preferred_identifier_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_keeper\": {\n      \"@id\": \"crm:P49_has_former_or_current_keeper\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_keeper_of\": {\n      \"@id\": \"crm:P49i_is_former_or_current_keeper_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_custodian\": {\n      \"@id\": \"crm:P50_has_current_keeper\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_custodian_of\": {\n      \"@id\": \"crm:P50i_is_current_keeper_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_owner\": {\n      \"@id\": \"crm:P51_has_former_or_current_owner\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_owner_of\": {\n      \"@id\": \"crm:P51i_is_former_or_current_owner_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_owner\": {\n      \"@id\": \"crm:P52_has_current_owner\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_owner_of\": {\n      \"@id\": \"crm:P52i_is_current_owner_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_location\": {\n      \"@id\": \"crm:P53_has_former_or_current_location\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"former_or_current_location_of\": {\n      \"@id\": \"crm:P53i_is_former_or_current_location_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_permanent_location\": {\n      \"@id\": \"crm:P54_has_current_permanent_location\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_permanent_location_of\": {\n      \"@id\": \"crm:P54i_is_current_permanent_location_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_location\": {\n      \"@id\": \"crm:P55_has_current_location\", \n      \"@type\": \"@id\"\n    }, \n    \"currently_holds\": {\n      \"@id\": \"crm:P55i_currently_holds\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"bears\": {\n      \"@id\": \"crm:P56_bears_feature\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"found_on\": {\n      \"@id\": \"crm:P56i_is_found_on\", \n      \"@type\": \"@id\"\n    }, \n    \"number_of_parts\": {\n      \"@id\": \"crm:P57_has_number_of_parts\"\n    }, \n    \"section_definition\": {\n      \"@id\": \"crm:P58_has_section_definition\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"defines_section\": {\n      \"@id\": \"crm:P58i_defines_section\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"section\": {\n      \"@id\": \"crm:P59_has_section\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"located_on_or_within\": {\n      \"@id\": \"crm:P59i_is_located_on_or_within\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"depicts\": {\n      \"@id\": \"crm:P62_depicts\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"depicted_by\": {\n      \"@id\": \"crm:P62i_is_depicted_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"shows\": {\n      \"@id\": \"crm:P65_shows_visual_item\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"shown_by\": {\n      \"@id\": \"crm:P65i_is_shown_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"refers_to\": {\n      \"@id\": \"crm:P67_refers_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"referred_to_by\": {\n      \"@id\": \"crm:P67i_is_referred_to_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"foresees_use_of\": {\n      \"@id\": \"crm:P68_foresees_use_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"use_foreseen_by\": {\n      \"@id\": \"crm:P68i_use_foreseen_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"associated_with\": {\n      \"@id\": \"crm:P69_is_associated_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"documents\": {\n      \"@id\": \"crm:P70_documents\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"documented_in\": {\n      \"@id\": \"crm:P70i_is_documented_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"lists\": {\n      \"@id\": \"crm:P71_lists\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"listed_in\": {\n      \"@id\": \"crm:P71i_is_listed_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"language\": {\n      \"@id\": \"crm:P72_has_language\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"language_of\": {\n      \"@id\": \"crm:P72i_is_language_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"translation\": {\n      \"@id\": \"crm:P73_has_translation\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"translation_of\": {\n      \"@id\": \"crm:P73i_is_translation_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"residence\": {\n      \"@id\": \"crm:P74_has_current_or_former_residence\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_or_former_residence_of\": {\n      \"@id\": \"crm:P74i_is_current_or_former_residence_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"possesses\": {\n      \"@id\": \"crm:P75_possesses\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"possessed_by\": {\n      \"@id\": \"crm:P75i_is_possessed_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"contact_point\": {\n      \"@id\": \"crm:P76_has_contact_point\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"provides_access_to\": {\n      \"@id\": \"crm:P76i_provides_access_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"beginning_is_qualified_by\": {\n      \"@id\": \"crm:P79_beginning_is_qualified_by\"\n    }, \n    \"end_is_qualified_by\": {\n      \"@id\": \"crm:P80_end_is_qualified_by\"\n    }, \n    \"ongoing_throughout\": {\n      \"@id\": \"crm:P81_ongoing_throughout\"\n    }, \n    \"at_some_time_within\": {\n      \"@id\": \"crm:P82_at_some_time_within\"\n    }, \n    \"value\": {\n      \"@id\": \"crm:P90_has_value\"\n    }, \n    \"unit\": {\n      \"@id\": \"crm:P91_has_unit\", \n      \"@type\": \"@id\"\n    }, \n    \"unit_of\": {\n      \"@id\": \"crm:P91i_is_unit_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"brought_into_existence\": {\n      \"@id\": \"crm:P92_brought_into_existence\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"brought_into_existence_by\": {\n      \"@id\": \"crm:P92i_was_brought_into_existence_by\", \n      \"@type\": \"@id\"\n    }, \n    \"took_out_of_existence\": {\n      \"@id\": \"crm:P93_took_out_of_existence\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"taken_out_of_existence_by\": {\n      \"@id\": \"crm:P93i_was_taken_out_of_existence_by\", \n      \"@type\": \"@id\"\n    }, \n    \"created\": {\n      \"@id\": \"crm:P94_has_created\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"created_by\": {\n      \"@id\": \"crm:P94i_was_created_by\", \n      \"@type\": \"@id\"\n    }, \n    \"formed\": {\n      \"@id\": \"crm:P95_has_formed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"formed_by\": {\n      \"@id\": \"crm:P95i_was_formed_by\", \n      \"@type\": \"@id\"\n    }, \n    \"by_mother\": {\n      \"@id\": \"crm:P96_by_mother\", \n      \"@type\": \"@id\"\n    }, \n    \"gave_birth\": {\n      \"@id\": \"crm:P96i_gave_birth\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"from_father\": {\n      \"@id\": \"crm:P97_from_father\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"father_for\": {\n      \"@id\": \"crm:P97i_was_father_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"brought_into_life\": {\n      \"@id\": \"crm:P98_brought_into_life\", \n      \"@type\": \"@id\"\n    }, \n    \"born\": {\n      \"@id\": \"crm:P98i_was_born\", \n      \"@type\": \"@id\"\n    }, \n    \"dissolved\": {\n      \"@id\": \"crm:P99_dissolved\", \n      \"@type\": \"@id\"\n    }, \n    \"dissolved_by\": {\n      \"@id\": \"crm:P99i_was_dissolved_by\", \n      \"@type\": \"@id\"\n    }, \n    \"death_of\": {\n      \"@id\": \"crm:P100_was_death_of\", \n      \"@type\": \"@id\"\n    }, \n    \"died\": {\n      \"@id\": \"crm:P100i_died_in\", \n      \"@type\": \"@id\"\n    }, \n    \"general_use\": {\n      \"@id\": \"crm:P101_had_as_general_use\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"use_of\": {\n      \"@id\": \"crm:P101i_was_use_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"title\": {\n      \"@id\": \"crm:P102_has_title\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"title_of\": {\n      \"@id\": \"crm:P102i_is_title_of\", \n      \"@type\": \"@id\"\n    }, \n    \"intended_for\": {\n      \"@id\": \"crm:P103_was_intended_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"intention_of\": {\n      \"@id\": \"crm:P103i_was_intention_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"subject_to\": {\n      \"@id\": \"crm:P104_is_subject_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"applies_to\": {\n      \"@id\": \"crm:P104i_applies_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"right_held_by\": {\n      \"@id\": \"crm:P105_right_held_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"right_on\": {\n      \"@id\": \"crm:P105i_has_right_on\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"produced\": {\n      \"@id\": \"crm:P108_has_produced\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"produced_by\": {\n      \"@id\": \"crm:P108i_was_produced_by\", \n      \"@type\": \"@id\"\n    }, \n    \"current_or_former_curator\": {\n      \"@id\": \"crm:P109_has_current_or_former_curator\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_or_former_curator_of\": {\n      \"@id\": \"crm:P109i_is_current_or_former_curator_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"augmented\": {\n      \"@id\": \"crm:P110_augmented\", \n      \"@type\": \"@id\"\n    }, \n    \"augmented_by\": {\n      \"@id\": \"crm:P110i_was_augmented_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"added\": {\n      \"@id\": \"crm:P111_added\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"added_by\": {\n      \"@id\": \"crm:P111i_was_added_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"diminished\": {\n      \"@id\": \"crm:P112_diminished\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"diminished_by\": {\n      \"@id\": \"crm:P112i_was_diminished_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"removed\": {\n      \"@id\": \"crm:P113_removed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"removed_by\": {\n      \"@id\": \"crm:P113i_was_removed_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"equal_in_time_to\": {\n      \"@id\": \"crm:P114_is_equal_in_time_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"finishes\": {\n      \"@id\": \"crm:P115_finishes\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"finished_by\": {\n      \"@id\": \"crm:P115i_is_finished_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"starts\": {\n      \"@id\": \"crm:P116_starts\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"started_by\": {\n      \"@id\": \"crm:P116i_is_started_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"occurs_during\": {\n      \"@id\": \"crm:P117_occurs_during\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"includes\": {\n      \"@id\": \"crm:P117i_includes\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"overlaps_in_time_with\": {\n      \"@id\": \"crm:P118_overlaps_in_time_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"overlapped_in_time_by\": {\n      \"@id\": \"crm:P118i_is_overlapped_in_time_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"meets_in_time_with\": {\n      \"@id\": \"crm:P119_meets_in_time_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"met_in_time_by\": {\n      \"@id\": \"crm:P119i_is_met_in_time_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"occurs_before\": {\n      \"@id\": \"crm:P120_occurs_before\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"occurs_after\": {\n      \"@id\": \"crm:P120i_occurs_after\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"overlaps_with\": {\n      \"@id\": \"crm:P121_overlaps_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"borders_with\": {\n      \"@id\": \"crm:P122_borders_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"resulted_in\": {\n      \"@id\": \"crm:P123_resulted_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"resulted_from\": {\n      \"@id\": \"crm:P123i_resulted_from\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transformed\": {\n      \"@id\": \"crm:P124_transformed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"transformed_by\": {\n      \"@id\": \"crm:P124i_was_transformed_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_object_of_type\": {\n      \"@id\": \"crm:P125_used_object_of_type\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"type_of_object_used_in\": {\n      \"@id\": \"crm:P125i_was_type_of_object_used_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"employed\": {\n      \"@id\": \"crm:P126_employed\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"employed_in\": {\n      \"@id\": \"crm:P126i_was_employed_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"carries\": {\n      \"@id\": \"crm:P128_carries\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"carried_by\": {\n      \"@id\": \"crm:P128i_is_carried_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"about\": {\n      \"@id\": \"crm:P129_is_about\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"subject_of\": {\n      \"@id\": \"crm:P129i_is_subject_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"shows_features_of\": {\n      \"@id\": \"crm:P130_shows_features_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"features_are_also_found_on\": {\n      \"@id\": \"crm:P130i_features_are_also_found_on\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"volume_overlaps_with\": {\n      \"@id\": \"crm:P132_overlaps_with\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"distinct_from\": {\n      \"@id\": \"crm:P133_is_separated_from\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"continued\": {\n      \"@id\": \"crm:P134_continued\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"continued_by\": {\n      \"@id\": \"crm:P134i_was_continued_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"created_type\": {\n      \"@id\": \"crm:P135_created_type\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"type_created_by\": {\n      \"@id\": \"crm:P135i_was_created_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"based_on\": {\n      \"@id\": \"crm:P136_was_based_on\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"supported_type_creation\": {\n      \"@id\": \"crm:P136i_supported_type_creation\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"exemplifies\": {\n      \"@id\": \"crm:P137_exemplifies\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"exemplified_by\": {\n      \"@id\": \"crm:P137i_is_exemplified_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"represents\": {\n      \"@id\": \"crm:P138_represents\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"representation\": {\n      \"@id\": \"crm:P138i_has_representation\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"alternative\": {\n      \"@id\": \"crm:P139_has_alternative_form\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"assigned_to\": {\n      \"@id\": \"crm:P140_assigned_attribute_to\", \n      \"@type\": \"@id\"\n    }, \n    \"attributed_by\": {\n      \"@id\": \"crm:P140i_was_attributed_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"assigned\": {\n      \"@id\": \"crm:P141_assigned\", \n      \"@type\": \"@id\"\n    }, \n    \"assigned_by\": {\n      \"@id\": \"crm:P141i_was_assigned_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_constituent\": {\n      \"@id\": \"crm:P142_used_constituent\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"used_in\": {\n      \"@id\": \"crm:P142i_was_used_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"joined\": {\n      \"@id\": \"crm:P143_joined\", \n      \"@type\": \"@id\"\n    }, \n    \"joined_by\": {\n      \"@id\": \"crm:P143i_was_joined_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"joined_with\": {\n      \"@id\": \"crm:P144_joined_with\", \n      \"@type\": \"@id\"\n    }, \n    \"gained_member_by\": {\n      \"@id\": \"crm:P144i_gained_member_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"separated\": {\n      \"@id\": \"crm:P145_separated\", \n      \"@type\": \"@id\"\n    }, \n    \"left_by\": {\n      \"@id\": \"crm:P145i_left_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"separated_from\": {\n      \"@id\": \"crm:P146_separated_from\", \n      \"@type\": \"@id\"\n    }, \n    \"lost_member_by\": {\n      \"@id\": \"crm:P146i_lost_member_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"curated\": {\n      \"@id\": \"crm:P147_curated\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"curated_by\": {\n      \"@id\": \"crm:P147i_was_curated_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"c_part\": {\n      \"@id\": \"crm:P148_has_component\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"c_part_of\": {\n      \"@id\": \"crm:P148i_is_component_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"defines_typical_parts_of\": {\n      \"@id\": \"crm:P150_defines_typical_parts_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"defines_typical_wholes_for\": {\n      \"@id\": \"crm:P150i_defines_typical_wholes_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"formed_from\": {\n      \"@id\": \"crm:P151_was_formed_from\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"participated_in_formation\": {\n      \"@id\": \"crm:P151i_participated_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"parent\": {\n      \"@id\": \"crm:P152_has_parent\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"parent_of\": {\n      \"@id\": \"crm:P152i_is_parent_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"occupies\": {\n      \"@id\": \"crm:P156_occupies\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"occupied_by\": {\n      \"@id\": \"crm:P156i_is_occupied_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"at_rest_relative_to\": {\n      \"@id\": \"crm:P157_is_at_rest_relative_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"provides_reference_space_for\": {\n      \"@id\": \"crm:P157i_provides_reference_space_for\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"temporal_projection\": {\n      \"@id\": \"crm:P160_has_temporal_projection\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"spatial_projection\": {\n      \"@id\": \"crm:P161_has_spatial_projection\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"during\": {\n      \"@id\": \"crm:P164_during\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"timespan_of_presence\": {\n      \"@id\": \"crm:P164i_was_time-span_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"incorporates\": {\n      \"@id\": \"crm:P165_incorporates\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"incorporated_by\": {\n      \"@id\": \"crm:P165i_is_incorporated_in\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"a_presence_of\": {\n      \"@id\": \"crm:P166_was_a_presence_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"presence\": {\n      \"@id\": \"crm:P166i_had_presence\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"at\": {\n      \"@id\": \"crm:P167_at\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"place_of\": {\n      \"@id\": \"crm:P167i_was_place_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"defined_by\": {\n      \"@id\": \"crm:P168_place_is_defined_by\"\n    }, \n    \"spacetime_volume_is_defined_by\": {\n      \"@id\": \"crm:P169i_spacetime_volume_is_defined_by\"\n    }, \n    \"time_is_defined_by\": {\n      \"@id\": \"crm:P170i_time_is_defined_by\"\n    }, \n    \"at_some_place_within\": {\n      \"@id\": \"crm:P171_at_some_place_within\"\n    }, \n    \"spatially_contains\": {\n      \"@id\": \"crm:P172_contains\"\n    }, \n    \"starts_before_or_with_the_end_of\": {\n      \"@id\": \"crm:P173_starts_before_or_with_the_end_of\", \n      \"@type\": \"@id\"\n    }, \n    \"ends_after_or_with_the_start_of\": {\n      \"@id\": \"crm:P173i_ends_after_or_with_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"starts_before_the_end_of\": {\n      \"@id\": \"crm:P174_starts_before_the_end_of\", \n      \"@type\": \"@id\"\n    }, \n    \"ends_after_the_start_of\": {\n      \"@id\": \"crm:P174i_ends_after_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"starts_before_or_with_the_start_of\": {\n      \"@id\": \"crm:P175_starts_before_or_with_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"starts_with_or_after_the_start_of\": {\n      \"@id\": \"crm:P175i_starts_with_or_after_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"starts_before_the_start_of\": {\n      \"@id\": \"crm:P176_starts_before_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"starts_after_the_start_of\": {\n      \"@id\": \"crm:P176i_starts_after_the_start_of\", \n      \"@type\": \"@id\"\n    }, \n    \"assigned_property\": {\n      \"@id\": \"crm:P177_assigned_property_type\", \n      \"@type\": \"@vocab\"\n    }, \n    \"sales_price\": {\n      \"@id\": \"crm:P179_had_sales_price\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"sales_price_of\": {\n      \"@id\": \"crm:P179i_was_sales_price_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"currency\": {\n      \"@id\": \"crm:P180_has_currency\", \n      \"@type\": \"@id\"\n    }, \n    \"currency_of\": {\n      \"@id\": \"crm:P180i_was_currency_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"amount\": {\n      \"@id\": \"crm:P181_has_amount\"\n    }, \n    \"ends_before_or_with_the_start_of\": {\n      \"@id\": \"crm:P182_ends_before_or_with_the_start_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"starts_after_or_with_the_end_of\": {\n      \"@id\": \"crm:P182i_starts_after_or_with_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"ends_before_the_start_of\": {\n      \"@id\": \"crm:P183_ends_before_the_start_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"starts_after_the_end_of\": {\n      \"@id\": \"crm:P183i_starts_after_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"ends_before_or_with_the_end_of\": {\n      \"@id\": \"crm:P184_ends_before_or_with_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"ends_with_or_after_the_end_of\": {\n      \"@id\": \"crm:P184i_ends_with_or_after_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"ends_before_the_end_of\": {\n      \"@id\": \"crm:P185_ends_before_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"ends_after_the_end_of\": {\n      \"@id\": \"crm:P185i_ends_after_the_end_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"produced_thing_of_product_type\": {\n      \"@id\": \"crm:P186_produced_thing_of_product_type\", \n      \"@type\": \"@id\"\n    }, \n    \"type_produced_by\": {\n      \"@id\": \"crm:P186i_is_produced_by\", \n      \"@type\": \"@id\"\n    }, \n    \"production_plan\": {\n      \"@id\": \"crm:P187_has_production_plan\", \n      \"@type\": \"@id\"\n    }, \n    \"production_plan_for\": {\n      \"@id\": \"crm:P187i_is_production_plan_for\", \n      \"@type\": \"@id\"\n    }, \n    \"requires_production_tool\": {\n      \"@id\": \"crm:P188_requires_production_tool\", \n      \"@type\": \"@id\"\n    }, \n    \"production_tool_for\": {\n      \"@id\": \"crm:P188i_is_production_tool_for\", \n      \"@type\": \"@id\"\n    }, \n    \"approximates\": {\n      \"@id\": \"crm:P189_approximates\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"approximated_by\": {\n      \"@id\": \"crm:P189i_is_approximated_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"content\": {\n      \"@id\": \"crm:P190_has_symbolic_content\"\n    }, \n    \"duration\": {\n      \"@id\": \"crm:P191_had_duration\", \n      \"@type\": \"@id\"\n    }, \n    \"duration_of\": {\n      \"@id\": \"crm:P191i_was_duration_of\", \n      \"@type\": \"@id\"\n    }, \n    \"end_of_the_begin\": {\n      \"@id\": \"crm:P81a_end_of_the_begin\", \n      \"@type\": \"xsd:dateTime\"\n    }, \n    \"begin_of_the_end\": {\n      \"@id\": \"crm:P81b_begin_of_the_end\", \n      \"@type\": \"xsd:dateTime\"\n    }, \n    \"begin_of_the_begin\": {\n      \"@id\": \"crm:P82a_begin_of_the_begin\", \n      \"@type\": \"xsd:dateTime\"\n    }, \n    \"end_of_the_end\": {\n      \"@id\": \"crm:P82b_end_of_the_end\", \n      \"@type\": \"xsd:dateTime\"\n    }, \n    \"lower_value_limit\": {\n      \"@id\": \"crm:P90a_has_lower_value_limit\"\n    }, \n    \"upper_value_limit\": {\n      \"@id\": \"crm:P90b_has_upper_value_limit\"\n    }, \n    \"Payment\": {\n      \"@context\": {\n        \"part_of\": {\n          \"@id\": \"crm:P9i_forms_part_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"part\": {\n          \"@id\": \"crm:P9_consists_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"la:Payment\"\n    }, \n    \"RightAcquisition\": {\n      \"@id\": \"la:RightAcquisition\"\n    }, \n    \"Phase\": {\n      \"@id\": \"la:Phase\"\n    }, \n    \"Set\": {\n      \"@context\": {\n        \"member\": {\n          \"@id\": \"la:has_member\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }, \n        \"member_of\": {\n          \"@id\": \"la:member_of\", \n          \"@type\": \"@id\", \n          \"@container\": \"@set\"\n        }\n      }, \n      \"@id\": \"la:Set\"\n    }, \n    \"Addition\": {\n      \"@id\": \"la:Addition\"\n    }, \n    \"Removal\": {\n      \"@id\": \"la:Removal\"\n    }, \n    \"Relationship\": {\n      \"@id\": \"la:Relationship\"\n    }, \n    \"DigitalService\": {\n      \"@id\": \"la:DigitalService\"\n    }, \n    \"property_classified_as\": {\n      \"@id\": \"la:property_classified_as\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"represents_instance_of_type\": {\n      \"@id\": \"la:represents_instance_of_type\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"instance_represented_by\": {\n      \"@id\": \"la:instance_represented_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"current_permanent_custodian\": {\n      \"@id\": \"la:current_permanent_custodian\", \n      \"@type\": \"@id\"\n    }, \n    \"current_permanent_custodian_of\": {\n      \"@id\": \"la:current_permanent_custodian_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"paid_amount\": {\n      \"@id\": \"la:paid_amount\", \n      \"@type\": \"@id\"\n    }, \n    \"paid_from\": {\n      \"@id\": \"la:paid_from\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"paid_to\": {\n      \"@id\": \"la:paid_to\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"establishes\": {\n      \"@id\": \"la:establishes\", \n      \"@type\": \"@id\"\n    }, \n    \"established_by\": {\n      \"@id\": \"la:established_by\", \n      \"@type\": \"@id\"\n    }, \n    \"invalidates\": {\n      \"@id\": \"la:invalidates\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"invalidated_by\": {\n      \"@id\": \"la:invalidated_by\", \n      \"@type\": \"@id\"\n    }, \n    \"initiated\": {\n      \"@id\": \"la:initiated\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"initiated_by\": {\n      \"@id\": \"la:initiated_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"terminated\": {\n      \"@id\": \"la:terminated\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"terminated_by\": {\n      \"@id\": \"la:terminated_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"has_phase\": {\n      \"@id\": \"la:has_phase\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"phase_of\": {\n      \"@id\": \"la:phase_of\", \n      \"@type\": \"@id\"\n    }, \n    \"related_entity\": {\n      \"@id\": \"la:related_entity\", \n      \"@type\": \"@id\"\n    }, \n    \"related_entity_of\": {\n      \"@id\": \"la:related_entity_of\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"relationship\": {\n      \"@id\": \"la:relationship\", \n      \"@type\": \"@id\"\n    }, \n    \"added_to\": {\n      \"@id\": \"la:added_to\", \n      \"@type\": \"@id\"\n    }, \n    \"added_to_by\": {\n      \"@id\": \"la:added_to_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"added_member\": {\n      \"@id\": \"la:added_member\", \n      \"@type\": \"@id\"\n    }, \n    \"added_member_by\": {\n      \"@id\": \"la:added_member_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"removed_from\": {\n      \"@id\": \"la:removed_from\", \n      \"@type\": \"@id\"\n    }, \n    \"removed_from_by\": {\n      \"@id\": \"la:removed_from_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"removed_member\": {\n      \"@id\": \"la:removed_member\", \n      \"@type\": \"@id\"\n    }, \n    \"removed_member_by\": {\n      \"@id\": \"la:removed_member_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"relates_to\": {\n      \"@id\": \"la:relates_to\", \n      \"@type\": \"@id\"\n    }, \n    \"related_to_by\": {\n      \"@id\": \"la:related_to_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"relates_from\": {\n      \"@id\": \"la:relates_from\", \n      \"@type\": \"@id\"\n    }, \n    \"related_from_by\": {\n      \"@id\": \"la:related_from_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_carries\": {\n      \"@id\": \"la:digitally_carries\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_carried_by\": {\n      \"@id\": \"la:digitally_carried_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_shows\": {\n      \"@id\": \"la:digitally_shows\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_shown_by\": {\n      \"@id\": \"la:digitally_shown_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_available_via\": {\n      \"@id\": \"la:digitally_available_via\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"digitally_makes_available\": {\n      \"@id\": \"la:digitally_makes_available\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"DigitalObject\": {\n      \"@id\": \"dig:D1_Digital_Object\"\n    }, \n    \"Geometry\": {\n      \"@id\": \"geo:SP5_Geometric_Place_Expression\"\n    }, \n    \"CoordinateSystem\": {\n      \"@id\": \"geo:SP4_Spatial_Coordinate_Reference_System\"\n    }, \n    \"Encounter\": {\n      \"@id\": \"sci:S19_Encounter_Event\"\n    }, \n    \"Q9_is_expressed_in_terms_of\": {\n      \"@id\": \"geo:Q9_is_expressed_in_terms_of\", \n      \"@type\": \"@id\"\n    }, \n    \"Q9i_terms_express\": {\n      \"@id\": \"geo:Q9i_terms_express\", \n      \"@type\": \"@id\"\n    }, \n    \"caused\": {\n      \"@id\": \"sci:O13_triggers\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"caused_by\": {\n      \"@id\": \"sci:O13i_is_triggered_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"encountered\": {\n      \"@id\": \"sci:O19_has_found_object\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"encountered_by\": {\n      \"@id\": \"sci:O19i_was_object_found_by\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"_label\": {\n      \"@id\": \"rdfs:label\"\n    }, \n    \"exact_match\": {\n      \"@id\": \"skos:exactMatch\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"close_match\": {\n      \"@id\": \"skos:closeMatch\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"see_also\": {\n      \"@id\": \"rdfs:seeAlso\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"conforms_to\": {\n      \"@id\": \"dcterms:conformsTo\", \n      \"@type\": \"@id\", \n      \"@container\": \"@set\"\n    }, \n    \"format\": {\n      \"@id\": \"dc:format\"\n    }\n  }\n}"
  },
  {
    "path": "profiler/test-loaders.rb",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nrequire \"bundler/setup\"\nrequire 'json/ld'\nrequire 'ruby-prof'\nrequire 'getoptlong'\n\nparser_options = {\n  base:     nil,\n  progress: false,\n  profile:  false,\n  validate: false,\n}\n\noptions = {\n  parser_options: parser_options,\n  output:        STDOUT,\n  output_format: :nquads,\n  input_format:  :jsonld,\n}\ninput = nil\n\nOPT_ARGS = [\n  [\"--compact\", GetoptLong::NO_ARGUMENT,              \"Compact input, using context\"],\n  [\"--context\", GetoptLong::REQUIRED_ARGUMENT,        \"Context used for compaction\"],\n  [\"--expand\", GetoptLong::NO_ARGUMENT,               \"Expand input\"],\n  [\"--expanded\", GetoptLong::NO_ARGUMENT,             \"Input is already expanded\"],\n  [\"--flatten\", GetoptLong::NO_ARGUMENT,              \"Flatten input\"],\n  [\"--frame\", GetoptLong::REQUIRED_ARGUMENT,          \"Frame input, option value is frame to use\"],\n  [\"--help\", \"-?\", GetoptLong::NO_ARGUMENT,           \"This message\"],\n  [\"--output\", \"-o\", GetoptLong::REQUIRED_ARGUMENT,   \"Where to store output (default STDOUT)\"],\n  [\"--uri\", GetoptLong::REQUIRED_ARGUMENT,            \"Run with argument value as base\"],\n]\n\nopts = GetoptLong.new(*OPT_ARGS.map {|o| o[0..-2]})\n\ndef usage\n  STDERR.puts %{Usage: #{$0} [options] file ...}\n  width = OPT_ARGS.map do |o|\n    l = o.first.length\n    l += o[1].length + 2 if o[1].is_a?(String)\n    l\n  end.max\n  OPT_ARGS.each do |o|\n    s = \"  %-*s  \" % [width, (o[1].is_a?(String) ? \"#{o[0,2].join(', ')}\" : o[0])]\n    s += o.last\n    STDERR.puts s\n  end\n  exit(1)\nend\n\nopts.each do |opt, arg|\n  case opt\n  when '--compact'      then options[:compact] = true\n  when '--context'      then options[:context] = arg\n  when '--expand'       then options[:expand] = true\n  when '--expanded'     then options[:expanded] = true\n  when '--flatten'      then options[:flatten] = true\n  when '--format'       then options[:output_format] = arg.to_sym\n  when '--frame'        then options[:frame] = arg\n  when \"--help\"         then usage\n  when '--output'       then options[:output] = File.open(arg, \"w\")\n  when '--uri'          then parser_options[:base] = arg\n  end\nend\n\ndoc_cache = {}\nla = File.read(File.expand_path(\"../linked-art.json\", __FILE__))\ndoc_cache[\"https://linked.art/ns/v1/linked-art.json\"] =\n  JSON::LD::API::RemoteDocument.new(la,\n    documentUrl: \"https://linked.art/ns/v1/linked-art.json\",\n    contentType: \"application/ld+json\")\n\noptions[:documentLoader] = Proc.new do |url, **options, &block|\n  raise \"Context not pre-cached: #{url}\" unless doc_cache.key?(url.to_s)\n  block.call doc_cache[url.to_s]\nend\n\nall_data = JSON.parse(File.read(File.expand_path(\"../all_data.json\", __FILE__)))\n\noutput_dir = File.expand_path(\"../../doc/profiles/#{File.basename __FILE__, \".rb\"}\", __FILE__)\nFileUtils.mkdir_p(output_dir)\nprofile = RubyProf::Profile.new\nprofile.exclude_methods!(Array, :each, :map)\nprofile.exclude_method!(Hash, :each)\nprofile.exclude_method!(Kernel, :require)\nprofile.exclude_method!(Object, :run)\nprofile.exclude_common_methods!\nprofile.start\nall_data.each do |indata|\n  if options[:flatten]\n    JSON::LD::API.flatten(indata, options[:context], **options)\n  elsif options[:compact]\n    JSON::LD::API.compact(indata, options[:context], **options)\n  elsif options[:frame]\n    JSON::LD::API.frame(indata, options[:frame], **options)\n  else\n    options[:expandContext] = options[:context]\n    JSON::LD::API.expand(indata, **options)\n  end\nend\nresult = profile.stop\n\n# Print a graph profile to text\nprinter = RubyProf::MultiPrinter.new(result)\nprinter.print(path: output_dir, profile: \"profile\")\nputs \"output saved in #{output_dir}\"\n"
  },
  {
    "path": "schema_org_rdfa.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <title>RDFa Lite Reflection</title>\n    <meta charset=\"UTF-8\" />\n    <style type=\"text/css\">\n      span.h {\n        padding-left: 0px;\n        font-weight: bold;\n      }\n      span {\n        display: block;\n        padding-left: 10px;\n      }\n    </style>\n  </head>\n\n  <body>\n    <h1>Schema.org core schema</h1>\n\n    <p>This is the RDFa representation of the schema.org schema, the underlying representation of the schema.org vocabulary.</p>\n\n    <p>It is represented in a form based on W3C RDF/RDFS. We encourage proposals for schema.org improvements to be expressed\n      in this same style. For Discussion please use the W3C <a href=\"mailto:public-vocabs@w3.org\">Web schemas</a> group.</p>\n    <p>\n    See <a href=\"http://schema.org/docs/datamodel.html\">datamodel</a> for more details.\n    </p>\n    <p>\n      Note: the style of RDFa used here may change in the future. To see the substantive content of the schema, view the\n      HTML source markup. We use a simple subset of RDFa for syntax, including prefixes that are declared in the\n      <a href=\"http://www.w3.org/2011/rdfa-context/rdfa-1.1\">RDFa initial context</a>.\n    </p>\n\n    <hr />\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Thing\">\n      <span class=\"h\" property=\"rdfs:label\">Thing</span>\n      <span property=\"rdfs:comment\">The most generic type of item.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CreativeWork\">\n      <span class=\"h\" property=\"rdfs:label\">CreativeWork</span>\n      <span property=\"rdfs:comment\">The most generic kind of creative work, including books, movies, photographs, software programs, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WebPage\">\n      <span class=\"h\" property=\"rdfs:label\">WebPage</span>\n      <span property=\"rdfs:comment\">A web page. Every web page is implicitly assumed to be declared to be of type WebPage, so the various properties about that webpage, such as &lt;code&gt;breadcrumb&lt;/code&gt; may be used. We recommend explicit declaration if these properties are specified, but if they are found outside of an itemscope, they will be assumed to be about the page</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AboutPage\">\n      <span class=\"h\" property=\"rdfs:label\">AboutPage</span>\n      <span property=\"rdfs:comment\">Web page type: About page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Organization\">\n      <span class=\"h\" property=\"rdfs:label\">Organization</span>\n      <span property=\"rdfs:comment\">An organization such as a school, NGO, corporation, club, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Place\">\n      <span class=\"h\" property=\"rdfs:label\">Place</span>\n      <span property=\"rdfs:comment\">Entities that have a somewhat fixed, physical extension.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LocalBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">LocalBusiness</span>\n      <span property=\"rdfs:comment\">A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FinancialService\">\n      <span class=\"h\" property=\"rdfs:label\">FinancialService</span>\n      <span property=\"rdfs:comment\">Financial services business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ProfessionalService\">\n      <span class=\"h\" property=\"rdfs:label\">ProfessionalService</span>\n      <span property=\"rdfs:comment\">Provider of professional services.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AccountingService\">\n      <span class=\"h\" property=\"rdfs:label\">AccountingService</span>\n      <span property=\"rdfs:comment\">Accountancy business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FinancialService\">FinancialService</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AdministrativeArea\">\n      <span class=\"h\" property=\"rdfs:label\">AdministrativeArea</span>\n      <span property=\"rdfs:comment\">A geographical region under the jurisdiction of a particular government.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EntertainmentBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">EntertainmentBusiness</span>\n      <span property=\"rdfs:comment\">A business providing entertainment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AdultEntertainment\">\n      <span class=\"h\" property=\"rdfs:label\">AdultEntertainment</span>\n      <span property=\"rdfs:comment\">An adult entertainment establishment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Intangible\">\n      <span class=\"h\" property=\"rdfs:label\">Intangible</span>\n      <span property=\"rdfs:comment\">A utility class that serves as the umbrella for a number of &#39;intangible&#39; things such as quantities, structured values, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Offer\">\n      <span class=\"h\" property=\"rdfs:label\">Offer</span>\n      <span property=\"rdfs:comment\">An offer to transfer some rights to an item or to provide a service&amp;#x2014;for example, an offer to sell tickets to an event, to rent the DVD of a movie, to stream a TV show over the internet, to repair a motorcycle, or to loan a book.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\">GoodRelationsProperties</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AggregateOffer\">\n      <span class=\"h\" property=\"rdfs:label\">AggregateOffer</span>\n      <span property=\"rdfs:comment\">When a single product is associated with multiple offers (for example, the same pair of shoes is offered by different merchants), then AggregateOffer can be used.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Offer\">Offer</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Rating\">\n      <span class=\"h\" property=\"rdfs:label\">Rating</span>\n      <span property=\"rdfs:comment\">The rating of the video.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AggregateRating\">\n      <span class=\"h\" property=\"rdfs:label\">AggregateRating</span>\n      <span property=\"rdfs:comment\">The average rating based on multiple ratings or reviews.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Rating\">Rating</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CivicStructure\">\n      <span class=\"h\" property=\"rdfs:label\">CivicStructure</span>\n      <span property=\"rdfs:comment\">A public structure, such as a town hall or concert hall.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Airport\">\n      <span class=\"h\" property=\"rdfs:label\">Airport</span>\n      <span property=\"rdfs:comment\">An airport.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AmusementPark\">\n      <span class=\"h\" property=\"rdfs:label\">AmusementPark</span>\n      <span property=\"rdfs:comment\">An amusement park.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalEntity\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalEntity</span>\n      <span property=\"rdfs:comment\">The most generic type of entity related to health and the practice of medicine.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AnatomicalStructure\">\n      <span class=\"h\" property=\"rdfs:label\">AnatomicalStructure</span>\n      <span property=\"rdfs:comment\">Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AnatomicalSystem\">\n      <span class=\"h\" property=\"rdfs:label\">AnatomicalSystem</span>\n      <span property=\"rdfs:comment\">An anatomical system is a group of anatomical structures that work together to perform a certain task. Anatomical systems, such as organ systems, are one organizing principle of anatomy, and can includes circulatory, digestive, endocrine, integumentary, immune, lymphatic, muscular, nervous, reproductive, respiratory, skeletal, urinary, vestibular, and other systems.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AnimalShelter\">\n      <span class=\"h\" property=\"rdfs:label\">AnimalShelter</span>\n      <span property=\"rdfs:comment\">Animal shelter.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Residence\">\n      <span class=\"h\" property=\"rdfs:label\">Residence</span>\n      <span property=\"rdfs:comment\">The place where a person lives.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ApartmentComplex\">\n      <span class=\"h\" property=\"rdfs:label\">ApartmentComplex</span>\n      <span property=\"rdfs:comment\">Residence type: Apartment complex.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Residence\">Residence</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalIndication\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalIndication</span>\n      <span property=\"rdfs:comment\">A condition or factor that indicates use of a medical therapy, including signs, symptoms, risk factors, anatomical states, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ApprovedIndication\">\n      <span class=\"h\" property=\"rdfs:label\">ApprovedIndication</span>\n      <span property=\"rdfs:comment\">An indication for a medical therapy that has been formally specified or approved by a regulatory body that regulates use of the therapy; for example, the US FDA approves indications for most drugs in the US.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIndication\">MedicalIndication</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Aquarium\">\n      <span class=\"h\" property=\"rdfs:label\">Aquarium</span>\n      <span property=\"rdfs:comment\">Aquarium.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ArtGallery\">\n      <span class=\"h\" property=\"rdfs:label\">ArtGallery</span>\n      <span property=\"rdfs:comment\">An art gallery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Vessel\">\n      <span class=\"h\" property=\"rdfs:label\">Vessel</span>\n      <span property=\"rdfs:comment\">A component of the human body circulatory system comprised of an intricate network of hollow tubes that transport blood throughout the entire body.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Artery\">\n      <span class=\"h\" property=\"rdfs:label\">Artery</span>\n      <span property=\"rdfs:comment\">A type of blood vessel that specifically carries blood away from the heart.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Article\">\n      <span class=\"h\" property=\"rdfs:label\">Article</span>\n      <span property=\"rdfs:comment\">An article, such as a news article or piece of investigative report. Newspapers and magazines have articles of many different types and this is intended to cover them all.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Attorney\">\n      <span class=\"h\" property=\"rdfs:label\">Attorney</span>\n      <span property=\"rdfs:comment\">Professional service: Attorney.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Audience\">\n      <span class=\"h\" property=\"rdfs:label\">Audience</span>\n      <span property=\"rdfs:comment\">Intended audience for an item, i.e. the group for whom the item was created.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/Audience\" resource=\"http://schema.org/Researcher\">\n      <span class=\"h\" property=\"rdfs:label\">Researcher</span>\n      <span property=\"rdfs:comment\">Researchers.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MediaObject\">\n      <span class=\"h\" property=\"rdfs:label\">MediaObject</span>\n      <span property=\"rdfs:comment\">An image, video, or audio object embedded in a web page. Note that a creative work may have many media objects associated with it on the same web page. For example, a page about a single song (MusicRecording) may have a music video (VideoObject), and a high and low bandwidth audio stream (2 AudioObject&#39;s).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AudioObject\">\n      <span class=\"h\" property=\"rdfs:label\">AudioObject</span>\n      <span property=\"rdfs:comment\">An audio file.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutomotiveBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">AutomotiveBusiness</span>\n      <span property=\"rdfs:comment\">Car repair, sales, or parts.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoBodyShop\">\n      <span class=\"h\" property=\"rdfs:label\">AutoBodyShop</span>\n      <span property=\"rdfs:comment\">Auto body shop.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoDealer\">\n      <span class=\"h\" property=\"rdfs:label\">AutoDealer</span>\n      <span property=\"rdfs:comment\">An car dealership.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Store\">\n      <span class=\"h\" property=\"rdfs:label\">Store</span>\n      <span property=\"rdfs:comment\">A retail good store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoPartsStore\">\n      <span class=\"h\" property=\"rdfs:label\">AutoPartsStore</span>\n      <span property=\"rdfs:comment\">An auto parts store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoRental\">\n      <span class=\"h\" property=\"rdfs:label\">AutoRental</span>\n      <span property=\"rdfs:comment\">A car rental business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoRepair\">\n      <span class=\"h\" property=\"rdfs:label\">AutoRepair</span>\n      <span property=\"rdfs:comment\">Car repair business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutoWash\">\n      <span class=\"h\" property=\"rdfs:label\">AutoWash</span>\n      <span property=\"rdfs:comment\">A car wash business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AutomatedTeller\">\n      <span class=\"h\" property=\"rdfs:label\">AutomatedTeller</span>\n      <span property=\"rdfs:comment\">ATM/cash machine.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FinancialService\">FinancialService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FoodEstablishment\">\n      <span class=\"h\" property=\"rdfs:label\">FoodEstablishment</span>\n      <span property=\"rdfs:comment\">A food-related business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Bakery\">\n      <span class=\"h\" property=\"rdfs:label\">Bakery</span>\n      <span property=\"rdfs:comment\">A bakery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BankOrCreditUnion\">\n      <span class=\"h\" property=\"rdfs:label\">BankOrCreditUnion</span>\n      <span property=\"rdfs:comment\">Bank or credit union.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FinancialService\">FinancialService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BarOrPub\">\n      <span class=\"h\" property=\"rdfs:label\">BarOrPub</span>\n      <span property=\"rdfs:comment\">A bar or pub.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Beach\">\n      <span class=\"h\" property=\"rdfs:label\">Beach</span>\n      <span property=\"rdfs:comment\">Beach.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HealthAndBeautyBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">HealthAndBeautyBusiness</span>\n      <span property=\"rdfs:comment\">Health and beauty.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BeautySalon\">\n      <span class=\"h\" property=\"rdfs:label\">BeautySalon</span>\n      <span property=\"rdfs:comment\">Beauty salon.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LodgingBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">LodgingBusiness</span>\n      <span property=\"rdfs:comment\">A lodging business, such as a motel, hotel, or inn.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BedAndBreakfast\">\n      <span class=\"h\" property=\"rdfs:label\">BedAndBreakfast</span>\n      <span property=\"rdfs:comment\">Bed and breakfast.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LodgingBusiness\">LodgingBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BikeStore\">\n      <span class=\"h\" property=\"rdfs:label\">BikeStore</span>\n      <span property=\"rdfs:comment\">A bike store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Blog\">\n      <span class=\"h\" property=\"rdfs:label\">Blog</span>\n      <span property=\"rdfs:comment\">A blog</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BlogPosting\">\n      <span class=\"h\" property=\"rdfs:label\">BlogPosting</span>\n      <span property=\"rdfs:comment\">A blog post.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Article\">Article</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalTest\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalTest</span>\n      <span property=\"rdfs:comment\">Any medical test, typically performed for diagnostic purposes.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BloodTest\">\n      <span class=\"h\" property=\"rdfs:label\">BloodTest</span>\n      <span property=\"rdfs:comment\">A medical test performed on a sample of a patient&#39;s blood.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Landform\">\n      <span class=\"h\" property=\"rdfs:label\">Landform</span>\n      <span property=\"rdfs:comment\">A landform or physical feature.  Landform elements include mountains, plains, lakes, rivers, seascape and oceanic waterbody interface features such as bays, peninsulas, seas and so forth, including sub-aqueous terrain features such as submersed mountain ranges, volcanoes, and the great ocean basins.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BodyOfWater\">\n      <span class=\"h\" property=\"rdfs:label\">BodyOfWater</span>\n      <span property=\"rdfs:comment\">A body of water, such as a sea, ocean, or lake.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Landform\">Landform</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Bone\">\n      <span class=\"h\" property=\"rdfs:label\">Bone</span>\n      <span property=\"rdfs:comment\">Rigid connective tissue that comprises up the skeletal structure of the human body.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Book\">\n      <span class=\"h\" property=\"rdfs:label\">Book</span>\n      <span property=\"rdfs:comment\">A book.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Enumeration\">\n      <span class=\"h\" property=\"rdfs:label\">Enumeration</span>\n      <span property=\"rdfs:comment\">Lists or enumerations&amp;#x2014;for example, a list of cuisines or music genres, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BookFormatType\">\n      <span class=\"h\" property=\"rdfs:label\">BookFormatType</span>\n      <span property=\"rdfs:comment\">The publication format of the book.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/BookFormatType\" resource=\"http://schema.org/EBook\">\n      <span class=\"h\" property=\"rdfs:label\">EBook</span>\n      <span property=\"rdfs:comment\">Book format: Ebook.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/BookFormatType\" resource=\"http://schema.org/Hardcover\">\n      <span class=\"h\" property=\"rdfs:label\">Hardcover</span>\n      <span property=\"rdfs:comment\">Book format: Hardcover.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/BookFormatType\" resource=\"http://schema.org/Paperback\">\n      <span class=\"h\" property=\"rdfs:label\">Paperback</span>\n      <span property=\"rdfs:comment\">Book format: Paperback.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BookStore\">\n      <span class=\"h\" property=\"rdfs:label\">BookStore</span>\n      <span property=\"rdfs:comment\">A bookstore.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DataType\">\n      <span class=\"h\" property=\"rdfs:label\">DataType</span>\n      <span property=\"rdfs:comment\">The basic data types such as Integers, Strings, etc.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Boolean\">\n      <span class=\"h\" property=\"rdfs:label\">Boolean</span>\n      <span property=\"rdfs:comment\">Boolean: True or False.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/Boolean\" resource=\"http://schema.org/False\">\n      <span class=\"h\" property=\"rdfs:label\">False</span>\n      <span property=\"rdfs:comment\">The boolean value false</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/Boolean\" resource=\"http://schema.org/True\">\n      <span class=\"h\" property=\"rdfs:label\">True</span>\n      <span property=\"rdfs:comment\">The boolean value true</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SportsActivityLocation\">\n      <span class=\"h\" property=\"rdfs:label\">SportsActivityLocation</span>\n      <span property=\"rdfs:comment\">A sports location, such as a playing field.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BowlingAlley\">\n      <span class=\"h\" property=\"rdfs:label\">BowlingAlley</span>\n      <span property=\"rdfs:comment\">A bowling alley.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BrainStructure\">\n      <span class=\"h\" property=\"rdfs:label\">BrainStructure</span>\n      <span property=\"rdfs:comment\">Any anatomical structure which pertains to the soft nervous tissue functioning as the coordinating center of sensation and intellectual and nervous activity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Brewery\">\n      <span class=\"h\" property=\"rdfs:label\">Brewery</span>\n      <span property=\"rdfs:comment\">Brewery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PlaceOfWorship\">\n      <span class=\"h\" property=\"rdfs:label\">PlaceOfWorship</span>\n      <span property=\"rdfs:comment\">Place of worship, such as a church, synagogue, or mosque.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BuddhistTemple\">\n      <span class=\"h\" property=\"rdfs:label\">BuddhistTemple</span>\n      <span property=\"rdfs:comment\">A Buddhist temple.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusStation\">\n      <span class=\"h\" property=\"rdfs:label\">BusStation</span>\n      <span property=\"rdfs:comment\">A bus station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusStop\">\n      <span class=\"h\" property=\"rdfs:label\">BusStop</span>\n      <span property=\"rdfs:comment\">A bus stop.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Event\">\n      <span class=\"h\" property=\"rdfs:label\">Event</span>\n      <span property=\"rdfs:comment\">An event happening at a certain time and location, such as a concert, lecture, or festival. Ticketing information may be added via the &#39;offers&#39; property. Repeated events may be structured as separate Event objects.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n       <link property=\"owl:equivalentClass\" href=\"dc:Event\"/>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusinessEvent\">\n      <span class=\"h\" property=\"rdfs:label\">BusinessEvent</span>\n      <span property=\"rdfs:comment\">Event type: Business event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CafeOrCoffeeShop\">\n      <span class=\"h\" property=\"rdfs:label\">CafeOrCoffeeShop</span>\n      <span property=\"rdfs:comment\">A cafe or coffee shop.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Campground\">\n      <span class=\"h\" property=\"rdfs:label\">Campground</span>\n      <span property=\"rdfs:comment\">A campground.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Canal\">\n      <span class=\"h\" property=\"rdfs:label\">Canal</span>\n      <span property=\"rdfs:comment\">A canal, like the Panama Canal</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Casino\">\n      <span class=\"h\" property=\"rdfs:label\">Casino</span>\n      <span property=\"rdfs:comment\">A casino.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CatholicChurch\">\n      <span class=\"h\" property=\"rdfs:label\">CatholicChurch</span>\n      <span property=\"rdfs:comment\">A Catholic church.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Cemetery\">\n      <span class=\"h\" property=\"rdfs:label\">Cemetery</span>\n      <span property=\"rdfs:comment\">A graveyard.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CheckoutPage\">\n      <span class=\"h\" property=\"rdfs:label\">CheckoutPage</span>\n      <span property=\"rdfs:comment\">Web page type: Checkout page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ChildCare\">\n      <span class=\"h\" property=\"rdfs:label\">ChildCare</span>\n      <span property=\"rdfs:comment\">A Childcare center.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ChildrensEvent\">\n      <span class=\"h\" property=\"rdfs:label\">ChildrensEvent</span>\n      <span property=\"rdfs:comment\">Event type: Children&#39;s event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Church\">\n      <span class=\"h\" property=\"rdfs:label\">Church</span>\n      <span property=\"rdfs:comment\">A church.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/City\">\n      <span class=\"h\" property=\"rdfs:label\">City</span>\n      <span property=\"rdfs:comment\">A city or town.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GovernmentBuilding\">\n      <span class=\"h\" property=\"rdfs:label\">GovernmentBuilding</span>\n      <span property=\"rdfs:comment\">A government building.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CityHall\">\n      <span class=\"h\" property=\"rdfs:label\">CityHall</span>\n      <span property=\"rdfs:comment\">A city hall.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentBuilding\">GovernmentBuilding</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ClothingStore\">\n      <span class=\"h\" property=\"rdfs:label\">ClothingStore</span>\n      <span property=\"rdfs:comment\">A clothing store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CollectionPage\">\n      <span class=\"h\" property=\"rdfs:label\">CollectionPage</span>\n      <span property=\"rdfs:comment\">Web page type: Collection page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EducationalOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">EducationalOrganization</span>\n      <span property=\"rdfs:comment\">An educational organization.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CollegeOrUniversity\">\n      <span class=\"h\" property=\"rdfs:label\">CollegeOrUniversity</span>\n      <span property=\"rdfs:comment\">A college, university, or other third-level educational institution.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ComedyClub\">\n      <span class=\"h\" property=\"rdfs:label\">ComedyClub</span>\n      <span property=\"rdfs:comment\">A comedy club.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ComedyEvent\">\n      <span class=\"h\" property=\"rdfs:label\">ComedyEvent</span>\n      <span property=\"rdfs:comment\">Event type: Comedy event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Comment\">\n      <span class=\"h\" property=\"rdfs:label\">Comment</span>\n      <span property=\"rdfs:comment\">A comment on an item - for example, a comment on a blog post. The comment&#39;s content is expressed via the &quot;text&quot; property, and its topic via &quot;about&quot;, properties shared with all CreativeWorks.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ComputerStore\">\n      <span class=\"h\" property=\"rdfs:label\">ComputerStore</span>\n      <span property=\"rdfs:comment\">A computer store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ContactPage\">\n      <span class=\"h\" property=\"rdfs:label\">ContactPage</span>\n      <span property=\"rdfs:comment\">Web page type: Contact page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/StructuredValue\">\n      <span class=\"h\" property=\"rdfs:label\">StructuredValue</span>\n      <span property=\"rdfs:comment\">Structured values are strings&amp;#x2014;for example, addresses&amp;#x2014;that have certain constraints on their structure.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ContactPoint\">\n      <span class=\"h\" property=\"rdfs:label\">ContactPoint</span>\n      <span property=\"rdfs:comment\">A contact point&amp;#x2014;for example, a Customer Complaints department.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Continent\">\n      <span class=\"h\" property=\"rdfs:label\">Continent</span>\n      <span property=\"rdfs:comment\">One of the continents (for example, Europe or Africa).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Landform\">Landform</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ConvenienceStore\">\n      <span class=\"h\" property=\"rdfs:label\">ConvenienceStore</span>\n      <span property=\"rdfs:comment\">A convenience store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Corporation\">\n      <span class=\"h\" property=\"rdfs:label\">Corporation</span>\n      <span property=\"rdfs:comment\">Organization: A business corporation.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Country\">\n      <span class=\"h\" property=\"rdfs:label\">Country</span>\n      <span property=\"rdfs:comment\">A country.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Courthouse\">\n      <span class=\"h\" property=\"rdfs:label\">Courthouse</span>\n      <span property=\"rdfs:comment\">A courthouse.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentBuilding\">GovernmentBuilding</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Crematorium\">\n      <span class=\"h\" property=\"rdfs:label\">Crematorium</span>\n      <span property=\"rdfs:comment\">A crematorium.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalIntangible\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalIntangible</span>\n      <span property=\"rdfs:comment\">A utility class that serves as the umbrella for a number of &#39;intangible&#39; things in the medical space.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DDxElement\">\n      <span class=\"h\" property=\"rdfs:label\">DDxElement</span>\n      <span property=\"rdfs:comment\">An alternative, closely-related condition typically considered later in the differential diagnosis process along with the signs that are used to distinguish it.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DanceEvent\">\n      <span class=\"h\" property=\"rdfs:label\">DanceEvent</span>\n      <span property=\"rdfs:comment\">Event type: A social dance.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PerformingGroup\">\n      <span class=\"h\" property=\"rdfs:label\">PerformingGroup</span>\n      <span property=\"rdfs:comment\">A performance group, such as a band, an orchestra, or a circus.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DanceGroup\">\n      <span class=\"h\" property=\"rdfs:label\">DanceGroup</span>\n      <span property=\"rdfs:comment\">A dance group&amp;#x2014;for example, the Alvin Ailey Dance Theater or Riverdance.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PerformingGroup\">PerformingGroup</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Date\">\n      <span class=\"h\" property=\"rdfs:label\">Date</span>\n      <span property=\"rdfs:comment\">A date value in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 date format&lt;/a&gt;.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DateTime\">\n      <span class=\"h\" property=\"rdfs:label\">DateTime</span>\n      <span property=\"rdfs:comment\">A combination of date and time of day in the form [-]CCYY-MM-DDThh:mm:ss[Z|(+|-)hh:mm] (see Chapter 5.4 of ISO 8601).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DaySpa\">\n      <span class=\"h\" property=\"rdfs:label\">DaySpa</span>\n      <span property=\"rdfs:comment\">A day spa.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DefenceEstablishment\">\n      <span class=\"h\" property=\"rdfs:label\">DefenceEstablishment</span>\n      <span property=\"rdfs:comment\">A defence establishment, such as an army or navy base.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentBuilding\">GovernmentBuilding</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalOrganization</span>\n      <span property=\"rdfs:comment\">A medical organization, such as a doctor&#39;s office or clinic.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Dentist\">\n      <span class=\"h\" property=\"rdfs:label\">Dentist</span>\n      <span property=\"rdfs:comment\">A dentist.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DepartmentStore\">\n      <span class=\"h\" property=\"rdfs:label\">DepartmentStore</span>\n      <span property=\"rdfs:comment\">A department store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DiagnosticLab\">\n      <span class=\"h\" property=\"rdfs:label\">DiagnosticLab</span>\n      <span property=\"rdfs:comment\">A medical laboratory that offers on-site or off-site diagnostic services.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalProcedure</span>\n      <span property=\"rdfs:comment\">A process of care used in either a diagnostic, therapeutic, or palliative capacity that relies on invasive (surgical), non-invasive, or percutaneous techniques.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DiagnosticProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">DiagnosticProcedure</span>\n      <span property=\"rdfs:comment\">A medical procedure intended primarily for diagnostic, as opposed to therapeutic, purposes.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalTherapy</span>\n      <span property=\"rdfs:comment\">Any medical intervention designed to prevent, treat, and cure human diseases and medical conditions, including both curative and palliative therapies. Medical therapies are typically processes of care relying upon pharmacotherapy, behavioral therapy, supportive therapy (with fluid or nutrition for example), or detoxification (e.g. hemodialysis) aimed at improving or preventing a health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LifestyleModification\">\n      <span class=\"h\" property=\"rdfs:label\">LifestyleModification</span>\n      <span property=\"rdfs:comment\">A process of care involving exercise, changes to diet, fitness routines, and other lifestyle changes aimed at improving a health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Diet\">\n      <span class=\"h\" property=\"rdfs:label\">Diet</span>\n      <span property=\"rdfs:comment\">A strategy of regulating the intake of food to achieve or maintain a specific health-related goal.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LifestyleModification\">LifestyleModification</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DietarySupplement\">\n      <span class=\"h\" property=\"rdfs:label\">DietarySupplement</span>\n      <span property=\"rdfs:comment\">A product taken by mouth that contains a dietary ingredient intended to supplement the diet. Dietary ingredients may include vitamins, minerals, herbs or other botanicals, amino acids, and substances such as enzymes, organ tissues, glandulars and metabolites.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Quantity\">\n      <span class=\"h\" property=\"rdfs:label\">Quantity</span>\n      <span property=\"rdfs:comment\">Quantities such as distance, time, mass, weight, etc. Particular instances of say Mass are entities like &#39;3 Kg&#39; or &#39;4 milligrams&#39;.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Distance\">\n      <span class=\"h\" property=\"rdfs:label\">Distance</span>\n      <span property=\"rdfs:comment\">Properties that take Distances as values are of the form &#39;&amp;lt;Number&amp;gt; &amp;lt;Length unit of measure&amp;gt;&#39;. E.g., &#39;7 ft&#39;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Quantity\">Quantity</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DoseSchedule\">\n      <span class=\"h\" property=\"rdfs:label\">DoseSchedule</span>\n      <span property=\"rdfs:comment\">A specific dosing schedule for a drug or supplement.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Drug\">\n      <span class=\"h\" property=\"rdfs:label\">Drug</span>\n      <span property=\"rdfs:comment\">A chemical or biologic substance, used as a medical therapy, that has a physiological effect on an organism.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugClass\">\n      <span class=\"h\" property=\"rdfs:label\">DrugClass</span>\n      <span property=\"rdfs:comment\">A class of medical drugs, e.g., statins. Classes can represent general pharmacological class, common mechanisms of action, common physiological effects, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugCost\">\n      <span class=\"h\" property=\"rdfs:label\">DrugCost</span>\n      <span property=\"rdfs:comment\">The cost per unit of a medical drug. Note that this type is not meant to represent the price in an offer of a drug for sale; see the Offer type for that. This type will typically be used to tag wholesale or average retail cost of a drug, or maximum reimbursable cost. Costs of medical drugs vary widely depending on how and where they are paid for, so while this type captures some of the variables, costs should be used with caution by consumers of this schema&#39;s markup.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalEnumeration\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalEnumeration</span>\n      <span property=\"rdfs:comment\">Enumerations related to health and the practice of medicine.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugCostCategory\">\n      <span class=\"h\" property=\"rdfs:label\">DrugCostCategory</span>\n      <span property=\"rdfs:comment\">Enumerated categories of medical drug costs.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugCostCategory\" resource=\"http://schema.org/ReimbursementCap\">\n      <span class=\"h\" property=\"rdfs:label\">ReimbursementCap</span>\n      <span property=\"rdfs:comment\">The drug's cost represents the maximum reimbursement paid by an insurer for the drug.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugCostCategory\" resource=\"http://schema.org/Retail\">\n      <span class=\"h\" property=\"rdfs:label\">Retail</span>\n      <span property=\"rdfs:comment\">The drug's cost represents the retail cost of the drug.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugCostCategory\" resource=\"http://schema.org/Wholesale\">\n      <span class=\"h\" property=\"rdfs:label\">Wholesale</span>\n      <span property=\"rdfs:comment\">The drug's cost represents the wholesale acquisition cost of the drug.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugLegalStatus\">\n      <span class=\"h\" property=\"rdfs:label\">DrugLegalStatus</span>\n      <span property=\"rdfs:comment\">The legal availability status of a medical drug.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugPregnancyCategory\">\n      <span class=\"h\" property=\"rdfs:label\">DrugPregnancyCategory</span>\n      <span property=\"rdfs:comment\">Categories that represent an assessment of the risk of fetal injury due to a drug or pharmaceutical used as directed by the mother during pregnancy.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAcategoryA\">\n      <span class=\"h\" property=\"rdfs:label\">FDAcategoryA</span>\n      <span property=\"rdfs:comment\">A designation by the US FDA signifying that adequate and well-controlled studies have failed to demonstrate a risk to the fetus in the first trimester of pregnancy (and there is no evidence of risk in later trimesters).</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAcategoryB\">\n      <span class=\"h\" property=\"rdfs:label\">FDAcategoryB</span>\n      <span property=\"rdfs:comment\">A designation by the US FDA signifying that animal reproduction studies have failed to demonstrate a risk to the fetus and there are no adequate and well-controlled studies in pregnant women.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAcategoryC\">\n      <span class=\"h\" property=\"rdfs:label\">FDAcategoryC</span>\n      <span property=\"rdfs:comment\">A designation by the US FDA signifying that animal reproduction studies have shown an adverse effect on the fetus and there are no adequate and well-controlled studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAcategoryD\">\n      <span class=\"h\" property=\"rdfs:label\">FDAcategoryD</span>\n      <span property=\"rdfs:comment\">A designation by the US FDA signifying that there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience or studies in humans, but potential benefits may warrant use of the drug in pregnant women despite potential risks.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAcategoryX\">\n      <span class=\"h\" property=\"rdfs:label\">FDAcategoryX</span>\n      <span property=\"rdfs:comment\">A designation by the US FDA signifying that studies in animals or humans have demonstrated fetal abnormalities and/or there is positive evidence of human fetal risk based on adverse reaction data from investigational or marketing experience, and the risks involved in use of the drug in pregnant women clearly outweigh potential benefits.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPregnancyCategory\" resource=\"http://schema.org/FDAnotEvaluated\">\n      <span class=\"h\" property=\"rdfs:label\">FDAnotEvaluated</span>\n      <span property=\"rdfs:comment\">A designation that the drug in question has not been assigned a pregnancy category designation by the US FDA.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugPrescriptionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">DrugPrescriptionStatus</span>\n      <span property=\"rdfs:comment\">Indicates whether this drug is available by prescription or over-the-counter.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPrescriptionStatus\" resource=\"http://schema.org/OTC\">\n      <span class=\"h\" property=\"rdfs:label\">OTC</span>\n      <span property=\"rdfs:comment\">Available over the counter.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/DrugPrescriptionStatus\" resource=\"http://schema.org/PrescriptionOnly\">\n      <span class=\"h\" property=\"rdfs:label\">PrescriptionOnly</span>\n      <span property=\"rdfs:comment\">Available by prescription only.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrugStrength\">\n      <span class=\"h\" property=\"rdfs:label\">DrugStrength</span>\n      <span property=\"rdfs:comment\">A specific strength in which a medical drug is available in a specific country.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DryCleaningOrLaundry\">\n      <span class=\"h\" property=\"rdfs:label\">DryCleaningOrLaundry</span>\n      <span property=\"rdfs:comment\">A dry-cleaning business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Duration\">\n      <span class=\"h\" property=\"rdfs:label\">Duration</span>\n      <span property=\"rdfs:comment\">Quantity: Duration (use  &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 duration format&lt;/a&gt;).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Quantity\">Quantity</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EducationEvent\">\n      <span class=\"h\" property=\"rdfs:label\">EducationEvent</span>\n      <span property=\"rdfs:comment\">Event type: Education event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HomeAndConstructionBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">HomeAndConstructionBusiness</span>\n      <span property=\"rdfs:comment\">A construction business.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Electrician\">\n      <span class=\"h\" property=\"rdfs:label\">Electrician</span>\n      <span property=\"rdfs:comment\">An electrician.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ElectronicsStore\">\n      <span class=\"h\" property=\"rdfs:label\">ElectronicsStore</span>\n      <span property=\"rdfs:comment\">An electronics store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ElementarySchool\">\n      <span class=\"h\" property=\"rdfs:label\">ElementarySchool</span>\n      <span property=\"rdfs:comment\">An elementary school.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Embassy\">\n      <span class=\"h\" property=\"rdfs:label\">Embassy</span>\n      <span property=\"rdfs:comment\">An embassy.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentBuilding\">GovernmentBuilding</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EmergencyService\">\n      <span class=\"h\" property=\"rdfs:label\">EmergencyService</span>\n      <span property=\"rdfs:comment\">An emergency service, such as a fire station or ER.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EmploymentAgency\">\n      <span class=\"h\" property=\"rdfs:label\">EmploymentAgency</span>\n      <span property=\"rdfs:comment\">An employment agency.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Energy\">\n      <span class=\"h\" property=\"rdfs:label\">Energy</span>\n      <span property=\"rdfs:comment\">Properties that take Energy as values are of the form &#39;&amp;lt;Number&amp;gt; &amp;lt;Energy unit of measure&amp;gt;&#39;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Quantity\">Quantity</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EventVenue\">\n      <span class=\"h\" property=\"rdfs:label\">EventVenue</span>\n      <span property=\"rdfs:comment\">An event venue.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ExerciseGym\">\n      <span class=\"h\" property=\"rdfs:label\">ExerciseGym</span>\n      <span property=\"rdfs:comment\">A gym.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PhysicalActivity\">\n      <span class=\"h\" property=\"rdfs:label\">PhysicalActivity</span>\n      <span property=\"rdfs:comment\">Any bodily activity that enhances or maintains physical fitness and overall health and wellness. Includes activity that is part of daily living and routine, structured exercise, and exercise prescribed as part of a medical treatment or recovery plan.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LifestyleModification\">LifestyleModification</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ExercisePlan\">\n      <span class=\"h\" property=\"rdfs:label\">ExercisePlan</span>\n      <span property=\"rdfs:comment\">Fitness-related activity designed for a specific health-related purpose, including defined exercise routines as well as activity prescribed by a clinician.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PhysicalActivity\">PhysicalActivity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FastFoodRestaurant\">\n      <span class=\"h\" property=\"rdfs:label\">FastFoodRestaurant</span>\n      <span property=\"rdfs:comment\">A fast-food restaurant.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Festival\">\n      <span class=\"h\" property=\"rdfs:label\">Festival</span>\n      <span property=\"rdfs:comment\">Event type: Festival.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FireStation\">\n      <span class=\"h\" property=\"rdfs:label\">FireStation</span>\n      <span property=\"rdfs:comment\">A fire station. With firemen.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EmergencyService\">EmergencyService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Number\">\n      <span class=\"h\" property=\"rdfs:label\">Number</span>\n      <span property=\"rdfs:comment\">Data type: Number.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Float\">\n      <span class=\"h\" property=\"rdfs:label\">Float</span>\n      <span property=\"rdfs:comment\">Data type: Floating number.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Florist\">\n      <span class=\"h\" property=\"rdfs:label\">Florist</span>\n      <span property=\"rdfs:comment\">A florist.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FoodEvent\">\n      <span class=\"h\" property=\"rdfs:label\">FoodEvent</span>\n      <span property=\"rdfs:comment\">Event type: Food event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FurnitureStore\">\n      <span class=\"h\" property=\"rdfs:label\">FurnitureStore</span>\n      <span property=\"rdfs:comment\">A furniture store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GardenStore\">\n      <span class=\"h\" property=\"rdfs:label\">GardenStore</span>\n      <span property=\"rdfs:comment\">A garden store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GasStation\">\n      <span class=\"h\" property=\"rdfs:label\">GasStation</span>\n      <span property=\"rdfs:comment\">A gas station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GatedResidenceCommunity\">\n      <span class=\"h\" property=\"rdfs:label\">GatedResidenceCommunity</span>\n      <span property=\"rdfs:comment\">Residence type: Gated community.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Residence\">Residence</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GeneralContractor\">\n      <span class=\"h\" property=\"rdfs:label\">GeneralContractor</span>\n      <span property=\"rdfs:comment\">A general contractor.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GeoCoordinates\">\n      <span class=\"h\" property=\"rdfs:label\">GeoCoordinates</span>\n      <span property=\"rdfs:comment\">The geographic coordinates of a place or event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GeoShape\">\n      <span class=\"h\" property=\"rdfs:label\">GeoShape</span>\n      <span property=\"rdfs:comment\">The geographic shape of a place.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GolfCourse\">\n      <span class=\"h\" property=\"rdfs:label\">GolfCourse</span>\n      <span property=\"rdfs:comment\">A golf course.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GovernmentOffice\">\n      <span class=\"h\" property=\"rdfs:label\">GovernmentOffice</span>\n      <span property=\"rdfs:comment\">A government office&amp;#x2014;for example, an IRS or DMV office.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GovernmentOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">GovernmentOrganization</span>\n      <span property=\"rdfs:comment\">A governmental organization or agency.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GroceryStore\">\n      <span class=\"h\" property=\"rdfs:label\">GroceryStore</span>\n      <span property=\"rdfs:comment\">A grocery store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HVACBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">HVACBusiness</span>\n      <span property=\"rdfs:comment\">An HVAC service.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HairSalon\">\n      <span class=\"h\" property=\"rdfs:label\">HairSalon</span>\n      <span property=\"rdfs:comment\">A hair salon.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HardwareStore\">\n      <span class=\"h\" property=\"rdfs:label\">HardwareStore</span>\n      <span property=\"rdfs:comment\">A hardware store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HealthClub\">\n      <span class=\"h\" property=\"rdfs:label\">HealthClub</span>\n      <span property=\"rdfs:comment\">A health club.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HighSchool\">\n      <span class=\"h\" property=\"rdfs:label\">HighSchool</span>\n      <span property=\"rdfs:comment\">A high school.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HinduTemple\">\n      <span class=\"h\" property=\"rdfs:label\">HinduTemple</span>\n      <span property=\"rdfs:comment\">A Hindu temple.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HobbyShop\">\n      <span class=\"h\" property=\"rdfs:label\">HobbyShop</span>\n      <span property=\"rdfs:comment\">A hobby store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HomeGoodsStore\">\n      <span class=\"h\" property=\"rdfs:label\">HomeGoodsStore</span>\n      <span property=\"rdfs:comment\">A home goods store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Hospital\">\n      <span class=\"h\" property=\"rdfs:label\">Hospital</span>\n      <span property=\"rdfs:comment\">A hospital.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EmergencyService\">EmergencyService</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Hostel\">\n      <span class=\"h\" property=\"rdfs:label\">Hostel</span>\n      <span property=\"rdfs:comment\">A hostel.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LodgingBusiness\">LodgingBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Hotel\">\n      <span class=\"h\" property=\"rdfs:label\">Hotel</span>\n      <span property=\"rdfs:comment\">A hotel.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LodgingBusiness\">LodgingBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/HousePainter\">\n      <span class=\"h\" property=\"rdfs:label\">HousePainter</span>\n      <span property=\"rdfs:comment\">A house painting service.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/IceCreamShop\">\n      <span class=\"h\" property=\"rdfs:label\">IceCreamShop</span>\n      <span property=\"rdfs:comment\">An ice cream shop</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ImageGallery\">\n      <span class=\"h\" property=\"rdfs:label\">ImageGallery</span>\n      <span property=\"rdfs:comment\">Web page type: Image gallery page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CollectionPage\">CollectionPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ImageObject\">\n      <span class=\"h\" property=\"rdfs:label\">ImageObject</span>\n      <span property=\"rdfs:comment\">An image file.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n       <link property=\"owl:equivalentClass\" href=\"dc:Image\"/>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ImagingTest\">\n      <span class=\"h\" property=\"rdfs:label\">ImagingTest</span>\n      <span property=\"rdfs:comment\">Any medical imaging modality typically used for diagnostic purposes.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InfectiousAgentClass\">\n      <span class=\"h\" property=\"rdfs:label\">InfectiousAgentClass</span>\n      <span property=\"rdfs:comment\">Classes of agents or pathogens that transmit infectious diseases. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span>\n     </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/Bacteria\">\n      <span class=\"h\" property=\"rdfs:label\">Bacteria</span>\n      <span property=\"rdfs:comment\">Pathogenic bacteria that cause bacterial infection.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/Fungus\">\n      <span class=\"h\" property=\"rdfs:label\">Fungus</span>\n      <span property=\"rdfs:comment\">Pathogenic fungus.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/MulticellularParasite\">\n      <span class=\"h\" property=\"rdfs:label\">MulticellularParasite</span>\n      <span property=\"rdfs:comment\">Multicellular parasite that causes an infection.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/Prion\">\n      <span class=\"h\" property=\"rdfs:label\">Prion</span>\n      <span property=\"rdfs:comment\">A prion is an infectious agent composed of protein in a misfolded form.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/Protozoa\">\n      <span class=\"h\" property=\"rdfs:label\">Protozoa</span>\n      <span property=\"rdfs:comment\">Single-celled organism that causes an infection.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/InfectiousAgentClass\" resource=\"http://schema.org/Virus\">\n      <span class=\"h\" property=\"rdfs:label\">Virus</span>\n      <span property=\"rdfs:comment\">Pathogenic virus that causes viral infection.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalCondition\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalCondition</span>\n      <span property=\"rdfs:comment\">Any condition of the human body that affects the normal functioning of a person, whether physically or mentally. Includes diseases, injuries, disabilities, disorders, syndromes, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InfectiousDisease\">\n      <span class=\"h\" property=\"rdfs:label\">InfectiousDisease</span>\n      <span property=\"rdfs:comment\">An infectious disease is a clinically evident human disease resulting from the presence of pathogenic microbial agents, like pathogenic viruses, pathogenic bacteria, fungi, protozoa, multicellular parasites, and prions. To be considered an infectious disease, such pathogens are known to be able to cause this disease.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InsuranceAgency\">\n      <span class=\"h\" property=\"rdfs:label\">InsuranceAgency</span>\n      <span property=\"rdfs:comment\">Insurance agency.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FinancialService\">FinancialService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Integer\">\n      <span class=\"h\" property=\"rdfs:label\">Integer</span>\n      <span property=\"rdfs:comment\">Data type: Integer.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InternetCafe\">\n      <span class=\"h\" property=\"rdfs:label\">InternetCafe</span>\n      <span property=\"rdfs:comment\">An internet cafe.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ItemAvailability\">\n      <span class=\"h\" property=\"rdfs:label\">ItemAvailability</span>\n      <span property=\"rdfs:comment\">A list of possible product availability options.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/Discontinued\">\n      <span class=\"h\" property=\"rdfs:label\">Discontinued</span>\n      <span property=\"rdfs:comment\">Indicates that the item has been discontinued.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/InStock\">\n      <span class=\"h\" property=\"rdfs:label\">InStock</span>\n      <span property=\"rdfs:comment\">Indicates that the item is in stock.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/InStoreOnly\">\n      <span class=\"h\" property=\"rdfs:label\">InStoreOnly</span>\n      <span property=\"rdfs:comment\">Indicates that the item is available only at physical locations.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/LimitedAvailability\">\n      <span class=\"h\" property=\"rdfs:label\">LimitedAvailability</span>\n      <span property=\"rdfs:comment\">Indicates that the item has limited availability.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/OnlineOnly\">\n      <span class=\"h\" property=\"rdfs:label\">OnlineOnly</span>\n      <span property=\"rdfs:comment\">Indicates that the item is available only online.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/OutOfStock\">\n      <span class=\"h\" property=\"rdfs:label\">OutOfStock</span>\n      <span property=\"rdfs:comment\">Indicates that the item is out of stock.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/PreOrder\">\n      <span class=\"h\" property=\"rdfs:label\">PreOrder</span>\n      <span property=\"rdfs:comment\">Indicates that the item is available for pre-order.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ItemAvailability\" resource=\"http://schema.org/SoldOut\">\n      <span class=\"h\" property=\"rdfs:label\">SoldOut</span>\n      <span property=\"rdfs:comment\">Indicates that the item has sold out.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ItemList\">\n      <span class=\"h\" property=\"rdfs:label\">ItemList</span>\n      <span property=\"rdfs:comment\">A list of items of any sort&amp;#x2014;for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ItemPage\">\n      <span class=\"h\" property=\"rdfs:label\">ItemPage</span>\n      <span property=\"rdfs:comment\">A page devoted to a single item, such as a particular product or hotel.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/JewelryStore\">\n      <span class=\"h\" property=\"rdfs:label\">JewelryStore</span>\n      <span property=\"rdfs:comment\">A jewelry store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/JobPosting\">\n      <span class=\"h\" property=\"rdfs:label\">JobPosting</span>\n      <span property=\"rdfs:comment\">A listing that describes a job opening in a certain organization.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Joint\">\n      <span class=\"h\" property=\"rdfs:label\">Joint</span>\n      <span property=\"rdfs:comment\">The anatomical location at which two or more bones make contact.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LakeBodyOfWater\">\n      <span class=\"h\" property=\"rdfs:label\">LakeBodyOfWater</span>\n      <span property=\"rdfs:comment\">A lake (for example, Lake Pontrachain).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LandmarksOrHistoricalBuildings\">\n      <span class=\"h\" property=\"rdfs:label\">LandmarksOrHistoricalBuildings</span>\n      <span property=\"rdfs:comment\">An historical landmark or building.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Language\">\n      <span class=\"h\" property=\"rdfs:label\">Language</span>\n      <span property=\"rdfs:comment\">Natural languages such as Spanish, Tamil, Hindi, English, etc. and programming languages such as Scheme and Lisp.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LegislativeBuilding\">\n      <span class=\"h\" property=\"rdfs:label\">LegislativeBuilding</span>\n      <span property=\"rdfs:comment\">A legislative building&amp;#x2014;for example, the state capitol.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentBuilding\">GovernmentBuilding</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Library\">\n      <span class=\"h\" property=\"rdfs:label\">Library</span>\n      <span property=\"rdfs:comment\">A library.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Ligament\">\n      <span class=\"h\" property=\"rdfs:label\">Ligament</span>\n      <span property=\"rdfs:comment\">A short band of tough, flexible, fibrous connective tissue that functions to connect multiple bones, cartilages, and structurally support joints.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LiquorStore\">\n      <span class=\"h\" property=\"rdfs:label\">LiquorStore</span>\n      <span property=\"rdfs:comment\">A liquor store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LiteraryEvent\">\n      <span class=\"h\" property=\"rdfs:label\">LiteraryEvent</span>\n      <span property=\"rdfs:comment\">Event type: Literary event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Locksmith\">\n      <span class=\"h\" property=\"rdfs:label\">Locksmith</span>\n      <span property=\"rdfs:comment\">A locksmith.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LymphaticVessel\">\n      <span class=\"h\" property=\"rdfs:label\">LymphaticVessel</span>\n      <span property=\"rdfs:comment\">A type of blood vessel that specifically carries lymph fluid unidirectionally toward the heart.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Map\">\n      <span class=\"h\" property=\"rdfs:label\">Map</span>\n      <span property=\"rdfs:comment\">A map.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Mass\">\n      <span class=\"h\" property=\"rdfs:label\">Mass</span>\n      <span property=\"rdfs:comment\">Properties that take Mass as values are of the form &#39;&amp;lt;Number&amp;gt; &amp;lt;Mass unit of measure&amp;gt;&#39;. E.g., &#39;7 kg&#39;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Quantity\">Quantity</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MaximumDoseSchedule\">\n      <span class=\"h\" property=\"rdfs:label\">MaximumDoseSchedule</span>\n      <span property=\"rdfs:comment\">The maximum dosing schedule considered safe for a drug or supplement as recommended by an authority or by the drug/supplement&#39;s manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PeopleAudience\">\n      <span class=\"h\" property=\"rdfs:label\">PeopleAudience</span>\n      <span property=\"rdfs:comment\">A set of characteristics belonging to people, e.g. who compose an item&#39;s target audience.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Audience\">Audience</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalAudience\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalAudience</span>\n      <span property=\"rdfs:comment\">Target audiences for medical web pages. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Audience\">Audience</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalAudience\" resource=\"http://schema.org/Clinician\">\n      <span class=\"h\" property=\"rdfs:label\">Clinician</span>\n      <span property=\"rdfs:comment\">Medical clinicians, including practicing physicians and other medical professionals involved in clinical practice.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalAudience\" resource=\"http://schema.org/MedicalResearcher\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalResearcher</span>\n      <span property=\"rdfs:comment\">Medical researchers.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalAudience\" resource=\"http://schema.org/Patient\">\n      <span class=\"h\" property=\"rdfs:label\">Patient</span>\n      <span property=\"rdfs:comment\">Patients.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalCause\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalCause</span>\n      <span property=\"rdfs:comment\">The causative agent(s) that are responsible for the pathophysiologic process that eventually results in a medical condition, symptom or sign. In this schema, unless otherwise specified this is meant to be the proximate cause of the medical condition, symptom or sign. The proximate cause is defined as the causative agent that most directly results in the medical condition, symptom or sign. For example, the HIV virus could be considered a cause of AIDS. Or in a diagnostic context, if a patient fell and sustained a hip fracture and two days later sustained a pulmonary embolism which eventuated in a cardiac arrest, the cause of the cardiac arrest (the proximate cause) would be the pulmonary embolism and not the fall. &lt;p&gt;Medical causes can include cardiovascular, chemical, dermatologic, endocrine, environmental, gastroenterologic, genetic, hematologic, gynecologic, iatrogenic, infectious, musculoskeletal, neurologic, nutritional, obstetric, oncologic, otolaryngologic, pharmacologic, psychiatric, pulmonary, renal, rheumatologic, toxic, traumatic, or urologic causes; medical conditions can be causes as well.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalClinic\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalClinic</span>\n      <span property=\"rdfs:comment\">A medical clinic.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalCode\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalCode</span>\n      <span property=\"rdfs:comment\">A code for a medical entity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalConditionStage\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalConditionStage</span>\n      <span property=\"rdfs:comment\">A stage of a medical condition, such as &#39;Stage IIIa&#39;.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIntangible\">MedicalIntangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalContraindication\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalContraindication</span>\n      <span property=\"rdfs:comment\">A condition or factor that serves as a reason to withhold a certain medical therapy. Contraindications can be absolute (there are no reasonable circumstances for undertaking a course of action) or relative (the patient is at higher risk of complications, but that these risks may be outweighed by other considerations or mitigated by other measures).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalDevice\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalDevice</span>\n      <span property=\"rdfs:comment\">Any object used in a medical capacity, such as to diagnose or treat a patient.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalDevicePurpose\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalDevicePurpose</span>\n      <span property=\"rdfs:comment\">Categories of medical devices, organized by the purpose or intended use of the device.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalDevicePurpose\" resource=\"http://schema.org/Diagnostic\">\n      <span class=\"h\" property=\"rdfs:label\">Diagnostic</span>\n      <span property=\"rdfs:comment\">A medical device used for diagnostic purposes.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalDevicePurpose\" resource=\"http://schema.org/Therapeutic\">\n      <span class=\"h\" property=\"rdfs:label\">Therapeutic</span>\n      <span property=\"rdfs:comment\">A medical device used for therapeutic purposes.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalEvidenceLevel\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalEvidenceLevel</span>\n      <span property=\"rdfs:comment\">Level of evidence for a medical guideline. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalEvidenceLevel\" resource=\"http://schema.org/EvidenceLevelA\">\n      <span class=\"h\" property=\"rdfs:label\">EvidenceLevelA</span>\n      <span property=\"rdfs:comment\">Data derived from multiple randomized clinical trials or meta-analyses.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalEvidenceLevel\" resource=\"http://schema.org/EvidenceLevelB\">\n      <span class=\"h\" property=\"rdfs:label\">EvidenceLevelB</span>\n      <span property=\"rdfs:comment\">Data derived from a single randomized trial, or nonrandomized studies.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalEvidenceLevel\" resource=\"http://schema.org/EvidenceLevelC\">\n      <span class=\"h\" property=\"rdfs:label\">EvidenceLevelC</span>\n      <span property=\"rdfs:comment\">Only consensus opinion of experts, case studies, or standard-of-care.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalGuideline\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalGuideline</span>\n      <span property=\"rdfs:comment\">Any recommendation made by a standard society (e.g. ACC/AHA) or consensus statement that denotes how to diagnose and treat a particular condition. Note: this type should be used to tag the actual guideline recommendation; if the guideline recommendation occurs in a larger scholarly article, use MedicalScholarlyArticle to tag the overall article, not this type. Note also: the organization making the recommendation should be captured in the recognizingAuthority base property of MedicalEntity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalGuidelineContraindication\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalGuidelineContraindication</span>\n      <span property=\"rdfs:comment\">A guideline contraindication that designates a process as harmful and where quality of the data supporting the contraindication is sound.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalGuidelineRecommendation\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalGuidelineRecommendation</span>\n      <span property=\"rdfs:comment\">A guideline recommendation that is regarded as efficacious and where quality of the data supporting the recommendation is sound.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalImagingTechnique\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalImagingTechnique</span>\n      <span property=\"rdfs:comment\">Any medical imaging modality typically used for diagnostic purposes. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalImagingTechnique\" resource=\"http://schema.org/CT\">\n      <span class=\"h\" property=\"rdfs:label\">CT</span>\n      <span property=\"rdfs:comment\">X-ray computed tomography imaging.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalImagingTechnique\" resource=\"http://schema.org/MRI\">\n      <span class=\"h\" property=\"rdfs:label\">MRI</span>\n      <span property=\"rdfs:comment\">Magnetic resonance imaging.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalImagingTechnique\" resource=\"http://schema.org/PET\">\n      <span class=\"h\" property=\"rdfs:label\">PET</span>\n      <span property=\"rdfs:comment\">Positron emission tomography imaging.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalImagingTechnique\" resource=\"http://schema.org/Ultrasound\">\n      <span class=\"h\" property=\"rdfs:label\">Ultrasound</span>\n      <span property=\"rdfs:comment\">Ultrasound imaging.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalImagingTechnique\" resource=\"http://schema.org/XRay\">\n      <span class=\"h\" property=\"rdfs:label\">XRay</span>\n      <span property=\"rdfs:comment\">X-ray imaging.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalStudy\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalStudy</span>\n      <span property=\"rdfs:comment\">A medical study is an umbrella type covering all kinds of research studies relating to human medicine or health, including observational studies and interventional trials and registries, randomized, controlled or not. When the specific type of study is known, use one of the extensions of this type, such as MedicalTrial or MedicalObservationalStudy. Also, note that this type should be used to mark up data that describes the study itself; to tag an article that publishes the results of a study, use MedicalScholarlyArticle. Note: use the code property of MedicalEntity to store study IDs, e.g. clinicaltrials.gov ID.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalObservationalStudy\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalObservationalStudy</span>\n      <span property=\"rdfs:comment\">An observational study is a type of medical study that attempts to infer the possible effect of a treatment through observation of a cohort of subjects over a period of time. In an observational study, the assignment of subjects into treatment groups versus control groups is outside the control of the investigator. This is in contrast with controlled studies, such as the randomized controlled trials represented by MedicalTrial, where each subject is randomly assigned to a treatment group or a control group before the start of the treatment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalObservationalStudyDesign\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalObservationalStudyDesign</span>\n      <span property=\"rdfs:comment\">Design models for observational medical studies. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/CaseSeries\">\n      <span class=\"h\" property=\"rdfs:label\">CaseSeries</span>\n      <span property=\"rdfs:comment\">A case series (also known as a clinical series) is a medical research study that tracks patients with a known exposure given similar treatment or examines their medical records for exposure and outcome. A case series can be retrospective or prospective and usually involves a smaller number of patients than the more powerful case-control studies or randomized controlled trials. Case series may be consecutive or non-consecutive, depending on whether all cases presenting to the reporting authors over a period of time were included, or only a selection.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/CohortStudy\">\n      <span class=\"h\" property=\"rdfs:label\">CohortStudy</span>\n      <span property=\"rdfs:comment\">Also known as a panel study. A cohort study is a form of longitudinal study used in medicine and social science. It is one type of study design and should be compared with a cross-sectional study.  A cohort is a group of people who share a common characteristic or experience within a defined period (e.g., are born, leave school, lose their job, are exposed to a drug or a vaccine, etc.). The comparison group may be the general population from which the cohort is drawn, or it may be another cohort of persons thought to have had little or no exposure to the substance under investigation, but otherwise similar. Alternatively, subgroups within the cohort may be compared with each other.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/CrossSectional\">\n      <span class=\"h\" property=\"rdfs:label\">CrossSectional</span>\n      <span property=\"rdfs:comment\">Studies carried out on pre-existing data (usually from 'snapshot' surveys), such as that collected by the Census Bureau. Sometimes called Prevalence Studies.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/Longitudinal\">\n      <span class=\"h\" property=\"rdfs:label\">Longitudinal</span>\n      <span property=\"rdfs:comment\">Unlike cross-sectional studies, longitudinal studies track the same people, and therefore the differences observed in those people are less likely to be the result of cultural differences across generations. Longitudinal studies are also used in medicine to uncover predictors of certain diseases.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/Observational\">\n      <span class=\"h\" property=\"rdfs:label\">Observational</span>\n      <span property=\"rdfs:comment\">An observational study design.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalObservationalStudyDesign\" resource=\"http://schema.org/Registry\">\n      <span class=\"h\" property=\"rdfs:label\">Registry</span>\n      <span property=\"rdfs:comment\">A registry-based study design.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalProcedureType\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalProcedureType</span>\n      <span property=\"rdfs:comment\">An enumeration that describes different types of medical procedures.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalProcedureType\" resource=\"http://schema.org/NoninvasiveProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">NoninvasiveProcedure</span>\n      <span property=\"rdfs:comment\">A type of medical procedure that involves noninvasive techniques.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalProcedureType\" resource=\"http://schema.org/PercutaneousProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">PercutaneousProcedure</span>\n      <span property=\"rdfs:comment\">A type of medical procedure that involves percutaneous techniques, where access to organs or tissue is achieved via needle-puncture of the skin. For example, catheter-based procedures like stent delivery.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalProcedureType\" resource=\"http://schema.org/SurgicalProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">SurgicalProcedure</span>\n      <span property=\"rdfs:comment\">A type of medical procedure that involves invasive surgical techniques.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalRiskEstimator\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalRiskEstimator</span>\n      <span property=\"rdfs:comment\">Any rule set or interactive tool for estimating the risk of developing a complication or condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalRiskCalculator\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalRiskCalculator</span>\n      <span property=\"rdfs:comment\">A complex mathematical calculation requiring an online calculator, used to assess prognosis. Note: use the url property of Thing to record any URLs for online calculators.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalRiskEstimator\">MedicalRiskEstimator</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalRiskFactor\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalRiskFactor</span>\n      <span property=\"rdfs:comment\">A risk factor is anything that increases a person&#39;s likelihood of developing or contracting a disease, medical condition, or complication.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalRiskScore\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalRiskScore</span>\n      <span property=\"rdfs:comment\">A simple system that adds up the number of risk factors to yield a score that is associated with prognosis, e.g. CHAD score, TIMI risk score.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalRiskEstimator\">MedicalRiskEstimator</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ScholarlyArticle\">\n      <span class=\"h\" property=\"rdfs:label\">ScholarlyArticle</span>\n      <span property=\"rdfs:comment\">A scholarly article.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Article\">Article</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalScholarlyArticle\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalScholarlyArticle</span>\n      <span property=\"rdfs:comment\">A scholarly article in the medical domain.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ScholarlyArticle\">ScholarlyArticle</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalSignOrSymptom\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalSignOrSymptom</span>\n      <span property=\"rdfs:comment\">Any indication of the existence of a medical condition or disease.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalSign\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalSign</span>\n      <span property=\"rdfs:comment\">Any physical manifestation of a person&#39;s medical condition discoverable by objective diagnostic tests or physical examination.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Specialty\">\n      <span class=\"h\" property=\"rdfs:label\">Specialty</span>\n      <span property=\"rdfs:comment\">Any branch of a field in which people typically develop specific expertise, usually after significant study, time, and effort.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalSpecialty\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalSpecialty</span>\n      <span property=\"rdfs:comment\">Any specific branch of medical science or practice. Medical specialities include clinical specialties that pertain to particular organ systems and their respective disease states, as well as allied health specialties. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Specialty\">Specialty</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Anesthesia\">\n      <span class=\"h\" property=\"rdfs:label\">Anesthesia</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to study of anesthetics and their application.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Cardiovascular\">\n      <span class=\"h\" property=\"rdfs:label\">Cardiovascular</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of heart and vasculature.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/CommunityHealth\">\n      <span class=\"h\" property=\"rdfs:label\">CommunityHealth</span>\n      <span property=\"rdfs:comment\">Community health.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Dentistry\">\n      <span class=\"h\" property=\"rdfs:label\">Dentistry</span>\n      <span property=\"rdfs:comment\">Dentistry.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Dermatologic\">\n      <span class=\"h\" property=\"rdfs:label\">Dermatologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of skin.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/DietNutrition\">\n      <span class=\"h\" property=\"rdfs:label\">DietNutrition</span>\n      <span property=\"rdfs:comment\">Diet and nutrition.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Emergency\">\n      <span class=\"h\" property=\"rdfs:label\">Emergency</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is deals with the evaluation and initial treatment of medical conditions caused by trauma or sudden illness.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Endocrine\">\n      <span class=\"h\" property=\"rdfs:label\">Endocrine</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of endocrine glands and their secretions.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Gastroenterologic\">\n      <span class=\"h\" property=\"rdfs:label\">Gastroenterologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of digestive system.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Genetic\">\n      <span class=\"h\" property=\"rdfs:label\">Genetic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to hereditary transmission and the variation of inherited characteristics and disorders.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Geriatric\">\n      <span class=\"h\" property=\"rdfs:label\">Geriatric</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with the diagnosis and treatment of diseases, debilities and provision of care to the aged.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Gynecologic\">\n      <span class=\"h\" property=\"rdfs:label\">Gynecologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to the health care of women, particularly in the diagnosis and treatment of disorders affecting the female reproductive system.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Hematologic\">\n      <span class=\"h\" property=\"rdfs:label\">Hematologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of blood and blood producing organs.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Infectious\">\n      <span class=\"h\" property=\"rdfs:label\">Infectious</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of bacterial, viral, fungal and parasitic infections.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/LaboratoryScience\">\n      <span class=\"h\" property=\"rdfs:label\">LaboratoryScience</span>\n      <span property=\"rdfs:comment\">Laboratory science.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Midwifery\">\n      <span class=\"h\" property=\"rdfs:label\">Midwifery</span>\n      <span property=\"rdfs:comment\">Midwifery.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Musculoskeletal\">\n      <span class=\"h\" property=\"rdfs:label\">Musculoskeletal</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to diagnosis and treatment of disorders of muscles, ligaments and skeletal system.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Neurologic\">\n      <span class=\"h\" property=\"rdfs:label\">Neurologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that studies the nerves and nervous system and its respective disease states.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Nursing\">\n      <span class=\"h\" property=\"rdfs:label\">Nursing</span>\n      <span property=\"rdfs:comment\">Nursing.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Obstetric\">\n      <span class=\"h\" property=\"rdfs:label\">Obstetric</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that specializes in the care of women during the prenatal and postnatal care and with the delivery of the child.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/OccupationalTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">OccupationalTherapy</span>\n      <span property=\"rdfs:comment\">Occupational therapy.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Oncologic\">\n      <span class=\"h\" property=\"rdfs:label\">Oncologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that deals with benign and malignant tumors, including the study of their development, diagnosis, treatment and prevention.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Optometic\">\n      <span class=\"h\" property=\"rdfs:label\">Optometic</span>\n      <span property=\"rdfs:comment\">Optometry.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Otolaryngologic\">\n      <span class=\"h\" property=\"rdfs:label\">Otolaryngologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with the ear, nose and throat and their respective disease states.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Pathology\">\n      <span class=\"h\" property=\"rdfs:label\">Pathology</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with the study of the cause, origin and nature of a disease state, including its consequences as a result of manifestation of the disease. In clinical care, the term is used to designate a branch of medicine using laboratory tests to diagnose and determine the prognostic significance of illness.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Pediatric\">\n      <span class=\"h\" property=\"rdfs:label\">Pediatric</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that specializes in the care of infants, children and adolescents.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/PharmacySpecialty\">\n      <span class=\"h\" property=\"rdfs:label\">PharmacySpecialty</span>\n      <span property=\"rdfs:comment\">Pharmacy.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Physiotherapy\">\n      <span class=\"h\" property=\"rdfs:label\">Physiotherapy</span>\n      <span property=\"rdfs:comment\">Physiotherapy.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/PlasticSurgery\">\n      <span class=\"h\" property=\"rdfs:label\">PlasticSurgery</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to therapeutic or cosmetic repair or re-formation of missing, injured or malformed tissues or body parts by manual and instrumental means.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Podiatric\">\n      <span class=\"h\" property=\"rdfs:label\">Podiatric</span>\n      <span property=\"rdfs:comment\">Podiatry.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/PrimaryCare\">\n      <span class=\"h\" property=\"rdfs:label\">PrimaryCare</span>\n      <span property=\"rdfs:comment\">Primary care.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Psychiatric\">\n      <span class=\"h\" property=\"rdfs:label\">Psychiatric</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with the study, treatment, and prevention of mental illness, using both medical and psychological therapies.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/PublicHealth\">\n      <span class=\"h\" property=\"rdfs:label\">PublicHealth</span>\n      <span property=\"rdfs:comment\">Environment and public health.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Pulmonary\">\n      <span class=\"h\" property=\"rdfs:label\">Pulmonary</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to the study of the respiratory system and its respective disease states.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Radiograpy\">\n      <span class=\"h\" property=\"rdfs:label\">Radiograpy</span>\n      <span property=\"rdfs:comment\">Radiography.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Renal\">\n      <span class=\"h\" property=\"rdfs:label\">Renal</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to the study of the kidneys and its respective disease states.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/RespiratoryTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">RespiratoryTherapy</span>\n      <span property=\"rdfs:comment\">Respiratory therapy.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Rheumatologic\">\n      <span class=\"h\" property=\"rdfs:label\">Rheumatologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that deals with the study and treatment of rheumatic, autoimmune or joint diseases.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/SpeechPathology\">\n      <span class=\"h\" property=\"rdfs:label\">SpeechPathology</span>\n      <span property=\"rdfs:comment\">Speech pathology.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Surgical\">\n      <span class=\"h\" property=\"rdfs:label\">Surgical</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that pertains to treating diseases, injuries and deformities by manual and instrumental means.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Toxicologic\">\n      <span class=\"h\" property=\"rdfs:label\">Toxicologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with poisons, their nature, effects and detection and involved in the treatment of poisoning.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalSpecialty\" resource=\"http://schema.org/Urologic\">\n      <span class=\"h\" property=\"rdfs:label\">Urologic</span>\n      <span property=\"rdfs:comment\">A specific branch of medical science that is concerned with the diagnosis and treatment of diseases pertaining to the urinary tract and the urogenital system.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalStudyStatus\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalStudyStatus</span>\n      <span property=\"rdfs:comment\">The status of a medical study. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/ActiveNotRecruiting\">\n      <span class=\"h\" property=\"rdfs:label\">ActiveNotRecruiting</span>\n      <span property=\"rdfs:comment\">Active, but not recruiting new participants.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/Completed\">\n      <span class=\"h\" property=\"rdfs:label\">Completed</span>\n      <span property=\"rdfs:comment\">Completed.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/EnrollingByInvitation\">\n      <span class=\"h\" property=\"rdfs:label\">EnrollingByInvitation</span>\n      <span property=\"rdfs:comment\">Enrolling participants by invitation only.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/NotYetRecruiting\">\n      <span class=\"h\" property=\"rdfs:label\">NotYetRecruiting</span>\n      <span property=\"rdfs:comment\">Not yet recruiting.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/Recruiting\">\n      <span class=\"h\" property=\"rdfs:label\">Recruiting</span>\n      <span property=\"rdfs:comment\">Recruiting participants.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/ResultsAvailable\">\n      <span class=\"h\" property=\"rdfs:label\">ResultsAvailable</span>\n      <span property=\"rdfs:comment\">Results are available.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/ResultsNotAvailable\">\n      <span class=\"h\" property=\"rdfs:label\">ResultsNotAvailable</span>\n      <span property=\"rdfs:comment\">Results are not available.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/Suspended\">\n      <span class=\"h\" property=\"rdfs:label\">Suspended</span>\n      <span property=\"rdfs:comment\">Suspended.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/Terminated\">\n      <span class=\"h\" property=\"rdfs:label\">Terminated</span>\n      <span property=\"rdfs:comment\">Terminated.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalStudyStatus\" resource=\"http://schema.org/Withdrawn\">\n      <span class=\"h\" property=\"rdfs:label\">Withdrawn</span>\n      <span property=\"rdfs:comment\">Withdrawn.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalSymptom\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalSymptom</span>\n      <span property=\"rdfs:comment\">Any indication of the existence of a medical condition or disease that is apparent to the patient.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalTestPanel\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalTestPanel</span>\n      <span property=\"rdfs:comment\">Any collection of tests commonly ordered together.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalTrial\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalTrial</span>\n      <span property=\"rdfs:comment\">A medical trial is a type of medical study that uses scientific process used to compare the safety and efficacy of medical therapies or medical procedures. In general, medical trials are controlled and subjects are allocated at random to the different treatment and/or control groups.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalTrialDesign\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalTrialDesign</span>\n      <span property=\"rdfs:comment\">Design models for medical trials. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/DoubleBlindedTrial\">\n      <span class=\"h\" property=\"rdfs:label\">DoubleBlindedTrial</span>\n      <span property=\"rdfs:comment\">A trial design in which neither the researcher nor the patient knows the details of the treatment the patient was randomly assigned to.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/InternationalTrial\">\n      <span class=\"h\" property=\"rdfs:label\">InternationalTrial</span>\n      <span property=\"rdfs:comment\">An international trial.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/MultiCenterTrial\">\n      <span class=\"h\" property=\"rdfs:label\">MultiCenterTrial</span>\n      <span property=\"rdfs:comment\">A trial that takes place at multiple centers.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/OpenTrial\">\n      <span class=\"h\" property=\"rdfs:label\">OpenTrial</span>\n      <span property=\"rdfs:comment\">A trial design in which the researcher knows the full details of the treatment, and so does the patient.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/PlaceboControlledTrial\">\n      <span class=\"h\" property=\"rdfs:label\">PlaceboControlledTrial</span>\n      <span property=\"rdfs:comment\">A placebo-controlled trial design.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/RandomizedTrial\">\n      <span class=\"h\" property=\"rdfs:label\">RandomizedTrial</span>\n      <span property=\"rdfs:comment\">A randomized trial design.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/SingleBlindedTrial\">\n      <span class=\"h\" property=\"rdfs:label\">SingleBlindedTrial</span>\n      <span property=\"rdfs:comment\">A trial design in which the researcher knows which treatment the patient was randomly assigned to but the patient does not.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/SingleCenterTrial\">\n      <span class=\"h\" property=\"rdfs:label\">SingleCenterTrial</span>\n      <span property=\"rdfs:comment\">A trial that takes place at a single center.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicalTrialDesign\" resource=\"http://schema.org/TripleBlindedTrial\">\n      <span class=\"h\" property=\"rdfs:label\">TripleBlindedTrial</span>\n      <span property=\"rdfs:comment\">A trial design in which neither the researcher, the person administering the therapy nor the patient knows the details of the treatment the patient was randomly assigned to.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicalWebPage\">\n      <span class=\"h\" property=\"rdfs:label\">MedicalWebPage</span>\n      <span property=\"rdfs:comment\">A web page that provides medical information.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MedicineSystem\">\n      <span class=\"h\" property=\"rdfs:label\">MedicineSystem</span>\n      <span property=\"rdfs:comment\">Systems of medical practice.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/Ayurvedic\">\n      <span class=\"h\" property=\"rdfs:label\">Ayurvedic</span>\n      <span property=\"rdfs:comment\">A system of medicine that originated in India over thousands of years and that focuses on integrating and balancing the body, mind, and spirit.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/Chiropractic\">\n      <span class=\"h\" property=\"rdfs:label\">Chiropractic</span>\n      <span property=\"rdfs:comment\">A system of medicine focused on the relationship between the body's structure, mainly the spine, and its functioning.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/Homeopathic\">\n      <span class=\"h\" property=\"rdfs:label\">Homeopathic</span>\n      <span property=\"rdfs:comment\">A system of medicine based on the principle that a disease can be cured by a substance that produces similar symptoms in healthy people.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/Osteopathic\">\n      <span class=\"h\" property=\"rdfs:label\">Osteopathic</span>\n      <span property=\"rdfs:comment\">A system of medicine focused on promoting the body's innate ability to heal itself.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/TraditionalChinese\">\n      <span class=\"h\" property=\"rdfs:label\">TraditionalChinese</span>\n      <span property=\"rdfs:comment\">A system of medicine based on common theoretical concepts that originated in China and evolved over thousands of years, that uses herbs, acupuncture, exercise, massage, dietary therapy, and other methods to treat a wide range of conditions.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/MedicineSystem\" resource=\"http://schema.org/WesternConventional\">\n      <span class=\"h\" property=\"rdfs:label\">WesternConventional</span>\n      <span property=\"rdfs:comment\">The conventional Western system of medicine, that aims to apply the best available evidence gained from the scientific method to clinical decision making. Also known as conventional or Western medicine.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MensClothingStore\">\n      <span class=\"h\" property=\"rdfs:label\">MensClothingStore</span>\n      <span property=\"rdfs:comment\">A men&#39;s clothing store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MiddleSchool\">\n      <span class=\"h\" property=\"rdfs:label\">MiddleSchool</span>\n      <span property=\"rdfs:comment\">A middle school.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SoftwareApplication\">\n      <span class=\"h\" property=\"rdfs:label\">SoftwareApplication</span>\n      <span property=\"rdfs:comment\">A software application.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MobileApplication\">\n      <span class=\"h\" property=\"rdfs:label\">MobileApplication</span>\n      <span property=\"rdfs:comment\">A mobile software application.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MobilePhoneStore\">\n      <span class=\"h\" property=\"rdfs:label\">MobilePhoneStore</span>\n      <span property=\"rdfs:comment\">A mobile-phone store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Mosque\">\n      <span class=\"h\" property=\"rdfs:label\">Mosque</span>\n      <span property=\"rdfs:comment\">A mosque.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Motel\">\n      <span class=\"h\" property=\"rdfs:label\">Motel</span>\n      <span property=\"rdfs:comment\">A motel.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LodgingBusiness\">LodgingBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MotorcycleDealer\">\n      <span class=\"h\" property=\"rdfs:label\">MotorcycleDealer</span>\n      <span property=\"rdfs:comment\">A motorcycle dealer.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MotorcycleRepair\">\n      <span class=\"h\" property=\"rdfs:label\">MotorcycleRepair</span>\n      <span property=\"rdfs:comment\">A motorcycle repair shop.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AutomotiveBusiness\">AutomotiveBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Mountain\">\n      <span class=\"h\" property=\"rdfs:label\">Mountain</span>\n      <span property=\"rdfs:comment\">A mountain, like Mount Whitney or Mount Everest</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Landform\">Landform</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Movie\">\n      <span class=\"h\" property=\"rdfs:label\">Movie</span>\n      <span property=\"rdfs:comment\">A movie.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MovieRentalStore\">\n      <span class=\"h\" property=\"rdfs:label\">MovieRentalStore</span>\n      <span property=\"rdfs:comment\">A movie rental store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MovieTheater\">\n      <span class=\"h\" property=\"rdfs:label\">MovieTheater</span>\n      <span property=\"rdfs:comment\">A movie theater.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MovingCompany\">\n      <span class=\"h\" property=\"rdfs:label\">MovingCompany</span>\n      <span property=\"rdfs:comment\">A moving company.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Muscle\">\n      <span class=\"h\" property=\"rdfs:label\">Muscle</span>\n      <span property=\"rdfs:comment\">A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Museum\">\n      <span class=\"h\" property=\"rdfs:label\">Museum</span>\n      <span property=\"rdfs:comment\">A museum.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicPlaylist\">\n      <span class=\"h\" property=\"rdfs:label\">MusicPlaylist</span>\n      <span property=\"rdfs:comment\">A collection of music tracks in playlist form.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicAlbum\">\n      <span class=\"h\" property=\"rdfs:label\">MusicAlbum</span>\n      <span property=\"rdfs:comment\">A collection of music tracks.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MusicPlaylist\">MusicPlaylist</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicEvent\">\n      <span class=\"h\" property=\"rdfs:label\">MusicEvent</span>\n      <span property=\"rdfs:comment\">Event type: Music event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicGroup\">\n      <span class=\"h\" property=\"rdfs:label\">MusicGroup</span>\n      <span property=\"rdfs:comment\">A musical group, such as a band, an orchestra, or a choir. Can also be a solo musician.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PerformingGroup\">PerformingGroup</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicRecording\">\n      <span class=\"h\" property=\"rdfs:label\">MusicRecording</span>\n      <span property=\"rdfs:comment\">A music recording (track), usually a single song.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicStore\">\n      <span class=\"h\" property=\"rdfs:label\">MusicStore</span>\n      <span property=\"rdfs:comment\">A music store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicVenue\">\n      <span class=\"h\" property=\"rdfs:label\">MusicVenue</span>\n      <span property=\"rdfs:comment\">A music venue.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MusicVideoObject\">\n      <span class=\"h\" property=\"rdfs:label\">MusicVideoObject</span>\n      <span property=\"rdfs:comment\">A music video file.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/NGO\">\n      <span class=\"h\" property=\"rdfs:label\">NGO</span>\n      <span property=\"rdfs:comment\">Organization: Non-governmental Organization.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/NailSalon\">\n      <span class=\"h\" property=\"rdfs:label\">NailSalon</span>\n      <span property=\"rdfs:comment\">A nail salon.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Nerve\">\n      <span class=\"h\" property=\"rdfs:label\">Nerve</span>\n      <span property=\"rdfs:comment\">A common pathway for the electrochemical nerve impulses that are transmitted along each of the axons.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/NewsArticle\">\n      <span class=\"h\" property=\"rdfs:label\">NewsArticle</span>\n      <span property=\"rdfs:comment\">A news article</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Article\">Article</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/NightClub\">\n      <span class=\"h\" property=\"rdfs:label\">NightClub</span>\n      <span property=\"rdfs:comment\">A nightclub or discotheque.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Notary\">\n      <span class=\"h\" property=\"rdfs:label\">Notary</span>\n      <span property=\"rdfs:comment\">A notary.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/NutritionInformation\">\n      <span class=\"h\" property=\"rdfs:label\">NutritionInformation</span>\n      <span property=\"rdfs:comment\">Nutritional information about the recipe.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OceanBodyOfWater\">\n      <span class=\"h\" property=\"rdfs:label\">OceanBodyOfWater</span>\n      <span property=\"rdfs:comment\">An ocean (for example, the Pacific).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OfferItemCondition\">\n      <span class=\"h\" property=\"rdfs:label\">OfferItemCondition</span>\n      <span property=\"rdfs:comment\">A list of possible conditions for the item.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/OfferItemCondition\" resource=\"http://schema.org/DamagedCondition\">\n      <span class=\"h\" property=\"rdfs:label\">DamagedCondition</span>\n      <span property=\"rdfs:comment\">Indicates that the item is damaged.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OfferItemCondition\" resource=\"http://schema.org/NewCondition\">\n      <span class=\"h\" property=\"rdfs:label\">NewCondition</span>\n      <span property=\"rdfs:comment\">Indicates that the item is new.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OfferItemCondition\" resource=\"http://schema.org/RefurbishedCondition\">\n      <span class=\"h\" property=\"rdfs:label\">RefurbishedCondition</span>\n      <span property=\"rdfs:comment\">Indicates that the item is refurbished.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OfferItemCondition\" resource=\"http://schema.org/UsedCondition\">\n      <span class=\"h\" property=\"rdfs:label\">UsedCondition</span>\n      <span property=\"rdfs:comment\">Indicates that the item is used.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OfficeEquipmentStore\">\n      <span class=\"h\" property=\"rdfs:label\">OfficeEquipmentStore</span>\n      <span property=\"rdfs:comment\">An office equipment store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Optician\">\n      <span class=\"h\" property=\"rdfs:label\">Optician</span>\n      <span property=\"rdfs:comment\">An optician&#39;s store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OutletStore\">\n      <span class=\"h\" property=\"rdfs:label\">OutletStore</span>\n      <span property=\"rdfs:comment\">An outlet store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Painting\">\n      <span class=\"h\" property=\"rdfs:label\">Painting</span>\n      <span property=\"rdfs:comment\">A painting.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PalliativeProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">PalliativeProcedure</span>\n      <span property=\"rdfs:comment\">A medical procedure intended primarily for palliative purposes, aimed at relieving the symptoms of an underlying health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Park\">\n      <span class=\"h\" property=\"rdfs:label\">Park</span>\n      <span property=\"rdfs:comment\">A park.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ParkingFacility\">\n      <span class=\"h\" property=\"rdfs:label\">ParkingFacility</span>\n      <span property=\"rdfs:comment\">A parking lot or other parking facility.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PathologyTest\">\n      <span class=\"h\" property=\"rdfs:label\">PathologyTest</span>\n      <span property=\"rdfs:comment\">A medical test performed by a laboratory that typically involves examination of a tissue sample by a pathologist.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PawnShop\">\n      <span class=\"h\" property=\"rdfs:label\">PawnShop</span>\n      <span property=\"rdfs:comment\">A pawn store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PerformingArtsTheater\">\n      <span class=\"h\" property=\"rdfs:label\">PerformingArtsTheater</span>\n      <span property=\"rdfs:comment\">A theater or other performing art center.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Person\">\n      <span class=\"h\" property=\"rdfs:label\">Person</span>\n      <span property=\"rdfs:comment\">A person (alive, dead, undead, or fictional).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n       <link property=\"owl:equivalentClass\" href=\"foaf:Person\" />\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PetStore\">\n      <span class=\"h\" property=\"rdfs:label\">PetStore</span>\n      <span property=\"rdfs:comment\">A pet store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Pharmacy\">\n      <span class=\"h\" property=\"rdfs:label\">Pharmacy</span>\n      <span property=\"rdfs:comment\">A pharmacy or drugstore.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Photograph\">\n      <span class=\"h\" property=\"rdfs:label\">Photograph</span>\n      <span property=\"rdfs:comment\">A photograph.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PhysicalActivityCategory\">\n      <span class=\"h\" property=\"rdfs:label\">PhysicalActivityCategory</span>\n      <span property=\"rdfs:comment\">Categories of physical activity, organized by physiologic classification.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/AerobicActivity\">\n      <span class=\"h\" property=\"rdfs:label\">AerobicActivity</span>\n      <span property=\"rdfs:comment\">Physical activity of relatively low intensity that depends primarily on the aerobic energy-generating process; during activity, the aerobic metabolism uses oxygen to adequately meet energy demands during exercise.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/AnaerobicActivity\">\n      <span class=\"h\" property=\"rdfs:label\">AnaerobicActivity</span>\n      <span property=\"rdfs:comment\">Physical activity that is of high-intensity which utilizes the anaerobic metabolism of the body.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/Balance\">\n      <span class=\"h\" property=\"rdfs:label\">Balance</span>\n      <span property=\"rdfs:comment\">Physical activity that is engaged to help maintain posture and balance.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/Flexibility\">\n      <span class=\"h\" property=\"rdfs:label\">Flexibility</span>\n      <span property=\"rdfs:comment\">Physical activity that is engaged in to improve joint and muscle flexibility.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/LeisureTimeActivity\">\n      <span class=\"h\" property=\"rdfs:label\">LeisureTimeActivity</span>\n      <span property=\"rdfs:comment\">Any physical activity engaged in for recreational purposes. Examples may include ballroom dancing, roller skating, canoeing, fishing, etc.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/OccupationalActivity\">\n      <span class=\"h\" property=\"rdfs:label\">OccupationalActivity</span>\n      <span property=\"rdfs:comment\">Any physical activity engaged in for job-related purposes. Examples may include waiting tables, maid service, carrying a mailbag, picking fruits or vegetables, construction work, etc.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalActivityCategory\" resource=\"http://schema.org/StrengthTraining\">\n      <span class=\"h\" property=\"rdfs:label\">StrengthTraining</span>\n      <span property=\"rdfs:comment\">Physical activity that is engaged in to improve muscle and bone strength. Also referred to as resistance training.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PhysicalExam\">\n      <span class=\"h\" property=\"rdfs:label\">PhysicalExam</span>\n      <span property=\"rdfs:comment\">A type of physical examination of a patient performed by a physician. Enumerated type.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEnumeration\">MedicalEnumeration</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Abdomen\">\n      <span class=\"h\" property=\"rdfs:label\">Abdomen</span>\n      <span property=\"rdfs:comment\">Abdomen</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Appearance\">\n      <span class=\"h\" property=\"rdfs:label\">Appearance</span>\n      <span property=\"rdfs:comment\">Appearance</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/CardiovascularExam\">\n      <span class=\"h\" property=\"rdfs:label\">CardiovascularExam</span>\n      <span property=\"rdfs:comment\">Cardiovascular</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Ear\">\n      <span class=\"h\" property=\"rdfs:label\">Ear</span>\n      <span property=\"rdfs:comment\">Ear</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Eye\">\n      <span class=\"h\" property=\"rdfs:label\">Eye</span>\n      <span property=\"rdfs:comment\">Eye</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Genitourinary\">\n      <span class=\"h\" property=\"rdfs:label\">Genitourinary</span>\n      <span property=\"rdfs:comment\">Genitourinary</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Head\">\n      <span class=\"h\" property=\"rdfs:label\">Head</span>\n      <span property=\"rdfs:comment\">Head</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Lung\">\n      <span class=\"h\" property=\"rdfs:label\">Lung</span>\n      <span property=\"rdfs:comment\">Lung</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/MusculoskeletalExam\">\n      <span class=\"h\" property=\"rdfs:label\">MusculoskeletalExam</span>\n      <span property=\"rdfs:comment\">Musculoskeletal</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Neck\">\n      <span class=\"h\" property=\"rdfs:label\">Neck</span>\n      <span property=\"rdfs:comment\">Neck</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Neuro\">\n      <span class=\"h\" property=\"rdfs:label\">Neuro</span>\n      <span property=\"rdfs:comment\">Neuro</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Nose\">\n      <span class=\"h\" property=\"rdfs:label\">Nose</span>\n      <span property=\"rdfs:comment\">Nose</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Skin\">\n      <span class=\"h\" property=\"rdfs:label\">Skin</span>\n      <span property=\"rdfs:comment\">Skin</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/Throat\">\n      <span class=\"h\" property=\"rdfs:label\">Throat</span>\n      <span property=\"rdfs:comment\">Throat</span>\n    </div>\n\n    <div typeof=\"http://schema.org/PhysicalExam\" resource=\"http://schema.org/VitalSign\">\n      <span class=\"h\" property=\"rdfs:label\">VitalSign</span>\n      <span property=\"rdfs:comment\">VitalSign</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PhysicalTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">PhysicalTherapy</span>\n      <span property=\"rdfs:comment\">A process of progressive physical care and rehabilitation aimed at improving a health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Physician\">\n      <span class=\"h\" property=\"rdfs:label\">Physician</span>\n      <span property=\"rdfs:comment\">A doctor&#39;s office.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Playground\">\n      <span class=\"h\" property=\"rdfs:label\">Playground</span>\n      <span property=\"rdfs:comment\">A playground.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Plumber\">\n      <span class=\"h\" property=\"rdfs:label\">Plumber</span>\n      <span property=\"rdfs:comment\">A plumbing service.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PoliceStation\">\n      <span class=\"h\" property=\"rdfs:label\">PoliceStation</span>\n      <span property=\"rdfs:comment\">A police station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EmergencyService\">EmergencyService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Pond\">\n      <span class=\"h\" property=\"rdfs:label\">Pond</span>\n      <span property=\"rdfs:comment\">A pond</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PostOffice\">\n      <span class=\"h\" property=\"rdfs:label\">PostOffice</span>\n      <span property=\"rdfs:comment\">A post office.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/GovernmentOffice\">GovernmentOffice</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PostalAddress\">\n      <span class=\"h\" property=\"rdfs:label\">PostalAddress</span>\n      <span property=\"rdfs:comment\">The mailing address.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Preschool\">\n      <span class=\"h\" property=\"rdfs:label\">Preschool</span>\n      <span property=\"rdfs:comment\">A preschool.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PreventionIndication\">\n      <span class=\"h\" property=\"rdfs:label\">PreventionIndication</span>\n      <span property=\"rdfs:comment\">An indication for preventing an underlying condition, symptom, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIndication\">MedicalIndication</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Product\">\n      <span class=\"h\" property=\"rdfs:label\">Product</span>\n      <span property=\"rdfs:comment\">Any offered product or service. For example: a pair of shoes; a concert ticket; the rental of a car; a haircut; or an episode of a TV show streamed online.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\">GoodRelationsProperties</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ProfilePage\">\n      <span class=\"h\" property=\"rdfs:label\">ProfilePage</span>\n      <span property=\"rdfs:comment\">Web page type: Profile page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PsychologicalTreatment\">\n      <span class=\"h\" property=\"rdfs:label\">PsychologicalTreatment</span>\n      <span property=\"rdfs:comment\">A process of care relying upon counseling, dialogue, communication, verbalization aimed at improving a mental health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PublicSwimmingPool\">\n      <span class=\"h\" property=\"rdfs:label\">PublicSwimmingPool</span>\n      <span property=\"rdfs:comment\">A public swimming pool.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RVPark\">\n      <span class=\"h\" property=\"rdfs:label\">RVPark</span>\n      <span property=\"rdfs:comment\">An RV park.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadiationTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">RadiationTherapy</span>\n      <span property=\"rdfs:comment\">A process of care using radiation aimed at improving a health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadioStation\">\n      <span class=\"h\" property=\"rdfs:label\">RadioStation</span>\n      <span property=\"rdfs:comment\">A radio station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RealEstateAgent\">\n      <span class=\"h\" property=\"rdfs:label\">RealEstateAgent</span>\n      <span property=\"rdfs:comment\">A real-estate agent.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Recipe\">\n      <span class=\"h\" property=\"rdfs:label\">Recipe</span>\n      <span property=\"rdfs:comment\">A recipe.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RecommendedDoseSchedule\">\n      <span class=\"h\" property=\"rdfs:label\">RecommendedDoseSchedule</span>\n      <span property=\"rdfs:comment\">A recommended dosing schedule for a drug or supplement as prescribed or recommended by an authority or by the drug/supplement&#39;s manufacturer. Capture the recommending authority in the recognizingAuthority property of MedicalEntity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RecyclingCenter\">\n      <span class=\"h\" property=\"rdfs:label\">RecyclingCenter</span>\n      <span property=\"rdfs:comment\">A recycling center.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReportedDoseSchedule\">\n      <span class=\"h\" property=\"rdfs:label\">ReportedDoseSchedule</span>\n      <span property=\"rdfs:comment\">A patient-reported or observed dosing schedule for a drug or supplement.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Reservoir\">\n      <span class=\"h\" property=\"rdfs:label\">Reservoir</span>\n      <span property=\"rdfs:comment\">A reservoir, like the Lake Kariba reservoir.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Restaurant\">\n      <span class=\"h\" property=\"rdfs:label\">Restaurant</span>\n      <span property=\"rdfs:comment\">A restaurant.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Review\">\n      <span class=\"h\" property=\"rdfs:label\">Review</span>\n      <span property=\"rdfs:comment\">A review of an item - for example, a restaurant, movie, or store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RiverBodyOfWater\">\n      <span class=\"h\" property=\"rdfs:label\">RiverBodyOfWater</span>\n      <span property=\"rdfs:comment\">A river (for example, the broad majestic Shannon).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RoofingContractor\">\n      <span class=\"h\" property=\"rdfs:label\">RoofingContractor</span>\n      <span property=\"rdfs:comment\">A roofing contractor.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HomeAndConstructionBusiness\">HomeAndConstructionBusiness</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ProfessionalService\">ProfessionalService</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SaleEvent\">\n      <span class=\"h\" property=\"rdfs:label\">SaleEvent</span>\n      <span property=\"rdfs:comment\">Event type: Sales event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/School\">\n      <span class=\"h\" property=\"rdfs:label\">School</span>\n      <span property=\"rdfs:comment\">A school.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Sculpture\">\n      <span class=\"h\" property=\"rdfs:label\">Sculpture</span>\n      <span property=\"rdfs:comment\">A piece of sculpture.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SeaBodyOfWater\">\n      <span class=\"h\" property=\"rdfs:label\">SeaBodyOfWater</span>\n      <span property=\"rdfs:comment\">A sea (for example, the Caspian sea).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SearchResultsPage\">\n      <span class=\"h\" property=\"rdfs:label\">SearchResultsPage</span>\n      <span property=\"rdfs:comment\">Web page type: Search results page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SelfStorage\">\n      <span class=\"h\" property=\"rdfs:label\">SelfStorage</span>\n      <span property=\"rdfs:comment\">Self-storage facility.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ShoeStore\">\n      <span class=\"h\" property=\"rdfs:label\">ShoeStore</span>\n      <span property=\"rdfs:comment\">A shoe store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ShoppingCenter\">\n      <span class=\"h\" property=\"rdfs:label\">ShoppingCenter</span>\n      <span property=\"rdfs:comment\">A shopping center or mall.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SingleFamilyResidence\">\n      <span class=\"h\" property=\"rdfs:label\">SingleFamilyResidence</span>\n      <span property=\"rdfs:comment\">Residence type: Single-family home.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Residence\">Residence</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WebPageElement\">\n      <span class=\"h\" property=\"rdfs:label\">WebPageElement</span>\n      <span property=\"rdfs:comment\">A web page element, like a table or an image</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SiteNavigationElement\">\n      <span class=\"h\" property=\"rdfs:label\">SiteNavigationElement</span>\n      <span property=\"rdfs:comment\">A navigation element of the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SkiResort\">\n      <span class=\"h\" property=\"rdfs:label\">SkiResort</span>\n      <span property=\"rdfs:comment\">A ski resort.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SocialEvent\">\n      <span class=\"h\" property=\"rdfs:label\">SocialEvent</span>\n      <span property=\"rdfs:comment\">Event type: Social event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SportingGoodsStore\">\n      <span class=\"h\" property=\"rdfs:label\">SportingGoodsStore</span>\n      <span property=\"rdfs:comment\">A sporting goods store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SportsClub\">\n      <span class=\"h\" property=\"rdfs:label\">SportsClub</span>\n      <span property=\"rdfs:comment\">A sports club.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SportsEvent\">\n      <span class=\"h\" property=\"rdfs:label\">SportsEvent</span>\n      <span property=\"rdfs:comment\">Event type: Sports event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SportsTeam\">\n      <span class=\"h\" property=\"rdfs:label\">SportsTeam</span>\n      <span property=\"rdfs:comment\">Organization: Sports team.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/StadiumOrArena\">\n      <span class=\"h\" property=\"rdfs:label\">StadiumOrArena</span>\n      <span property=\"rdfs:comment\">A stadium.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/State\">\n      <span class=\"h\" property=\"rdfs:label\">State</span>\n      <span property=\"rdfs:comment\">A state or province.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SubwayStation\">\n      <span class=\"h\" property=\"rdfs:label\">SubwayStation</span>\n      <span property=\"rdfs:comment\">A subway station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SuperficialAnatomy\">\n      <span class=\"h\" property=\"rdfs:label\">SuperficialAnatomy</span>\n      <span property=\"rdfs:comment\">Anatomical features that can be observed by sight (without dissection), including the form and proportions of the human body as well as surface landmarks that correspond to deeper subcutaneous structures. Superficial anatomy plays an important role in sports medicine, phlebotomy, and other medical specialties as underlying anatomical structures can be identified through surface palpation. For example, during back surgery, superficial anatomy can be used to palpate and count vertebrae to find the site of incision. Or in phlebotomy, superficial anatomy can be used to locate an underlying vein; for example, the median cubital vein can be located by palpating the borders of the cubital fossa (such as the epicondyles of the humerus) and then looking for the superficial signs of the vein, such as size, prominence, ability to refill after depression, and feel of surrounding tissue support. As another example, in a subluxation (dislocation) of the glenohumeral joint, the bony structure becomes pronounced with the deltoid muscle failing to cover the glenohumeral joint allowing the edges of the scapula to be superficially visible. Here, the superficial anatomy is the visible edges of the scapula, implying the underlying dislocation of the joint (the related anatomical structure).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Synagogue\">\n      <span class=\"h\" property=\"rdfs:label\">Synagogue</span>\n      <span property=\"rdfs:comment\">A synagogue.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlaceOfWorship\">PlaceOfWorship</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Episode\">\n      <span class=\"h\" property=\"rdfs:label\">Episode</span>\n      <span property=\"rdfs:comment\">A TV or radio episode which can be part of a series or season.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TVEpisode\">\n      <span class=\"h\" property=\"rdfs:label\">TVEpisode</span>\n      <span property=\"rdfs:comment\">A TV episode which can be part of a series or season.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Episode\">Episode</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Season\">\n      <span class=\"h\" property=\"rdfs:label\">Season</span>\n      <span property=\"rdfs:comment\">A TV or radio season.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TVSeason\">\n      <span class=\"h\" property=\"rdfs:label\">TVSeason</span>\n      <span property=\"rdfs:comment\">Season dedicated to TV broadcast and associated online delivery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Season\">Season</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Series\">\n      <span class=\"h\" property=\"rdfs:label\">Series</span>\n      <span property=\"rdfs:comment\">A TV or radio series.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TVSeries\">\n      <span class=\"h\" property=\"rdfs:label\">TVSeries</span>\n      <span property=\"rdfs:comment\">Series dedicated to TV broadcast and associated online delivery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Series\">Series</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Table\">\n      <span class=\"h\" property=\"rdfs:label\">Table</span>\n      <span property=\"rdfs:comment\">A table on the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TattooParlor\">\n      <span class=\"h\" property=\"rdfs:label\">TattooParlor</span>\n      <span property=\"rdfs:comment\">A tattoo parlor.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/HealthAndBeautyBusiness\">HealthAndBeautyBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TaxiStand\">\n      <span class=\"h\" property=\"rdfs:label\">TaxiStand</span>\n      <span property=\"rdfs:comment\">A taxi stand.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TelevisionStation\">\n      <span class=\"h\" property=\"rdfs:label\">TelevisionStation</span>\n      <span property=\"rdfs:comment\">A television station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TennisComplex\">\n      <span class=\"h\" property=\"rdfs:label\">TennisComplex</span>\n      <span property=\"rdfs:comment\">A tennis complex.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Text\">\n      <span class=\"h\" property=\"rdfs:label\">Text</span>\n      <span property=\"rdfs:comment\">Data type: Text.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TheaterEvent\">\n      <span class=\"h\" property=\"rdfs:label\">TheaterEvent</span>\n      <span property=\"rdfs:comment\">Event type: Theater performance.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TheaterGroup\">\n      <span class=\"h\" property=\"rdfs:label\">TheaterGroup</span>\n      <span property=\"rdfs:comment\">A theater group or company&amp;#x2014;for example, the Royal Shakespeare Company or Druid Theatre.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PerformingGroup\">PerformingGroup</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TherapeuticProcedure\">\n      <span class=\"h\" property=\"rdfs:label\">TherapeuticProcedure</span>\n      <span property=\"rdfs:comment\">A medical procedure intended primarily for therapeutic purposes, aimed at improving a health condition.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Time\">\n      <span class=\"h\" property=\"rdfs:label\">Time</span>\n      <span property=\"rdfs:comment\">A point in time recurring on multiple days in the form hh:mm:ss[Z|(+|-)hh:mm] (see &lt;a href=&quot;http://www.w3.org/TR/xmlschema-2/#time&quot;&gt;XML schema for details&lt;/a&gt;).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DataType\">DataType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TireShop\">\n      <span class=\"h\" property=\"rdfs:label\">TireShop</span>\n      <span property=\"rdfs:comment\">A tire shop.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TouristAttraction\">\n      <span class=\"h\" property=\"rdfs:label\">TouristAttraction</span>\n      <span property=\"rdfs:comment\">A tourist attraction.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TouristInformationCenter\">\n      <span class=\"h\" property=\"rdfs:label\">TouristInformationCenter</span>\n      <span property=\"rdfs:comment\">A tourist information center.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ToyStore\">\n      <span class=\"h\" property=\"rdfs:label\">ToyStore</span>\n      <span property=\"rdfs:comment\">A toy store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TrainStation\">\n      <span class=\"h\" property=\"rdfs:label\">TrainStation</span>\n      <span property=\"rdfs:comment\">A train station.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TravelAgency\">\n      <span class=\"h\" property=\"rdfs:label\">TravelAgency</span>\n      <span property=\"rdfs:comment\">A travel agency.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TreatmentIndication\">\n      <span class=\"h\" property=\"rdfs:label\">TreatmentIndication</span>\n      <span property=\"rdfs:comment\">An indication for treating an underlying condition, symptom, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalIndication\">MedicalIndication</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/URL\">\n      <span class=\"h\" property=\"rdfs:label\">URL</span>\n      <span property=\"rdfs:comment\">Data type: URL.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserInteraction\">\n      <span class=\"h\" property=\"rdfs:label\">UserInteraction</span>\n      <span property=\"rdfs:comment\">A user interacting with a page</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserBlocks\">\n      <span class=\"h\" property=\"rdfs:label\">UserBlocks</span>\n      <span property=\"rdfs:comment\">User interaction: Block this content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserCheckins\">\n      <span class=\"h\" property=\"rdfs:label\">UserCheckins</span>\n      <span property=\"rdfs:comment\">User interaction: Check-in at a place.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserComments\">\n      <span class=\"h\" property=\"rdfs:label\">UserComments</span>\n      <span property=\"rdfs:comment\">The UserInteraction event in which a user comments on an item.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserDownloads\">\n      <span class=\"h\" property=\"rdfs:label\">UserDownloads</span>\n      <span property=\"rdfs:comment\">User interaction: Download of an item.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserLikes\">\n      <span class=\"h\" property=\"rdfs:label\">UserLikes</span>\n      <span property=\"rdfs:comment\">User interaction: Like an item.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserPageVisits\">\n      <span class=\"h\" property=\"rdfs:label\">UserPageVisits</span>\n      <span property=\"rdfs:comment\">User interaction: Visit to a web page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserPlays\">\n      <span class=\"h\" property=\"rdfs:label\">UserPlays</span>\n      <span property=\"rdfs:comment\">User interaction: Play count of an item, for example a video or a song.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserPlusOnes\">\n      <span class=\"h\" property=\"rdfs:label\">UserPlusOnes</span>\n      <span property=\"rdfs:comment\">User interaction: +1.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UserTweets\">\n      <span class=\"h\" property=\"rdfs:label\">UserTweets</span>\n      <span property=\"rdfs:comment\">User interaction: Tweets.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UserInteraction\">UserInteraction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Vein\">\n      <span class=\"h\" property=\"rdfs:label\">Vein</span>\n      <span property=\"rdfs:comment\">A type of blood vessel that specifically carries blood to the heart.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">WikiDoc</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/VeterinaryCare\">\n      <span class=\"h\" property=\"rdfs:label\">VeterinaryCare</span>\n      <span property=\"rdfs:comment\">A vet&#39;s office.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MedicalOrganization\">MedicalOrganization</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/VideoGallery\">\n      <span class=\"h\" property=\"rdfs:label\">VideoGallery</span>\n      <span property=\"rdfs:comment\">Web page type: Video gallery page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CollectionPage\">CollectionPage</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/VideoObject\">\n      <span class=\"h\" property=\"rdfs:label\">VideoObject</span>\n      <span property=\"rdfs:comment\">A video file.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">rNews</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/VisualArtsEvent\">\n      <span class=\"h\" property=\"rdfs:label\">VisualArtsEvent</span>\n      <span property=\"rdfs:comment\">Event type: Visual arts event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Volcano\">\n      <span class=\"h\" property=\"rdfs:label\">Volcano</span>\n      <span property=\"rdfs:comment\">A volcano, like Fuji san.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Landform\">Landform</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WPAdBlock\">\n      <span class=\"h\" property=\"rdfs:label\">WPAdBlock</span>\n      <span property=\"rdfs:comment\">An advertising section of the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WPFooter\">\n      <span class=\"h\" property=\"rdfs:label\">WPFooter</span>\n      <span property=\"rdfs:comment\">The footer section of the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WPHeader\">\n      <span class=\"h\" property=\"rdfs:label\">WPHeader</span>\n      <span property=\"rdfs:comment\">The header section of the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WPSideBar\">\n      <span class=\"h\" property=\"rdfs:label\">WPSideBar</span>\n      <span property=\"rdfs:comment\">A sidebar section of the page.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Waterfall\">\n      <span class=\"h\" property=\"rdfs:label\">Waterfall</span>\n      <span property=\"rdfs:comment\">A waterfall, like Niagara</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/BodyOfWater\">BodyOfWater</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WebApplication\">\n      <span class=\"h\" property=\"rdfs:label\">WebApplication</span>\n      <span property=\"rdfs:comment\">Web applications.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WholesaleStore\">\n      <span class=\"h\" property=\"rdfs:label\">WholesaleStore</span>\n      <span property=\"rdfs:comment\">A wholesale store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Store\">Store</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Winery\">\n      <span class=\"h\" property=\"rdfs:label\">Winery</span>\n      <span property=\"rdfs:comment\">A winery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Zoo\">\n      <span class=\"h\" property=\"rdfs:label\">Zoo</span>\n      <span property=\"rdfs:comment\">A zoo.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Brand\">\n      <span class=\"h\" property=\"rdfs:label\">Brand</span>\n      <span property=\"rdfs:comment\">A brand is a name used by an organization or business person for labeling a product, product group, or similar.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusinessEntityType\">\n      <span class=\"h\" property=\"rdfs:label\">BusinessEntityType</span>\n      <span property=\"rdfs:comment\">A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of an organization or business person.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#Business\n    http://purl.org/goodrelations/v1#Enduser\n    http://purl.org/goodrelations/v1#PublicInstitution\n    http://purl.org/goodrelations/v1#Reseller\n\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusinessFunction\">\n      <span class=\"h\" property=\"rdfs:label\">BusinessFunction</span>\n      <span property=\"rdfs:comment\">The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the organization or business person through the offer. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation. Proprietary specifications of access rights are also instances of this class.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#ConstructionInstallation\n    http://purl.org/goodrelations/v1#Dispose\n    http://purl.org/goodrelations/v1#LeaseOut\n    http://purl.org/goodrelations/v1#Maintain\n    http://purl.org/goodrelations/v1#ProvideService\n    http://purl.org/goodrelations/v1#Repair\n    http://purl.org/goodrelations/v1#Sell\n    http://purl.org/goodrelations/v1#Buy\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PaymentMethod\">\n      <span class=\"h\" property=\"rdfs:label\">PaymentMethod</span>\n      <span property=\"rdfs:comment\">A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#ByBankTransferInAdvance\n    http://purl.org/goodrelations/v1#ByInvoice\n    http://purl.org/goodrelations/v1#Cash\n    http://purl.org/goodrelations/v1#CheckInAdvance\n    http://purl.org/goodrelations/v1#COD\n    http://purl.org/goodrelations/v1#DirectDebit\n    http://purl.org/goodrelations/v1#GoogleCheckout\n    http://purl.org/goodrelations/v1#PayPal\n    http://purl.org/goodrelations/v1#PaySwarm\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CreditCard\">\n      <span class=\"h\" property=\"rdfs:label\">CreditCard</span>\n      <span property=\"rdfs:comment\">A credit or debit card type as a standardized procedure for transferring the monetary amount for a purchase.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#AmericanExpress\n    http://purl.org/goodrelations/v1#DinersClub\n    http://purl.org/goodrelations/v1#Discover\n    http://purl.org/goodrelations/v1#JCB\n    http://purl.org/goodrelations/v1#MasterCard\n    http://purl.org/goodrelations/v1#VISA\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PaymentMethod\">PaymentMethod</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DayOfWeek\">\n      <span class=\"h\" property=\"rdfs:label\">DayOfWeek</span>\n      <span property=\"rdfs:comment\">The day of the week, e.g. used to specify to which day the opening hours of an OpeningHoursSpecification refer.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#Monday\n    http://purl.org/goodrelations/v1#Tuesday\n    http://purl.org/goodrelations/v1#Wednesday\n    http://purl.org/goodrelations/v1#Thursday\n    http://purl.org/goodrelations/v1#Friday\n    http://purl.org/goodrelations/v1#Saturday\n    http://purl.org/goodrelations/v1#Sunday\n    http://purl.org/goodrelations/v1#PublicHolidays\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PriceSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">PriceSpecification</span>\n      <span property=\"rdfs:comment\">A structured value representing a monetary amount. Typically, only the subclasses of this type are used for markup.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DeliveryChargeSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">DeliveryChargeSpecification</span>\n      <span property=\"rdfs:comment\">The price for the delivery of an offer using a particular delivery method.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DeliveryMethod\">\n      <span class=\"h\" property=\"rdfs:label\">DeliveryMethod</span>\n      <span property=\"rdfs:comment\">A delivery method is a standardized procedure for transferring the product or service to the destination of fulfillment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending organization or person.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#DeliveryModeDirectDownload\n    http://purl.org/goodrelations/v1#DeliveryModeFreight\n    http://purl.org/goodrelations/v1#DeliveryModeMail\n    http://purl.org/goodrelations/v1#DeliveryModeOwnFleet\n    http://purl.org/goodrelations/v1#DeliveryModePickUp\n    http://purl.org/goodrelations/v1#DHL\n    http://purl.org/goodrelations/v1#FederalExpress\n    http://purl.org/goodrelations/v1#UPS\n    \t\t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Demand\">\n      <span class=\"h\" property=\"rdfs:label\">Demand</span>\n      <span property=\"rdfs:comment\">A demand entity represents the public, not necessarily binding, not necessarily exclusive, announcement by an organization or person to seek a certain type of goods or services. For describing demand using this type, the very same properties used for Offer apply.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/IndividualProduct\">\n      <span class=\"h\" property=\"rdfs:label\">IndividualProduct</span>\n      <span property=\"rdfs:comment\">A single, identifiable product instance (e.g. a laptop with a particular serial number).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Product\">Product</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OpeningHoursSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">OpeningHoursSpecification</span>\n      <span property=\"rdfs:comment\">A structured value providing information about the opening hours of a place or a certain service inside a place.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OwnershipInfo\">\n      <span class=\"h\" property=\"rdfs:label\">OwnershipInfo</span>\n      <span property=\"rdfs:comment\">A structured value providing information about when a certain organization or person owned a certain product.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ParcelService\">\n      <span class=\"h\" property=\"rdfs:label\">ParcelService</span>\n      <span property=\"rdfs:comment\">A private parcel service as the delivery mode available for a certain offer.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#DHL\n    http://purl.org/goodrelations/v1#FederalExpress\n    http://purl.org/goodrelations/v1#UPS\n    \t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PaymentChargeSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">PaymentChargeSpecification</span>\n      <span property=\"rdfs:comment\">The costs of settling the payment using a particular payment method.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ProductModel\">\n      <span class=\"h\" property=\"rdfs:label\">ProductModel</span>\n      <span property=\"rdfs:comment\">A datasheet or vendor specification of a product (in the sense of a prototypical description).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Product\">Product</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/QualitativeValue\">\n      <span class=\"h\" property=\"rdfs:label\">QualitativeValue</span>\n      <span property=\"rdfs:comment\">A predefined value for a product characteristic, e.g. the the power cord plug type &quot;US&quot; or the garment sizes &quot;S&quot;, &quot;M&quot;, &quot;L&quot;, and &quot;XL&quot;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/QuantitativeValue\">\n      <span class=\"h\" property=\"rdfs:label\">QuantitativeValue</span>\n      <span property=\"rdfs:comment\"> A point value or interval for product characteristics and other purposes.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SomeProducts\">\n      <span class=\"h\" property=\"rdfs:label\">SomeProducts</span>\n      <span property=\"rdfs:comment\">A placeholder for multiple similar products of the same kind.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Product\">Product</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TypeAndQuantityNode\">\n      <span class=\"h\" property=\"rdfs:label\">TypeAndQuantityNode</span>\n      <span property=\"rdfs:comment\">A structured value indicating the quantity, unit of measurement, and business function of goods included in a bundle offer.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UnitPriceSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">UnitPriceSpecification</span>\n      <span property=\"rdfs:comment\">The price asked for a given offer by the respective organization or person.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WarrantyPromise\">\n      <span class=\"h\" property=\"rdfs:label\">WarrantyPromise</span>\n      <span property=\"rdfs:comment\">A structured value representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WarrantyScope\">\n      <span class=\"h\" property=\"rdfs:label\">WarrantyScope</span>\n      <span property=\"rdfs:comment\">A range of of services that will be provided to a customer free of charge in case of a defect or malfunction of a product.\n\n    Commonly used values:\n\n    http://purl.org/goodrelations/v1#Labor-BringIn\n    http://purl.org/goodrelations/v1#PartsAndLabor-BringIn\n    http://purl.org/goodrelations/v1#PartsAndLabor-PickUp\n    \t</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">GoodRelationsClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TechArticle\">\n      <span class=\"h\" property=\"rdfs:label\">TechArticle</span>\n      <span property=\"rdfs:comment\">A technical article - Example: How-to (task) topics, step-by-step, procedural troubleshooting, specifications, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Article\">Article</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/APIReference\">\n      <span class=\"h\" property=\"rdfs:label\">APIReference</span>\n      <span property=\"rdfs:comment\">Reference documentation for application programming interfaces (APIs).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TechArticle\">TechArticle</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Code\">\n      <span class=\"h\" property=\"rdfs:label\">Code</span>\n      <span property=\"rdfs:comment\">Computer programming source code. Example: Full (compile ready) solutions, code snippet samples, scripts, templates.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ParentAudience\">\n      <span class=\"h\" property=\"rdfs:label\">ParentAudience</span>\n      <span property=\"rdfs:comment\">A set of characteristics describing parents, who can be interested in viewing some content</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AlignmentObject\">\n      <span class=\"h\" property=\"rdfs:label\">AlignmentObject</span>\n      <span property=\"rdfs:comment\">An intangible item that describes an alignment between a learning resource and a node in an educational framework.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\">LRMIClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EducationalAudience\">\n      <span class=\"h\" property=\"rdfs:label\">EducationalAudience</span>\n      <span property=\"rdfs:comment\">An EducationalAudience</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Audience\">Audience</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\">LRMIClass</a></span></div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DataCatalog\">\n      <span class=\"h\" property=\"rdfs:label\">DataCatalog</span>\n      <span property=\"rdfs:comment\">A collection of datasets.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\">DatasetClass</a></span>\n       <link property=\"owl:equivalentClass\" href=\"dcat:DataCatalog\"/>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DataDownload\">\n      <span class=\"h\" property=\"rdfs:label\">DataDownload</span>\n      <span property=\"rdfs:comment\">A dataset in downloadable form.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\">DatasetClass</a></span>\n       <link property=\"owl:equivalentClass\" href=\"dcat:Distribution\"/>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Dataset\">\n      <span class=\"h\" property=\"rdfs:label\">Dataset</span>\n      <span property=\"rdfs:comment\">A body of structured information describing some topic(s) of interest.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n       <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\">DatasetClass</a></span>\n       <link property=\"owl:equivalentClass\" href=\"dcat:Dataset\"/>\n       <link property=\"owl:equivalentClass\" href=\"void:Dataset\"/>\n       <link property=\"owl:equivalentClass\" href=\"dc:Dataset\"/>\n       </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Class\">\n      <span class=\"h\" property=\"rdfs:label\">Class</span>\n      <span property=\"rdfs:comment\">A class, also often called a &#39;Type&#39;; equivalent to rdfs:Class.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Property\">\n      <span class=\"h\" property=\"rdfs:label\">Property</span>\n      <span property=\"rdfs:comment\">A property, used to indicate attributes and relationships of some Thing; equivalent to rdf:Property.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PublicationEvent\">\n      <span class=\"h\" property=\"rdfs:label\">PublicationEvent</span>\n      <span property=\"rdfs:comment\">A PublicationEvent corresponds indifferently to the event of publication for a CreativeWork of any type e.g. a broadcast event, an on-demand event, a book/journal publication via a variety of delivery media.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BroadcastEvent\">\n      <span class=\"h\" property=\"rdfs:label\">BroadcastEvent</span>\n      <span property=\"rdfs:comment\">An over the air or online broadcast event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PublicationEvent\">PublicationEvent</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BroadcastService\">\n      <span class=\"h\" property=\"rdfs:label\">BroadcastService</span>\n      <span property=\"rdfs:comment\">A delivery service through which content is provided via broadcast over the air or online.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Clip\">\n      <span class=\"h\" property=\"rdfs:label\">Clip</span>\n      <span property=\"rdfs:comment\">A short TV or radio program or a segment/part of a program.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OnDemandEvent\">\n      <span class=\"h\" property=\"rdfs:label\">OnDemandEvent</span>\n      <span property=\"rdfs:comment\">A publication event e.g. catch-up TV or radio podcast, during which a program is available on-demand.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PublicationEvent\">PublicationEvent</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadioClip\">\n      <span class=\"h\" property=\"rdfs:label\">RadioClip</span>\n      <span property=\"rdfs:comment\">A short radio program or a segment/part of a radio program.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Clip\">Clip</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadioEpisode\">\n      <span class=\"h\" property=\"rdfs:label\">RadioEpisode</span>\n      <span property=\"rdfs:comment\">A radio episode which can be part of a series or season.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Episode\">Episode</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadioSeason\">\n      <span class=\"h\" property=\"rdfs:label\">RadioSeason</span>\n      <span property=\"rdfs:comment\">Season dedicated to radio broadcast and associated online delivery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Season\">Season</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RadioSeries\">\n      <span class=\"h\" property=\"rdfs:label\">RadioSeries</span>\n      <span property=\"rdfs:comment\">Series dedicated to radio broadcast and associated online delivery.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Series\">Series</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TVClip\">\n      <span class=\"h\" property=\"rdfs:label\">TVClip</span>\n      <span property=\"rdfs:comment\">A short TV program or a segment/part of a TV program.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Clip\">Clip</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusinessAudience\">\n      <span class=\"h\" property=\"rdfs:label\">BusinessAudience</span>\n      <span property=\"rdfs:comment\">A set of characteristics belonging to businesses, e.g. who compose an item&#39;s target audience.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Audience\">Audience</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ContactPointOption\">\n      <span class=\"h\" property=\"rdfs:label\">ContactPointOption</span>\n      <span property=\"rdfs:comment\">Enumerated options related to a ContactPoint</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/ContactPointOption\" resource=\"http://schema.org/HearingImpairedSupported\">\n      <span class=\"h\" property=\"rdfs:label\">HearingImpairedSupported</span>\n      <span property=\"rdfs:comment\">Uses devices to support users with hearing impairments.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ContactPointOption\" resource=\"http://schema.org/TollFree\">\n      <span class=\"h\" property=\"rdfs:label\">TollFree</span>\n      <span property=\"rdfs:comment\">The associated telephone number is toll free.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Permit\">\n      <span class=\"h\" property=\"rdfs:label\">Permit</span>\n      <span property=\"rdfs:comment\">A permit issued by an organization, e.g. a parking pass.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GovernmentPermit\">\n      <span class=\"h\" property=\"rdfs:label\">GovernmentPermit</span>\n      <span property=\"rdfs:comment\">A permit issued by a government agency.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Permit\">Permit</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Service\">\n      <span class=\"h\" property=\"rdfs:label\">Service</span>\n      <span property=\"rdfs:comment\">A service provided by an organization, e.g. delivery service, print services, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GovernmentService\">\n      <span class=\"h\" property=\"rdfs:label\">GovernmentService</span>\n      <span property=\"rdfs:comment\">A service provided by a government organization, e.g. food stamps, veterans benefits, etc.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Service\">Service</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ServiceChannel\">\n      <span class=\"h\" property=\"rdfs:label\">ServiceChannel</span>\n      <span property=\"rdfs:comment\">A means for accessing a service, e.g. a government office location, web site, or phone number.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EventStatusType\">\n      <span class=\"h\" property=\"rdfs:label\">EventStatusType</span>\n      <span property=\"rdfs:comment\">EventStatusType is an enumeration type whose instances represent several states that an Event may be in.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/EventStatusType\" resource=\"http://schema.org/EventCancelled\">\n      <span class=\"h\" property=\"rdfs:label\">EventCancelled</span>\n      <span property=\"rdfs:comment\">The event has been cancelled. If the event has multiple startDate values, all are assumed to be cancelled. Either startDate or previousStartDate may be used to specify the event’s cancelled date(s).</span>\n    </div>\n\n    <div typeof=\"http://schema.org/EventStatusType\" resource=\"http://schema.org/EventPostponed\">\n      <span class=\"h\" property=\"rdfs:label\">EventPostponed</span>\n      <span property=\"rdfs:comment\">The event has been postponed and no new date has been set. The event’s previousStartDate should be set.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/EventStatusType\" resource=\"http://schema.org/EventRescheduled\">\n      <span class=\"h\" property=\"rdfs:label\">EventRescheduled</span>\n      <span property=\"rdfs:comment\">The event has been rescheduled. The event’s previousStartDate should be set to the old date and the startDate should be set to the event’s new date. (If the event has been rescheduled multiple times, the previousStartDate property may be repeated.)</span>\n    </div>\n\n    <div typeof=\"http://schema.org/EventStatusType\" resource=\"http://schema.org/EventScheduled\">\n      <span class=\"h\" property=\"rdfs:label\">EventScheduled</span>\n      <span property=\"rdfs:comment\">The event is taking place or has taken place on the startDate as scheduled. Use of this value is optional, as it is assumed by default.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DeliveryEvent\">\n      <span class=\"h\" property=\"rdfs:label\">DeliveryEvent</span>\n      <span property=\"rdfs:comment\">An event involving the delivery of an item.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LockerDelivery\">\n      <span class=\"h\" property=\"rdfs:label\">LockerDelivery</span>\n      <span property=\"rdfs:comment\">A DeliveryMethod in which an item is made available via locker.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/DeliveryMethod\" resource=\"http://schema.org/OnSitePickup\">\n      <span class=\"h\" property=\"rdfs:label\">OnSitePickup</span>\n      <span property=\"rdfs:comment\">A DeliveryMethod in which an item is collected on site, e.g. in a store or at a box office.</span>\n\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Order\">\n      <span class=\"h\" property=\"rdfs:label\">Order</span>\n      <span property=\"rdfs:comment\">An order is a confirmation of a transaction (a receipt), which can contain multiple line items, each represented by an Offer that has been accepted by the customer.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OrderStatus\">\n      <span class=\"h\" property=\"rdfs:label\">OrderStatus</span>\n      <span property=\"rdfs:comment\">Enumerated status values for Order.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderCancelled\">\n      <span class=\"h\" property=\"rdfs:label\">OrderCancelled</span>\n      <span property=\"rdfs:comment\">OrderStatus representing cancellation of an order.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderDelivered\">\n      <span class=\"h\" property=\"rdfs:label\">OrderDelivered</span>\n      <span property=\"rdfs:comment\">OrderStatus representing successful delivery of an order.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderInTransit\">\n      <span class=\"h\" property=\"rdfs:label\">OrderInTransit</span>\n      <span property=\"rdfs:comment\">OrderStatus representing that an order is in transit.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderPaymentDue\">\n      <span class=\"h\" property=\"rdfs:label\">OrderPaymentDue</span>\n      <span property=\"rdfs:comment\">OrderStatus representing that payment is due on an order.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderPickupAvailable\">\n      <span class=\"h\" property=\"rdfs:label\">OrderPickupAvailable</span>\n      <span property=\"rdfs:comment\">OrderStatus representing availability of an order for pickup.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderProblem\">\n      <span class=\"h\" property=\"rdfs:label\">OrderProblem</span>\n      <span property=\"rdfs:comment\">OrderStatus representing that there is a problem with the order.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderProcessing\">\n      <span class=\"h\" property=\"rdfs:label\">OrderProcessing</span>\n      <span property=\"rdfs:comment\">OrderStatus representing that an order is being processed.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/OrderStatus\" resource=\"http://schema.org/OrderReturned\">\n      <span class=\"h\" property=\"rdfs:label\">OrderReturned</span>\n      <span property=\"rdfs:comment\">OrderStatus representing that an order has been returned.</span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ParcelDelivery\">\n      <span class=\"h\" property=\"rdfs:label\">ParcelDelivery</span>\n      <span property=\"rdfs:comment\">The delivery of a parcel either via the postal service or a commercial service.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Action\">\n      <span class=\"h\" property=\"rdfs:label\">Action</span>\n      <span property=\"rdfs:comment\">An action performed by a direct agent and indirect     participants upon a direct object. Optionally happens at a location     with the help of an inanimate instrument. The execution of the action     may produce a result. Specific action sub-type documentation specifies     the exact expectation of each argument/role.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass\">Action collaborations</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OrganizeAction\">\n      <span class=\"h\" property=\"rdfs:label\">OrganizeAction</span>\n      <span property=\"rdfs:comment\">The act of manipulating/administering/supervising/controlling one or more objects.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AllocateAction\">\n      <span class=\"h\" property=\"rdfs:label\">AllocateAction</span>\n      <span property=\"rdfs:comment\">The act of organizing tasks/objects/events by associating resources to it.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/OrganizeAction\">OrganizeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AcceptAction\">\n      <span class=\"h\" property=\"rdfs:label\">AcceptAction</span>\n      <span property=\"rdfs:comment\">The act of committing to/adopting an object.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RejectAction&quot;&gt;RejectAction&lt;/a&gt;: The antagonym of AcceptAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AllocateAction\">AllocateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AchieveAction\">\n      <span class=\"h\" property=\"rdfs:label\">AchieveAction</span>\n      <span property=\"rdfs:comment\">The act of accomplishing something via     previous efforts. It is an instantaneous action rather than an ongoing     process.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UpdateAction\">\n      <span class=\"h\" property=\"rdfs:label\">UpdateAction</span>\n      <span property=\"rdfs:comment\">The act of managing by changing/editing the state of the object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AddAction\">\n      <span class=\"h\" property=\"rdfs:label\">AddAction</span>\n      <span property=\"rdfs:comment\">The act of editing by adding an object to a collection.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UpdateAction\">UpdateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AssessAction\">\n      <span class=\"h\" property=\"rdfs:label\">AssessAction</span>\n      <span property=\"rdfs:comment\">The act of forming one&#39;s opinion, reaction or sentiment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReactAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReactAction</span>\n      <span property=\"rdfs:comment\">The act of responding instinctively and emotionally to an object, expressing a sentiment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AssessAction\">AssessAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AgreeAction\">\n      <span class=\"h\" property=\"rdfs:label\">AgreeAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a consistency of opinion with the object. An agent agrees to/about an object (a proposition, topic or theme) with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InsertAction\">\n      <span class=\"h\" property=\"rdfs:label\">InsertAction</span>\n      <span property=\"rdfs:comment\">The act of adding at a specific location in an ordered collection.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AddAction\">AddAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AppendAction\">\n      <span class=\"h\" property=\"rdfs:label\">AppendAction</span>\n      <span property=\"rdfs:comment\">The act of inserting at the end if an ordered collection.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InsertAction\">InsertAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ApplyAction\">\n      <span class=\"h\" property=\"rdfs:label\">ApplyAction</span>\n      <span property=\"rdfs:comment\">The act of registering to an organization/service without the guarantee to receive it. NOTE(goto): should this be under InteractAction instead?&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RegisterAction&quot;&gt;RegisterAction&lt;/a&gt;: Unlike RegisterAction, ApplyAction has no guarantees that the application will be accepted.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/OrganizeAction\">OrganizeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MoveAction\">\n      <span class=\"h\" property=\"rdfs:label\">MoveAction</span>\n      <span property=\"rdfs:comment\">The act of an agent relocating to a place.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/TransferAction&quot;&gt;TransferAction&lt;/a&gt;: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ArriveAction\">\n      <span class=\"h\" property=\"rdfs:label\">ArriveAction</span>\n      <span property=\"rdfs:comment\">The act of arriving at a place. An agent arrives at a destination from an fromLocation, optionally with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MoveAction\">MoveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InteractAction\">\n      <span class=\"h\" property=\"rdfs:label\">InteractAction</span>\n      <span property=\"rdfs:comment\">The act of interacting with another person or organization.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CommunicateAction\">\n      <span class=\"h\" property=\"rdfs:label\">CommunicateAction</span>\n      <span property=\"rdfs:comment\">The act of conveying information to another person via a communication medium (instrument) such as speech, email, or telephone conversation.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AskAction\">\n      <span class=\"h\" property=\"rdfs:label\">AskAction</span>\n      <span property=\"rdfs:comment\">The act of posing a question / favor to someone.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ReplyAction&quot;&gt;ReplyAction&lt;/a&gt;: Appears generally as a response to AskAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AssignAction\">\n      <span class=\"h\" property=\"rdfs:label\">AssignAction</span>\n      <span property=\"rdfs:comment\">The act of allocating an action/event/task to some destination (someone or something).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AllocateAction\">AllocateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/AuthorizeAction\">\n      <span class=\"h\" property=\"rdfs:label\">AuthorizeAction</span>\n      <span property=\"rdfs:comment\">The act of granting permission to an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AllocateAction\">AllocateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BefriendAction\">\n      <span class=\"h\" property=\"rdfs:label\">BefriendAction</span>\n      <span property=\"rdfs:comment\">The act of forming a personal connection with someone (object) mutually/bidirectionally/symmetrically.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FollowAction&quot;&gt;FollowAction&lt;/a&gt;: Unlike FollowAction, BefriendAction implies that the connection is reciprocal.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BookmarkAction\">\n      <span class=\"h\" property=\"rdfs:label\">BookmarkAction</span>\n      <span property=\"rdfs:comment\">An agent bookmarks/flags/labels/tags/marks an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/OrganizeAction\">OrganizeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TransferAction\">\n      <span class=\"h\" property=\"rdfs:label\">TransferAction</span>\n      <span property=\"rdfs:comment\">The act of transferring/moving (abstract or concrete) animate or inanimate objects from one place to another.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BorrowAction\">\n      <span class=\"h\" property=\"rdfs:label\">BorrowAction</span>\n      <span property=\"rdfs:comment\">The act of obtaining an object under an agreement to return it at a later date. Reciprocal of LendAction.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/LendAction&quot;&gt;LendAction&lt;/a&gt;: Reciprocal of BorrowAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TradeAction\">\n      <span class=\"h\" property=\"rdfs:label\">TradeAction</span>\n      <span property=\"rdfs:comment\">The act of participating in an exchange of goods and services for monetary compensation. An agent trades an object, product or service with a participant in exchange for a one time or periodic payment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BuyAction\">\n      <span class=\"h\" property=\"rdfs:label\">BuyAction</span>\n      <span property=\"rdfs:comment\">The act of giving money to a seller in exchange for goods or services rendered. An agent buys an object, product, or service from a seller for a price. Reciprocal of SellAction.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PlanAction\">\n      <span class=\"h\" property=\"rdfs:label\">PlanAction</span>\n      <span property=\"rdfs:comment\">The act of planning the execution of an event/task/action/reservation/plan to a future date.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/OrganizeAction\">OrganizeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CancelAction\">\n      <span class=\"h\" property=\"rdfs:label\">CancelAction</span>\n      <span property=\"rdfs:comment\">The act of asserting that a future event/action is no longer going to happen.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ConfirmAction&quot;&gt;ConfirmAction&lt;/a&gt;: The antagonym of CancelAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlanAction\">PlanAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FindAction\">\n      <span class=\"h\" property=\"rdfs:label\">FindAction</span>\n      <span property=\"rdfs:comment\">The act of finding an object.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SearchAction&quot;&gt;SearchAction&lt;/a&gt;: FindAction is generally lead by a SearchAction, but not necessarily.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CheckAction\">\n      <span class=\"h\" property=\"rdfs:label\">CheckAction</span>\n      <span property=\"rdfs:comment\">An agent inspects/determines/investigates/inquire or examine an object&#39;s accuracy/quality/condition or state.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FindAction\">FindAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CheckInAction\">\n      <span class=\"h\" property=\"rdfs:label\">CheckInAction</span>\n      <span property=\"rdfs:comment\">The act of an agent communicating (service provider, social media, etc) their arrival by registering/confirming for a previously reserved service (e.g. flight check in) or at a place (e.g. hotel), possibly resulting in a result (boarding pass, etc).&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/CheckOutAction&quot;&gt;CheckOutAction&lt;/a&gt;: The antagonym of CheckInAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ArriveAction&quot;&gt;ArriveAction&lt;/a&gt;: Unlike ArriveAction, CheckInAction implies that the agent is informing/confirming the start of a previously reserved service.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ConfirmAction&quot;&gt;ConfirmAction&lt;/a&gt;: Unlike ConfirmAction, CheckInAction implies that the agent is informing/confirming the *start* of a previously reserved service rather than its validity/existence.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CheckOutAction\">\n      <span class=\"h\" property=\"rdfs:label\">CheckOutAction</span>\n      <span property=\"rdfs:comment\">The act of an agent communicating (service provider, social media, etc) their departure of a previously reserved service (e.g. flight check in) or place (e.g. hotel).&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/CheckInAction&quot;&gt;CheckInAction&lt;/a&gt;: The antagonym of CheckOutAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/DepartAction&quot;&gt;DepartAction&lt;/a&gt;: Unlike DepartAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/CancelAction&quot;&gt;CancelAction&lt;/a&gt;: Unlike CancelAction, CheckOutAction implies that the agent is informing/confirming the end of a previously reserved service.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ChooseAction\">\n      <span class=\"h\" property=\"rdfs:label\">ChooseAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a preference from a set of options or a large or unbounded set of choices/options.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AssessAction\">AssessAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CommentAction\">\n      <span class=\"h\" property=\"rdfs:label\">CommentAction</span>\n      <span property=\"rdfs:comment\">The act of generating a comment about a subject.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InformAction\">\n      <span class=\"h\" property=\"rdfs:label\">InformAction</span>\n      <span property=\"rdfs:comment\">The act of notifying someone of information pertinent to them, with no expectation of a response.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ConfirmAction\">\n      <span class=\"h\" property=\"rdfs:label\">ConfirmAction</span>\n      <span property=\"rdfs:comment\">The act of notifying someone that a future event/action is going to happen as expected.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/CancelAction&quot;&gt;CancelAction&lt;/a&gt;: The antagonym of ConfirmAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InformAction\">InformAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ConsumeAction\">\n      <span class=\"h\" property=\"rdfs:label\">ConsumeAction</span>\n      <span property=\"rdfs:comment\">The act of ingesting information/resources/food.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CreateAction\">\n      <span class=\"h\" property=\"rdfs:label\">CreateAction</span>\n      <span property=\"rdfs:comment\">The act of deliberately creating/producing/generating/building a result out of the agent.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/CookAction\">\n      <span class=\"h\" property=\"rdfs:label\">CookAction</span>\n      <span property=\"rdfs:comment\">The act of producing/preparing food.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DeleteAction\">\n      <span class=\"h\" property=\"rdfs:label\">DeleteAction</span>\n      <span property=\"rdfs:comment\">The act of editing a recipient by removing one of its objects.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UpdateAction\">UpdateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DepartAction\">\n      <span class=\"h\" property=\"rdfs:label\">DepartAction</span>\n      <span property=\"rdfs:comment\">The act of  departing from a place. An agent departs from an fromLocation for a destination, optionally with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MoveAction\">MoveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DisagreeAction\">\n      <span class=\"h\" property=\"rdfs:label\">DisagreeAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a difference of opinion with the object. An agent disagrees to/about an object (a proposition, topic or theme) with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DiscoverAction\">\n      <span class=\"h\" property=\"rdfs:label\">DiscoverAction</span>\n      <span property=\"rdfs:comment\">The act of discovering/finding an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FindAction\">FindAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DislikeAction\">\n      <span class=\"h\" property=\"rdfs:label\">DislikeAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a negative sentiment about the object. An agent dislikes an object (a proposition, topic or theme) with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DonateAction\">\n      <span class=\"h\" property=\"rdfs:label\">DonateAction</span>\n      <span property=\"rdfs:comment\">The act of providing goods, services, or money without compensation, often for philanthropic reasons.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DownloadAction\">\n      <span class=\"h\" property=\"rdfs:label\">DownloadAction</span>\n      <span property=\"rdfs:comment\">The act of downloading an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrawAction\">\n      <span class=\"h\" property=\"rdfs:label\">DrawAction</span>\n      <span property=\"rdfs:comment\">The act of producing a visual/graphical representation of an object, typically with a pen/pencil and paper as instruments.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/DrinkAction\">\n      <span class=\"h\" property=\"rdfs:label\">DrinkAction</span>\n      <span property=\"rdfs:comment\">The act of swallowing liquids.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EatAction\">\n      <span class=\"h\" property=\"rdfs:label\">EatAction</span>\n      <span property=\"rdfs:comment\">The act of swallowing solid objects.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EndorseAction\">\n      <span class=\"h\" property=\"rdfs:label\">EndorseAction</span>\n      <span property=\"rdfs:comment\">An agent approves/certifies/likes/supports/sanction an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PlayAction\">\n      <span class=\"h\" property=\"rdfs:label\">PlayAction</span>\n      <span property=\"rdfs:comment\">The act of playing/exercising/training/performing for enjoyment, leisure, recreation, Competition or exercise.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ListenAction&quot;&gt;ListenAction&lt;/a&gt;: Unlike ListenAction (which is under ConsumeAction), PlayAction refers to performing for an audience or at an event, rather than consuming music.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/WatchAction&quot;&gt;WatchAction&lt;/a&gt;: Unlike WatchAction (which is under ConsumeAction), PlayAction refers to showing/displaying for an audience or at an event, rather than consuming visual content.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ExerciseAction\">\n      <span class=\"h\" property=\"rdfs:label\">ExerciseAction</span>\n      <span property=\"rdfs:comment\">The act of participating in exertive activity for the purposes of improving health and fitness</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlayAction\">PlayAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FilmAction\">\n      <span class=\"h\" property=\"rdfs:label\">FilmAction</span>\n      <span property=\"rdfs:comment\">The act of capturing sound and moving images on film, video, or digitally.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FollowAction\">\n      <span class=\"h\" property=\"rdfs:label\">FollowAction</span>\n      <span property=\"rdfs:comment\">The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates polled from.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/BefriendAction&quot;&gt;BefriendAction&lt;/a&gt;: Unlike BefriendAction, FollowAction implies that the connection is *not* necessarily reciprocal.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SubscribeAction&quot;&gt;SubscribeAction&lt;/a&gt;: Unlike SubscribeAction, FollowAction implies that the follower acts as an active agent constantly/actively polling for updates.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RegisterAction&quot;&gt;RegisterAction&lt;/a&gt;: Unlike RegisterAction, FollowAction implies that the agent is interested in continuing receiving updates from the object.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/JoinAction&quot;&gt;JoinAction&lt;/a&gt;: Unlike JoinAction, FollowAction implies that the agent is interested in getting updates from the object.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/TrackAction&quot;&gt;TrackAction&lt;/a&gt;: Unlike TrackAction, FollowAction refers to the polling of updates of all aspects of animate objects rather than the location of inanimate objects (e.g. you track a package, but you don&#39;t follow it).&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/GiveAction\">\n      <span class=\"h\" property=\"rdfs:label\">GiveAction</span>\n      <span property=\"rdfs:comment\">The act of transferring ownership of an object to a destination. Reciprocal of TakeAction.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/TakeAction&quot;&gt;TakeAction&lt;/a&gt;: Reciprocal of GiveAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SendAction&quot;&gt;SendAction&lt;/a&gt;: Unlike SendAction, GiveAction implies that ownership is being transferred (e.g. I may send my laptop to you, but that doesn&#39;t mean I&#39;m giving it to you).&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/IgnoreAction\">\n      <span class=\"h\" property=\"rdfs:label\">IgnoreAction</span>\n      <span property=\"rdfs:comment\">The act of intentionally disregarding the object. An agent ignores an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AssessAction\">AssessAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InstallAction\">\n      <span class=\"h\" property=\"rdfs:label\">InstallAction</span>\n      <span property=\"rdfs:comment\">The act of installing an application.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/InviteAction\">\n      <span class=\"h\" property=\"rdfs:label\">InviteAction</span>\n      <span property=\"rdfs:comment\">The act of asking someone to attend an event. Reciprocal of RsvpAction.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/JoinAction\">\n      <span class=\"h\" property=\"rdfs:label\">JoinAction</span>\n      <span property=\"rdfs:comment\">An agent joins an event/group with participants/friends at a location.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RegisterAction&quot;&gt;RegisterAction&lt;/a&gt;: Unlike RegisterAction, JoinAction refers to joining a group/team of people.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SubscribeAction&quot;&gt;SubscribeAction&lt;/a&gt;: Unlike SubscribeAction, JoinAction does not imply that you&#39;ll be receiving updates.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FollowAction&quot;&gt;FollowAction&lt;/a&gt;: Unlike FollowAction, JoinAction does not imply that you&#39;ll be polling for updates.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LeaveAction\">\n      <span class=\"h\" property=\"rdfs:label\">LeaveAction</span>\n      <span property=\"rdfs:comment\">An agent leaves an event / group with participants/friends at a location.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/JoinAction&quot;&gt;JoinAction&lt;/a&gt;: The antagonym of LeaveAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/UnRegisterAction&quot;&gt;UnRegisterAction&lt;/a&gt;: Unlike UnRegisterAction, LeaveAction implies leaving a group/team of people rather than a service.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LendAction\">\n      <span class=\"h\" property=\"rdfs:label\">LendAction</span>\n      <span property=\"rdfs:comment\">The act of providing an object under an agreement that it will be returned at a later date. Reciprocal of BorrowAction.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/BorrowAction&quot;&gt;BorrowAction&lt;/a&gt;: Reciprocal of LendAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LikeAction\">\n      <span class=\"h\" property=\"rdfs:label\">LikeAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a positive sentiment about the object. An agent likes an object (a proposition, topic or theme) with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ListenAction\">\n      <span class=\"h\" property=\"rdfs:label\">ListenAction</span>\n      <span property=\"rdfs:comment\">The act of consuming audio content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LoseAction\">\n      <span class=\"h\" property=\"rdfs:label\">LoseAction</span>\n      <span property=\"rdfs:comment\">The act of being defeated in a competitive activity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AchieveAction\">AchieveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/MarryAction\">\n      <span class=\"h\" property=\"rdfs:label\">MarryAction</span>\n      <span property=\"rdfs:comment\">The act of marrying a person.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OrderAction\">\n      <span class=\"h\" property=\"rdfs:label\">OrderAction</span>\n      <span property=\"rdfs:comment\">An agent orders an object/product/service to be delivered/sent.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PaintAction\">\n      <span class=\"h\" property=\"rdfs:label\">PaintAction</span>\n      <span property=\"rdfs:comment\">The act of producing a painting, typically with paint and canvas as instruments.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PayAction\">\n      <span class=\"h\" property=\"rdfs:label\">PayAction</span>\n      <span property=\"rdfs:comment\">An agent pays a price to a participant.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PerformAction\">\n      <span class=\"h\" property=\"rdfs:label\">PerformAction</span>\n      <span property=\"rdfs:comment\">The act of participating in performance arts.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlayAction\">PlayAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PhotographAction\">\n      <span class=\"h\" property=\"rdfs:label\">PhotographAction</span>\n      <span property=\"rdfs:comment\">The act of capturing still images of objects using a camera.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PrependAction\">\n      <span class=\"h\" property=\"rdfs:label\">PrependAction</span>\n      <span property=\"rdfs:comment\">The act of inserting at the beginning if an ordered collection.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InsertAction\">InsertAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/QuoteAction\">\n      <span class=\"h\" property=\"rdfs:label\">QuoteAction</span>\n      <span property=\"rdfs:comment\">An agent quotes/estimates/appraises an object/product/service with a price at a location/store.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReadAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReadAction</span>\n      <span property=\"rdfs:comment\">The act of consuming written content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReceiveAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReceiveAction</span>\n      <span property=\"rdfs:comment\">The act of physically/electronically taking delivery of an object thathas been transferred from an origin to a destination. Reciprocal of SendAction.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SendAction&quot;&gt;SendAction&lt;/a&gt;: The reciprocal of ReceiveAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/TakeAction&quot;&gt;TakeAction&lt;/a&gt;: Unlike TakeAction, ReceiveAction does not imply that the ownership has been transfered (e.g. I can receive a package, but it does not mean the package is now mine).&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RegisterAction\">\n      <span class=\"h\" property=\"rdfs:label\">RegisterAction</span>\n      <span property=\"rdfs:comment\">The act of registering to be a user of a service, product or web page.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/JoinAction&quot;&gt;JoinAction&lt;/a&gt;: Unlike JoinAction, RegisterAction implies you are registering to be a user of a service, *not* a group/team of people.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FollowAction&quot;&gt;FollowAction&lt;/a&gt;: Unlike FollowAction, RegisterAction doesn&#39;t imply that the agent is expecting to poll for updates from the object.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SubscribeAction&quot;&gt;SubscribeAction&lt;/a&gt;: Unlike SubscribeAction, RegisterAction doesn&#39;t imply that the agent is expecting updates from the object.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RejectAction\">\n      <span class=\"h\" property=\"rdfs:label\">RejectAction</span>\n      <span property=\"rdfs:comment\">The act of rejecting to/adopting an object.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/AcceptAction&quot;&gt;AcceptAction&lt;/a&gt;: The antagonym of RejectAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AllocateAction\">AllocateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RentAction\">\n      <span class=\"h\" property=\"rdfs:label\">RentAction</span>\n      <span property=\"rdfs:comment\">The act of giving money in return for temporary use, but not ownership, of an object such as a vehicle or property. For example, an agent rents a property from a landlord in exchange for a periodic payment.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReplaceAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReplaceAction</span>\n      <span property=\"rdfs:comment\">The act of editing a recipient by replacing an old object with a new object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UpdateAction\">UpdateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReplyAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReplyAction</span>\n      <span property=\"rdfs:comment\">The act of responding to a question/message asked/sent by the object. Related to &lt;a href=&quot;AskAction&quot;&gt;AskAction&lt;/a&gt;.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/AskAction&quot;&gt;AskAction&lt;/a&gt;: Appears generally as an origin of a ReplyAction.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReserveAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReserveAction</span>\n      <span property=\"rdfs:comment\">Reserving a concrete object.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ScheduleAction&quot;&gt;ScheduleAction&lt;/a&gt;: Unlike ScheduleAction, ReserveAction reserves concrete objects (e.g. a table, a hotel) towards a time slot / spatial allocation.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlanAction\">PlanAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReturnAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReturnAction</span>\n      <span property=\"rdfs:comment\">The act of returning to the origin that which was previously received (concrete objects) or taken (ownership).</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReviewAction\">\n      <span class=\"h\" property=\"rdfs:label\">ReviewAction</span>\n      <span property=\"rdfs:comment\">The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AssessAction\">AssessAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RsvpAction\">\n      <span class=\"h\" property=\"rdfs:label\">RsvpAction</span>\n      <span property=\"rdfs:comment\">The act of notifying an event organizer as to whether you expect to attend the event.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InformAction\">InformAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ScheduleAction\">\n      <span class=\"h\" property=\"rdfs:label\">ScheduleAction</span>\n      <span property=\"rdfs:comment\">Scheduling future actions, events, or tasks.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ReserveAction&quot;&gt;ReserveAction&lt;/a&gt;: Unlike ReserveAction, ScheduleAction allocates future actions (e.g. an event, a task, etc) towards a time slot / spatial allocation.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/PlanAction\">PlanAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SearchAction\">\n      <span class=\"h\" property=\"rdfs:label\">SearchAction</span>\n      <span property=\"rdfs:comment\">The act of searching for an object.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FindAction&quot;&gt;FindAction&lt;/a&gt;: SearchAction generally leads to a FindAction, but not necessarily.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SellAction\">\n      <span class=\"h\" property=\"rdfs:label\">SellAction</span>\n      <span property=\"rdfs:comment\">The act of taking money from a buyer in exchange for goods or services rendered. An agent sells an object, product, or service to a buyer for a price. Reciprocal of BuyAction.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SendAction\">\n      <span class=\"h\" property=\"rdfs:label\">SendAction</span>\n      <span property=\"rdfs:comment\">The act of physically/electronically dispatching an object for transfer from an origin to a destination.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ReceiveAction&quot;&gt;ReceiveAction&lt;/a&gt;: The reciprocal of SendAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/GiveAction&quot;&gt;GiveAction&lt;/a&gt;: Unlike GiveAction, SendAction does not imply the transfer of ownership (e.g. I can send you my laptop, but I&#39;m not necessarily giving it to you).&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ShareAction\">\n      <span class=\"h\" property=\"rdfs:label\">ShareAction</span>\n      <span property=\"rdfs:comment\">The act of distributing content to people for their amusement or edification.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/SubscribeAction\">\n      <span class=\"h\" property=\"rdfs:label\">SubscribeAction</span>\n      <span property=\"rdfs:comment\">The act of forming a personal connection with someone/something (object) unidirectionally/asymmetrically to get updates pushed to.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FollowAction&quot;&gt;FollowAction&lt;/a&gt;: Unlike FollowAction, SubscribeAction implies that the subscriber acts as a passive agent being constantly/actively pushed for updates.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RegisterAction&quot;&gt;RegisterAction&lt;/a&gt;: Unlike RegisterAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/JoinAction&quot;&gt;JoinAction&lt;/a&gt;: Unlike JoinAction, SubscribeAction implies that the agent is interested in continuing receiving updates from the object.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TakeAction\">\n      <span class=\"h\" property=\"rdfs:label\">TakeAction</span>\n      <span property=\"rdfs:comment\">The act of gaining ownership of an object from an origin. Reciprocal of GiveAction.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/GiveAction&quot;&gt;GiveAction&lt;/a&gt;: The reciprocal of TakeAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/ReceiveAction&quot;&gt;ReceiveAction&lt;/a&gt;: Unlike ReceiveAction, TakeAction implies that ownership has been transfered.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TieAction\">\n      <span class=\"h\" property=\"rdfs:label\">TieAction</span>\n      <span property=\"rdfs:comment\">The act of reaching a draw in a competitive activity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AchieveAction\">AchieveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TipAction\">\n      <span class=\"h\" property=\"rdfs:label\">TipAction</span>\n      <span property=\"rdfs:comment\">The act of giving money voluntarily to a beneficiary in recognition of services rendered.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TrackAction\">\n      <span class=\"h\" property=\"rdfs:label\">TrackAction</span>\n      <span property=\"rdfs:comment\">An agent tracks an object for updates.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/FollowAction&quot;&gt;FollowAction&lt;/a&gt;: Unlike FollowAction, TrackAction refers to the interest on the location of innanimates objects.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/SubscribeAction&quot;&gt;SubscribeAction&lt;/a&gt;: Unlike SubscribeAction, TrackAction refers to  the interest on the location of innanimate objects.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/FindAction\">FindAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TravelAction\">\n      <span class=\"h\" property=\"rdfs:label\">TravelAction</span>\n      <span property=\"rdfs:comment\">The act of traveling from an fromLocation to a destination by a specified mode of transport, optionally with participants.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/MoveAction\">MoveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UnRegisterAction\">\n      <span class=\"h\" property=\"rdfs:label\">UnRegisterAction</span>\n      <span property=\"rdfs:comment\">The act of un-registering from a service.&lt;p&gt;Related actions:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/RegisterAction&quot;&gt;RegisterAction&lt;/a&gt;: Antagonym of UnRegisterAction.&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://schema.org/Leave&quot;&gt;Leave&lt;/a&gt;: Unlike LeaveAction, UnRegisterAction implies that you are unregistering from a service you werer previously registered, rather than leaving a team/group of people.&lt;/li&gt;&lt;/ul&gt;</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/InteractAction\">InteractAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/UseAction\">\n      <span class=\"h\" property=\"rdfs:label\">UseAction</span>\n      <span property=\"rdfs:comment\">The act of applying an object to its intended purpose.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ViewAction\">\n      <span class=\"h\" property=\"rdfs:label\">ViewAction</span>\n      <span property=\"rdfs:comment\">The act of consuming static visual content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/VoteAction\">\n      <span class=\"h\" property=\"rdfs:label\">VoteAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a preference from a fixed/finite/structured set of choices/options.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ChooseAction\">ChooseAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WantAction\">\n      <span class=\"h\" property=\"rdfs:label\">WantAction</span>\n      <span property=\"rdfs:comment\">The act of expressing a desire about the object. An agent wants an object.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ReactAction\">ReactAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WatchAction\">\n      <span class=\"h\" property=\"rdfs:label\">WatchAction</span>\n      <span property=\"rdfs:comment\">The act of consuming dynamic/moving visual content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/ConsumeAction\">ConsumeAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WearAction\">\n      <span class=\"h\" property=\"rdfs:label\">WearAction</span>\n      <span property=\"rdfs:comment\">The act of dressing oneself in clothing.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/UseAction\">UseAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WinAction\">\n      <span class=\"h\" property=\"rdfs:label\">WinAction</span>\n      <span property=\"rdfs:comment\">The act of achieving victory in a competitive activity.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/AchieveAction\">AchieveAction</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/WriteAction\">\n      <span class=\"h\" property=\"rdfs:label\">WriteAction</span>\n      <span property=\"rdfs:comment\">The act of authoring written creative content.</span>\n       <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreateAction\">CreateAction</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/about\">\n      <span class=\"h\" property=\"rdfs:label\">about</span>\n      <span property=\"rdfs:comment\">The subject matter of the content.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/acceptedOffer\">\n      <span class=\"h\" property=\"rdfs:label\">acceptedOffer</span>\n      <span property=\"rdfs:comment\">The offer(s) -- e.g., product, quantity and price combinations -- included in the order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/acceptedPaymentMethod\">\n      <span class=\"h\" property=\"rdfs:label\">acceptedPaymentMethod</span>\n      <span property=\"rdfs:comment\">The payment method(s) accepted by seller for this offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PaymentMethod\">PaymentMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/acceptsReservations\">\n      <span class=\"h\" property=\"rdfs:label\">acceptsReservations</span>\n      <span property=\"rdfs:comment\">Indicates whether a FoodEstablishment accepts reservations. Values can be Boolean, an URL at which reservations can be made or (for backwards compatibility) the strings &lt;code&gt;Yes&lt;/code&gt; or &lt;code&gt;No&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accessCode\">\n      <span class=\"h\" property=\"rdfs:label\">accessCode</span>\n      <span property=\"rdfs:comment\">Password, PIN, or access code needed for delivery (e.g. from a locker).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryEvent\">DeliveryEvent</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accessibilityAPI\">\n      <span class=\"h\" property=\"rdfs:label\">accessibilityAPI</span>\n      <span property=\"rdfs:comment\">Indicates that the resource is compatible with the referenced accessibility API (&lt;a href=&quot;http://www.w3.org/wiki/WebSchemas/Accessibility&quot;&gt;WebSchemas wiki lists possible values&lt;/a&gt;).\n         </span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accessibilityControl\">\n      <span class=\"h\" property=\"rdfs:label\">accessibilityControl</span>\n      <span property=\"rdfs:comment\">Identifies input methods that are sufficient to fully control the described resource (&lt;a href=&quot;http://www.w3.org/wiki/WebSchemas/Accessibility&quot;&gt;WebSchemas wiki lists possible values&lt;/a&gt;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accessibilityFeature\">\n      <span class=\"h\" property=\"rdfs:label\">accessibilityFeature</span>\n      <span property=\"rdfs:comment\">Content features of the resource, such as accessible media, alternatives and supported enhancements for accessibility (&lt;a href=&quot;http://www.w3.org/wiki/WebSchemas/Accessibility&quot;&gt;WebSchemas wiki lists possible values&lt;/a&gt;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accessibilityHazard\">\n      <span class=\"h\" property=\"rdfs:label\">accessibilityHazard</span>\n      <span property=\"rdfs:comment\">A characteristic of the described resource that is physiologically dangerous to some users. Related to WCAG 2.0 guideline 2.3. (&lt;a href=&quot;http://www.w3.org/wiki/WebSchemas/Accessibility&quot;&gt;WebSchemas wiki lists possible values&lt;/a&gt;)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/accountablePerson\">\n      <span class=\"h\" property=\"rdfs:label\">accountablePerson</span>\n      <span property=\"rdfs:comment\">Specifies the Person that is legally accountable for the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/acquiredFrom\">\n      <span class=\"h\" property=\"rdfs:label\">acquiredFrom</span>\n      <span property=\"rdfs:comment\">The organization or person from which the product was acquired.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OwnershipInfo\">OwnershipInfo</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/action\">\n      <span class=\"h\" property=\"rdfs:label\">action</span>\n      <span property=\"rdfs:comment\">The movement the muscle generates.</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/muscleAction\"/>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/muscleAction\">\n      <span class=\"h\" property=\"rdfs:label\">muscleAction</span>\n      <span property=\"rdfs:comment\">The movement the muscle generates.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/activeIngredient\">\n      <span class=\"h\" property=\"rdfs:label\">activeIngredient</span>\n      <span property=\"rdfs:comment\">An active ingredient, typically chemical compounds and/or biologic substances.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugStrength\">DrugStrength</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/activityDuration\">\n      <span class=\"h\" property=\"rdfs:label\">activityDuration</span>\n      <span property=\"rdfs:comment\">Length of time to engage in the activity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/activityFrequency\">\n      <span class=\"h\" property=\"rdfs:label\">activityFrequency</span>\n      <span property=\"rdfs:comment\">How often one should engage in the activity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/actor\">\n      <span class=\"h\" property=\"rdfs:label\">actor</span>\n      <span property=\"rdfs:comment\">A cast member of the movie, tv/radio series, season, episode, or video.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/actors\">\n      <span class=\"h\" property=\"rdfs:label\">actors</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/actor\"/>\n      <span property=\"rdfs:comment\">A cast member of the movie, tv/radio series, season, episode, or video. (legacy spelling; see singular form, actor)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/additionalName\">\n      <span class=\"h\" property=\"rdfs:label\">additionalName</span>\n      <span property=\"rdfs:comment\">An additional name for a Person, can be used for a middle name.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/additionalType\">\n      <span class=\"h\" property=\"rdfs:label\">additionalType</span>\n      <span property=\"rdfs:comment\">An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the &#39;typeof&#39; attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/additionalVariable\">\n      <span class=\"h\" property=\"rdfs:label\">additionalVariable</span>\n      <span property=\"rdfs:comment\">Any additional component of the exercise prescription that may need to be articulated to the patient. This may include the order of exercises, the number of repetitions of movement, quantitative distance, progressions over time, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/addOn\">\n      <span class=\"h\" property=\"rdfs:label\">addOn</span>\n      <span property=\"rdfs:comment\">An additional offer that can only be obtained in combination with the first base offer (e.g. supplements and extensions that are available for a surcharge).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/address\">\n      <span class=\"h\" property=\"rdfs:label\">address</span>\n      <span property=\"rdfs:comment\">Physical address of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/addressCountry\">\n      <span class=\"h\" property=\"rdfs:label\">addressCountry</span>\n      <span property=\"rdfs:comment\">The country. For example, USA. You can also provide the two-letter &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_3166-1&#39;&gt;ISO 3166-1 alpha-2 country code&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Country\">Country</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/addressLocality\">\n      <span class=\"h\" property=\"rdfs:label\">addressLocality</span>\n      <span property=\"rdfs:comment\">The locality. For example, Mountain View.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/addressRegion\">\n      <span class=\"h\" property=\"rdfs:label\">addressRegion</span>\n      <span property=\"rdfs:comment\">The region. For example, CA.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/administrationRoute\">\n      <span class=\"h\" property=\"rdfs:label\">administrationRoute</span>\n      <span property=\"rdfs:comment\">A route by which this drug may be administered, e.g. &#39;oral&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/advanceBookingRequirement\">\n      <span class=\"h\" property=\"rdfs:label\">advanceBookingRequirement</span>\n      <span property=\"rdfs:comment\">The amount of time that is required between accepting the offer and the actual usage of the resource or service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/adverseOutcome\">\n      <span class=\"h\" property=\"rdfs:label\">adverseOutcome</span>\n      <span property=\"rdfs:comment\">A possible complication and/or side effect of this therapy. If it is known that an adverse outcome is serious (resulting in death, disability, or permanent damage; requiring hospitalization; or is otherwise life-threatening or requires immediate medical attention), tag it as a seriouseAdverseOutcome instead.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/affectedBy\">\n      <span class=\"h\" property=\"rdfs:label\">affectedBy</span>\n      <span property=\"rdfs:comment\">Drugs that affect the test&#39;s results.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/affiliation\">\n      <span class=\"h\" property=\"rdfs:label\">affiliation</span>\n      <span property=\"rdfs:comment\">An organization that this person is affiliated with. For example, a school/university, a club, or a team.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/agent\">\n      <span class=\"h\" property=\"rdfs:label\">agent</span>\n      <span property=\"rdfs:comment\">The direct performer or driver of the action (animate or inanimate). e.g. *John* wrote a book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/aggregateRating\">\n      <span class=\"h\" property=\"rdfs:label\">aggregateRating</span>\n      <span property=\"rdfs:comment\">The overall rating, based on a collection of reviews or ratings, of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AggregateRating\">AggregateRating</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/album\">\n      <span class=\"h\" property=\"rdfs:label\">album</span>\n      <span property=\"rdfs:comment\">A music album.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicAlbum\">MusicAlbum</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/albums\">\n      <span class=\"h\" property=\"rdfs:label\">albums</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/album\"/>\n      <span property=\"rdfs:comment\">A collection of music albums (legacy spelling; see singular form, album).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicAlbum\">MusicAlbum</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alcoholWarning\">\n      <span class=\"h\" property=\"rdfs:label\">alcoholWarning</span>\n      <span property=\"rdfs:comment\">Any precaution, guidance, contraindication, etc. related to consumption of alcohol while taking this drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/algorithm\">\n      <span class=\"h\" property=\"rdfs:label\">algorithm</span>\n      <span property=\"rdfs:comment\">The algorithm or rules to follow to compute the score.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalRiskScore\">MedicalRiskScore</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alignmentType\">\n      <span class=\"h\" property=\"rdfs:label\">alignmentType</span>\n      <span property=\"rdfs:comment\">A category of alignment between the learning resource and the framework node. Recommended values include: &#39;assesses&#39;, &#39;teaches&#39;, &#39;requires&#39;, &#39;textComplexity&#39;, &#39;readingLevel&#39;, &#39;educationalSubject&#39;, and &#39;educationLevel&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alternateName\">\n      <span class=\"h\" property=\"rdfs:label\">alternateName</span>\n      <span property=\"rdfs:comment\">An alias for the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alternativeHeadline\">\n      <span class=\"h\" property=\"rdfs:label\">alternativeHeadline</span>\n      <span property=\"rdfs:comment\">A secondary title of the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alumni\">\n      <span class=\"h\" property=\"rdfs:label\">alumni</span>\n      <span property=\"rdfs:comment\">Alumni of educational organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <link property=\"http://schema.org/inverseOf\" href=\"http://schema.org/alumniOf\"/>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/alumniOf\">\n      <span class=\"h\" property=\"rdfs:label\">alumniOf</span>\n      <span property=\"rdfs:comment\">An educational organizations that the person is an alumni of.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/EducationalOrganization\">EducationalOrganization</a></span>\n      <link property=\"http://schema.org/inverseOf\" href=\"http://schema.org/alumni\"/>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/amountOfThisGood\">\n      <span class=\"h\" property=\"rdfs:label\">amountOfThisGood</span>\n      <span property=\"rdfs:comment\">The quantity of the goods included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TypeAndQuantityNode\">TypeAndQuantityNode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/antagonist\">\n      <span class=\"h\" property=\"rdfs:label\">antagonist</span>\n      <span property=\"rdfs:comment\">The muscle whose action counteracts the specified muscle.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/applicableLocation\">\n      <span class=\"h\" property=\"rdfs:label\">applicableLocation</span>\n      <span property=\"rdfs:comment\">The location in which the status applies.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugLegalStatus\">DrugLegalStatus</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/applicationCategory\">\n      <span class=\"h\" property=\"rdfs:label\">applicationCategory</span>\n      <span property=\"rdfs:comment\">Type of software application, e.g. &quot;Game, Multimedia&quot;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/applicationSubCategory\">\n      <span class=\"h\" property=\"rdfs:label\">applicationSubCategory</span>\n      <span property=\"rdfs:comment\">Subcategory of the application, e.g. &quot;Arcade Game&quot;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/applicationSuite\">\n      <span class=\"h\" property=\"rdfs:label\">applicationSuite</span>\n      <span property=\"rdfs:comment\">The name of the application suite to which the application belongs (e.g. Excel belongs to Office)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/appliesToDeliveryMethod\">\n      <span class=\"h\" property=\"rdfs:label\">appliesToDeliveryMethod</span>\n      <span property=\"rdfs:comment\">The delivery method(s) to which the delivery charge or payment charge specification applies.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryChargeSpecification\">DeliveryChargeSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PaymentChargeSpecification\">PaymentChargeSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/appliesToPaymentMethod\">\n      <span class=\"h\" property=\"rdfs:label\">appliesToPaymentMethod</span>\n      <span property=\"rdfs:comment\">The payment method(s) to which the payment charge specification applies.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PaymentChargeSpecification\">PaymentChargeSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PaymentMethod\">PaymentMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/area\">\n      <span class=\"h\" property=\"rdfs:label\">area</span>\n      <span property=\"rdfs:comment\">The area within which users can expect to reach the broadcast service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BroadcastService\">BroadcastService</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/areaServed\">\n      <span class=\"h\" property=\"rdfs:label\">areaServed</span>\n      <span property=\"rdfs:comment\">The location served by this contact point (e.g., a phone number intended for Europeans vs. North Americans or only within the United States.)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arterialBranch\">\n      <span class=\"h\" property=\"rdfs:label\">arterialBranch</span>\n      <span property=\"rdfs:comment\">The branches that comprise the arterial structure.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Artery\">Artery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/articleBody\">\n      <span class=\"h\" property=\"rdfs:label\">articleBody</span>\n      <span property=\"rdfs:comment\">The actual body of the article.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Article\">Article</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/articleSection\">\n      <span class=\"h\" property=\"rdfs:label\">articleSection</span>\n      <span property=\"rdfs:comment\">Articles may belong to one or more &#39;sections&#39; in a magazine or newspaper, such as Sports, Lifestyle, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Article\">Article</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/aspect\">\n      <span class=\"h\" property=\"rdfs:label\">aspect</span>\n      <span property=\"rdfs:comment\">An aspect of medical practice that is considered on the page, such as &#39;diagnosis&#39;, &#39;treatment&#39;, &#39;causes&#39;, &#39;prognosis&#39;, &#39;etiology&#39;, &#39;epidemiology&#39;, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalWebPage\">MedicalWebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/assembly\">\n      <span class=\"h\" property=\"rdfs:label\">assembly</span>\n      <span property=\"rdfs:comment\">Library file name e.g., mscorlib.dll, system.web.dll</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/APIReference\">APIReference</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/assemblyVersion\">\n      <span class=\"h\" property=\"rdfs:label\">assemblyVersion</span>\n      <span property=\"rdfs:comment\">Associated product/technology version. e.g., .NET Framework 4.5</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/APIReference\">APIReference</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/associatedAnatomy\">\n      <span class=\"h\" property=\"rdfs:label\">associatedAnatomy</span>\n      <span property=\"rdfs:comment\">The anatomy of the underlying organ system or structures associated with this entity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PhysicalActivity\">PhysicalActivity</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/associatedArticle\">\n      <span class=\"h\" property=\"rdfs:label\">associatedArticle</span>\n      <span property=\"rdfs:comment\">A NewsArticle associated with the Media Object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/associatedMedia\">\n      <span class=\"h\" property=\"rdfs:label\">associatedMedia</span>\n      <span property=\"rdfs:comment\">The media objects that encode this creative work. This property is a synonym for encodings.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/associatedPathophysiology\">\n      <span class=\"h\" property=\"rdfs:label\">associatedPathophysiology</span>\n      <span property=\"rdfs:comment\">If applicable, a description of the pathophysiology associated with the anatomical system, including potential abnormal changes in the mechanical, physical, and biochemical functions of the system.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/attendee\">\n      <span class=\"h\" property=\"rdfs:label\">attendee</span>\n      <span property=\"rdfs:comment\">A person or organization attending the event.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/attendees\">\n      <span class=\"h\" property=\"rdfs:label\">attendees</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/attendees\"/>\n      <span property=\"rdfs:comment\">A person attending the event (legacy spelling; see singular form, attendee).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/audience\">\n      <span class=\"h\" property=\"rdfs:label\">audience</span>\n      <span property=\"rdfs:comment\">The intended audience of the item, i.e. the group for whom the item was created.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PlayAction\">PlayAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/audienceType\">\n      <span class=\"h\" property=\"rdfs:label\">audienceType</span>\n      <span property=\"rdfs:comment\">The target group associated with a given audience (e.g. veterans, car owners, musicians, etc.)\n          domain: Audience\n          Range: Text\n        </span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/audio\">\n      <span class=\"h\" property=\"rdfs:label\">audio</span>\n      <span property=\"rdfs:comment\">An embedded audio object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AudioObject\">AudioObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/author\">\n      <span class=\"h\" property=\"rdfs:label\">author</span>\n      <span property=\"rdfs:comment\">The author of this content. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availability\">\n      <span class=\"h\" property=\"rdfs:label\">availability</span>\n      <span property=\"rdfs:comment\">The availability of this item&amp;#x2014;for example In stock, Out of stock, Pre-order, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ItemAvailability\">ItemAvailability</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availabilityEnds\">\n      <span class=\"h\" property=\"rdfs:label\">availabilityEnds</span>\n      <span property=\"rdfs:comment\">The end of the availability of the product or service included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availabilityStarts\">\n      <span class=\"h\" property=\"rdfs:label\">availabilityStarts</span>\n      <span property=\"rdfs:comment\">The beginning of the availability of the product or service included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableAtOrFrom\">\n      <span class=\"h\" property=\"rdfs:label\">availableAtOrFrom</span>\n      <span property=\"rdfs:comment\">The place(s) from which the offer can be obtained (e.g. store locations).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableChannel\">\n      <span class=\"h\" property=\"rdfs:label\">availableChannel</span>\n      <span property=\"rdfs:comment\">A means of accessing the service (e.g. a phone bank, a web site, a location, etc.)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableDeliveryMethod\">\n      <span class=\"h\" property=\"rdfs:label\">availableDeliveryMethod</span>\n      <span property=\"rdfs:comment\">The delivery method(s) available for this offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableFrom\">\n      <span class=\"h\" property=\"rdfs:label\">availableFrom</span>\n      <span property=\"rdfs:comment\">When the item is available for pickup from the store, locker, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryEvent\">DeliveryEvent</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableIn\">\n      <span class=\"h\" property=\"rdfs:label\">availableIn</span>\n      <span property=\"rdfs:comment\">The location in which the strength is available.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugStrength\">DrugStrength</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableLanguage\">\n      <span class=\"h\" property=\"rdfs:label\">availableLanguage</span>\n      <span property=\"rdfs:comment\">A language someone may use with the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Language\">Language</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableService\">\n      <span class=\"h\" property=\"rdfs:label\">availableService</span>\n      <span property=\"rdfs:comment\">A medical service available from this provider.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Hospital\">Hospital</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalClinic\">MedicalClinic</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Physician\">Physician</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableStrength\">\n      <span class=\"h\" property=\"rdfs:label\">availableStrength</span>\n      <span property=\"rdfs:comment\">An available dosage strength for the drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugStrength\">DrugStrength</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableTest\">\n      <span class=\"h\" property=\"rdfs:label\">availableTest</span>\n      <span property=\"rdfs:comment\">A diagnostic test or procedure offered by this lab.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DiagnosticLab\">DiagnosticLab</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/availableThrough\">\n      <span class=\"h\" property=\"rdfs:label\">availableThrough</span>\n      <span property=\"rdfs:comment\">After this date, the item will no longer be available for pickup.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryEvent\">DeliveryEvent</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/award\">\n      <span class=\"h\" property=\"rdfs:label\">award</span>\n      <span property=\"rdfs:comment\">An award won by this person or for this creative work.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/awards\">\n      <span class=\"h\" property=\"rdfs:label\">awards</span\n>      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/award\"/>\n      <span property=\"rdfs:comment\">Awards won by this person or for this creative work. (legacy spelling; see singular form, award)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/background\">\n      <span class=\"h\" property=\"rdfs:label\">background</span>\n      <span property=\"rdfs:comment\">Descriptive information establishing a historical perspective on the supplement. May include the rationale for the name, the population where the supplement first came to prominence, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/baseSalary\">\n      <span class=\"h\" property=\"rdfs:label\">baseSalary</span>\n      <span property=\"rdfs:comment\">The base salary of the job.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/benefits\">\n      <span class=\"h\" property=\"rdfs:label\">benefits</span>\n      <span property=\"rdfs:comment\">Description of benefits associated with the job.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bestRating\">\n      <span class=\"h\" property=\"rdfs:label\">bestRating</span>\n      <span property=\"rdfs:comment\">The highest value allowed in this rating system. If bestRating is omitted, 5 is assumed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Rating\">Rating</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/billingAddress\">\n      <span class=\"h\" property=\"rdfs:label\">billingAddress</span>\n      <span property=\"rdfs:comment\">The billing address for the order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/billingIncrement\">\n      <span class=\"h\" property=\"rdfs:label\">billingIncrement</span>\n      <span property=\"rdfs:comment\">This property specifies the minimal quantity and rounding increment that will be the basis for the billing. The unit of measurement is specified by the unitCode property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UnitPriceSpecification\">UnitPriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/biomechnicalClass\">\n      <span class=\"h\" property=\"rdfs:label\">biomechnicalClass</span>\n      <span property=\"rdfs:comment\">The biomechanical properties of the bone.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Joint\">Joint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/birthDate\">\n      <span class=\"h\" property=\"rdfs:label\">birthDate</span>\n      <span property=\"rdfs:comment\">Date of birth.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bitrate\">\n      <span class=\"h\" property=\"rdfs:label\">bitrate</span>\n      <span property=\"rdfs:comment\">The bitrate of the media object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/blogPost\">\n      <span class=\"h\" property=\"rdfs:label\">blogPost</span>\n      <span property=\"rdfs:comment\">A posting that is part of this blog.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Blog\">Blog</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BlogPosting\">BlogPosting</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/blogPosts\">\n      <span class=\"h\" property=\"rdfs:label\">blogPosts</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/blogPost\"/>\n      <span property=\"rdfs:comment\">The postings that are part of this blog (legacy spelling; see singular form, blogPost).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Blog\">Blog</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BlogPosting\">BlogPosting</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bloodSupply\">\n      <span class=\"h\" property=\"rdfs:label\">bloodSupply</span>\n      <span property=\"rdfs:comment\">The blood vessel that carries blood from the heart to the muscle.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bodyLocation\">\n      <span class=\"h\" property=\"rdfs:label\">bodyLocation</span>\n      <span property=\"rdfs:comment\">Location in the body of the anatomical structure.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bookEdition\">\n      <span class=\"h\" property=\"rdfs:label\">bookEdition</span>\n      <span property=\"rdfs:comment\">The edition of the book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Book\">Book</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bookFormat\">\n      <span class=\"h\" property=\"rdfs:label\">bookFormat</span>\n      <span property=\"rdfs:comment\">The format of the book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Book\">Book</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BookFormatType\">BookFormatType</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/borrower\">\n      <span class=\"h\" property=\"rdfs:label\">borrower</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The person that borrows the object being lent.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LendAction\">LendAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/box\">\n      <span class=\"h\" property=\"rdfs:label\">box</span>\n      <span property=\"rdfs:comment\">A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/branch\">\n      <span class=\"h\" property=\"rdfs:label\">branch</span>\n      <span property=\"rdfs:comment\">The branches that delineate from the nerve bundle.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/branchOf\">\n      <span class=\"h\" property=\"rdfs:label\">branchOf</span>\n      <span property=\"rdfs:comment\">The larger organization that this local business is a branch of, if any.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/brand\">\n      <span class=\"h\" property=\"rdfs:label\">brand</span>\n      <span property=\"rdfs:comment\">The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Brand\">Brand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/breadcrumb\">\n      <span class=\"h\" property=\"rdfs:label\">breadcrumb</span>\n      <span property=\"rdfs:comment\">A set of links that can help a user understand and navigate a website hierarchy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/breastfeedingWarning\">\n      <span class=\"h\" property=\"rdfs:label\">breastfeedingWarning</span>\n      <span property=\"rdfs:comment\">Any precaution, guidance, contraindication, etc. related to this drug&#39;s use by breastfeeding mothers.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/broadcaster\">\n      <span class=\"h\" property=\"rdfs:label\">broadcaster</span>\n      <span property=\"rdfs:comment\">The organization owning or operating the broadcast service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BroadcastService\">BroadcastService</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/browserRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">browserRequirements</span>\n      <span property=\"rdfs:comment\">Specifies browser requirements in human-readable text. For example,&quot;requires HTML5 support&quot;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebApplication\">WebApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/businessFunction\">\n      <span class=\"h\" property=\"rdfs:label\">businessFunction</span>\n      <span property=\"rdfs:comment\">The business function (e.g. sell, lease, repair, dispose) of the offer or component of a bundle (TypeAndQuantityNode). The default is http://purl.org/goodrelations/v1#Sell.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TypeAndQuantityNode\">TypeAndQuantityNode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusinessFunction\">BusinessFunction</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/buyer\">\n      <span class=\"h\" property=\"rdfs:label\">buyer</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The participant/person/organization that bought the object.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SellAction\">SellAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/byArtist\">\n      <span class=\"h\" property=\"rdfs:label\">byArtist</span>\n      <span property=\"rdfs:comment\">The artist that performed this album or recording.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicAlbum\">MusicAlbum</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/calories\">\n      <span class=\"h\" property=\"rdfs:label\">calories</span>\n      <span property=\"rdfs:comment\">The number of calories</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Energy\">Energy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/candidate\">\n      <span class=\"h\" property=\"rdfs:label\">candidate</span>\n      <span property=\"rdfs:comment\">A sub property of object. The candidate subject of this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VoteAction\">VoteAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/caption\">\n      <span class=\"h\" property=\"rdfs:label\">caption</span>\n      <span property=\"rdfs:comment\">The caption for this object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/carbohydrateContent\">\n      <span class=\"h\" property=\"rdfs:label\">carbohydrateContent</span>\n      <span property=\"rdfs:comment\">The number of grams of carbohydrates.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/carrier\">\n      <span class=\"h\" property=\"rdfs:label\">carrier</span>\n      <span property=\"rdfs:comment\">The party responsible for the parcel delivery.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/carrierRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">carrierRequirements</span>\n      <span property=\"rdfs:comment\">Specifies specific carrier(s) requirements for the application (e.g. an application may only work on a specific carrier network).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MobileApplication\">MobileApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/catalog\">\n      <span class=\"h\" property=\"rdfs:label\">catalog</span>\n      <span property=\"rdfs:comment\">A data catalog which contains a dataset.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Dataset\">Dataset</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DataCatalog\">DataCatalog</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/category\">\n      <span class=\"h\" property=\"rdfs:label\">category</span>\n      <span property=\"rdfs:comment\">A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PhysicalActivity\">PhysicalActivity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PhysicalActivityCategory\">PhysicalActivityCategory</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/cause\">\n      <span class=\"h\" property=\"rdfs:label\">cause</span>\n      <span property=\"rdfs:comment\">An underlying cause. More specifically, one of the causative agent(s) that are most directly responsible for the pathophysiologic process that eventually results in the occurrence.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCause\">MedicalCause</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/causeOf\">\n      <span class=\"h\" property=\"rdfs:label\">causeOf</span>\n      <span property=\"rdfs:comment\">The condition, complication, symptom, sign, etc. caused.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCause\">MedicalCause</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/childMaxAge\">\n      <span class=\"h\" property=\"rdfs:label\">childMaxAge</span>\n      <span property=\"rdfs:comment\">Maximal age of the child</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParentAudience\">ParentAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/childMinAge\">\n      <span class=\"h\" property=\"rdfs:label\">childMinAge</span>\n      <span property=\"rdfs:comment\">Minimal age of the child</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParentAudience\">ParentAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/children\">\n      <span class=\"h\" property=\"rdfs:label\">children</span>\n      <span property=\"rdfs:comment\">A child of the person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/cholesterolContent\">\n      <span class=\"h\" property=\"rdfs:label\">cholesterolContent</span>\n      <span property=\"rdfs:comment\">The number of milligrams of cholesterol.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/circle\">\n      <span class=\"h\" property=\"rdfs:label\">circle</span>\n      <span property=\"rdfs:comment\">A circle is the circular region of a specified radius centered at a specified latitude and longitude. A circle is expressed as a pair followed by a radius in meters.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/citation\">\n      <span class=\"h\" property=\"rdfs:label\">citation</span>\n      <span property=\"rdfs:comment\">A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/clincalPharmacology\">\n      <span class=\"h\" property=\"rdfs:label\">clincalPharmacology</span>\n      <span property=\"rdfs:comment\">Description of the absorption and elimination of drugs, including their concentration (pharmacokinetics, pK) and biological effects (pharmacodynamics, pD).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/clipNumber\">\n      <span class=\"h\" property=\"rdfs:label\">clipNumber</span>\n      <span property=\"rdfs:comment\">Position of the clip within an ordered group of clips.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/closes\">\n      <span class=\"h\" property=\"rdfs:label\">closes</span>\n      <span property=\"rdfs:comment\">The closing hour of the place or service on the given day(s) of the week.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Time\">Time</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/code\">\n      <span class=\"h\" property=\"rdfs:label\">code</span>\n      <span property=\"rdfs:comment\">A medical code for the entity, taken from a controlled vocabulary or ontology such as ICD-9, DiseasesDB, MeSH, SNOMED-CT, RxNorm, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCode\">MedicalCode</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/codeRepository\">\n      <span class=\"h\" property=\"rdfs:label\">codeRepository</span>\n      <span property=\"rdfs:comment\">Link to the repository where the un-compiled, human readable code and related code is located (SVN, github, CodePlex)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Code\">Code</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/codeValue\">\n      <span class=\"h\" property=\"rdfs:label\">codeValue</span>\n      <span property=\"rdfs:comment\">The actual code.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCode\">MedicalCode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/codingSystem\">\n      <span class=\"h\" property=\"rdfs:label\">codingSystem</span>\n      <span property=\"rdfs:comment\">The coding system, e.g. &#39;ICD-10&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCode\">MedicalCode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/colleague\">\n      <span class=\"h\" property=\"rdfs:label\">colleague</span>\n      <span property=\"rdfs:comment\">A colleague of the person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/colleagues\">\n      <span class=\"h\" property=\"rdfs:label\">colleagues</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/colleague\"/>\n      <span property=\"rdfs:comment\">A colleague of the person (legacy spelling; see singular form, colleague).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/collection\">\n      <span class=\"h\" property=\"rdfs:label\">collection</span>\n      <span property=\"rdfs:comment\">A sub property of object. The collection target of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UpdateAction\">UpdateAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/color\">\n      <span class=\"h\" property=\"rdfs:label\">color</span>\n      <span property=\"rdfs:comment\">The color of the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/comment\">\n      <span class=\"h\" property=\"rdfs:label\">comment</span>\n      <span property=\"rdfs:comment\">Comments, typically from users, on this CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/commentText\">\n      <span class=\"h\" property=\"rdfs:label\">commentText</span>\n      <span property=\"rdfs:comment\">The text of the UserComment.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/commentTime\">\n      <span class=\"h\" property=\"rdfs:label\">commentTime</span>\n      <span property=\"rdfs:comment\">The time at which the UserComment was made.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/comprisedOf\">\n      <span class=\"h\" property=\"rdfs:label\">comprisedOf</span>\n      <span property=\"rdfs:comment\">The underlying anatomical structures, such as organs, that comprise the anatomical system.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/confirmationNumber\">\n      <span class=\"h\" property=\"rdfs:label\">confirmationNumber</span>\n      <span property=\"rdfs:comment\">A number that confirms the given order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/connectedTo\">\n      <span class=\"h\" property=\"rdfs:label\">connectedTo</span>\n      <span property=\"rdfs:comment\">Other anatomical structures to which this structure is connected.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contactOption\">\n      <span class=\"h\" property=\"rdfs:label\">contactOption</span>\n      <span property=\"rdfs:comment\">An option available on this contact point (e.g. a toll-free number or support for hearing-impaired callers.)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPointOption\">ContactPointOption</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contactPoint\">\n      <span class=\"h\" property=\"rdfs:label\">contactPoint</span>\n      <span property=\"rdfs:comment\">A contact point for a person or organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contactPoints\">\n      <span class=\"h\" property=\"rdfs:label\">contactPoints</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/contactPoint\"/>\n      <span property=\"rdfs:comment\">A contact point for a person or organization (legacy spelling; see singular form, contactPoint).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contactType\">\n      <span class=\"h\" property=\"rdfs:label\">contactType</span>\n      <span property=\"rdfs:comment\">A person or organization can have different contact points, for different purposes. For example, a sales contact point, a PR contact point and so on. This property is used to specify the kind of contact point.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/containedIn\">\n      <span class=\"h\" property=\"rdfs:label\">containedIn</span>\n      <span property=\"rdfs:comment\">The basic containment relation between places.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contentLocation\">\n      <span class=\"h\" property=\"rdfs:label\">contentLocation</span>\n      <span property=\"rdfs:comment\">The location of the content.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contentRating\">\n      <span class=\"h\" property=\"rdfs:label\">contentRating</span>\n      <span property=\"rdfs:comment\">Official rating of a piece of content&amp;#x2014;for example,&#39;MPAA PG-13&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contentSize\">\n      <span class=\"h\" property=\"rdfs:label\">contentSize</span>\n      <span property=\"rdfs:comment\">File size in (mega/kilo) bytes.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contentUrl\">\n      <span class=\"h\" property=\"rdfs:label\">contentUrl</span>\n      <span property=\"rdfs:comment\">Actual bytes of the media object, for example the image file or video file. (previous spelling: contentURL)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contraindication\">\n      <span class=\"h\" property=\"rdfs:label\">contraindication</span>\n      <span property=\"rdfs:comment\">A contraindication for this therapy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalContraindication\">MedicalContraindication</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contributor\">\n      <span class=\"h\" property=\"rdfs:label\">contributor</span>\n      <span property=\"rdfs:comment\">A secondary contributor to the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/cookingMethod\">\n      <span class=\"h\" property=\"rdfs:label\">cookingMethod</span>\n      <span property=\"rdfs:comment\">The method of cooking, such as Frying, Steaming, ...</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/cookTime\">\n      <span class=\"h\" property=\"rdfs:label\">cookTime</span>\n      <span property=\"rdfs:comment\">The time it takes to actually cook the dish, in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 duration format&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/copyrightHolder\">\n      <span class=\"h\" property=\"rdfs:label\">copyrightHolder</span>\n      <span property=\"rdfs:comment\">The party holding the legal copyright to the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/copyrightYear\">\n      <span class=\"h\" property=\"rdfs:label\">copyrightYear</span>\n      <span property=\"rdfs:comment\">The year during which the claimed copyright for the CreativeWork was first asserted.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/cost\">\n      <span class=\"h\" property=\"rdfs:label\">cost</span>\n      <span property=\"rdfs:comment\">Cost per unit of the drug, as reported by the source being tagged.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/costCategory\">\n      <span class=\"h\" property=\"rdfs:label\">costCategory</span>\n      <span property=\"rdfs:comment\">The category of cost, such as wholesale, retail, reimbursement cap, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugCostCategory\">DrugCostCategory</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/costCurrency\">\n      <span class=\"h\" property=\"rdfs:label\">costCurrency</span>\n      <span property=\"rdfs:comment\">The currency (in 3-letter &lt;a href=http://en.wikipedia.org/wiki/ISO_4217&gt;ISO 4217 format&lt;/a&gt;) of the drug cost.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/costOrigin\">\n      <span class=\"h\" property=\"rdfs:label\">costOrigin</span>\n      <span property=\"rdfs:comment\">Additional details to capture the origin of the cost data. For example, &#39;Medicare Part B&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/costPerUnit\">\n      <span class=\"h\" property=\"rdfs:label\">costPerUnit</span>\n      <span property=\"rdfs:comment\">The cost per unit of the drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/countriesNotSupported\">\n      <span class=\"h\" property=\"rdfs:label\">countriesNotSupported</span>\n      <span property=\"rdfs:comment\">Countries for which the application is not supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/countriesSupported\">\n      <span class=\"h\" property=\"rdfs:label\">countriesSupported</span>\n      <span property=\"rdfs:comment\">Countries for which the application is supported. You can also provide the two-letter ISO 3166-1 alpha-2 country code.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/course\">\n      <span class=\"h\" property=\"rdfs:label\">course</span>\n      <span property=\"rdfs:comment\">A sub property of location. The course where this action was taken.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/creator\">\n      <span class=\"h\" property=\"rdfs:label\">creator</span>\n      <span property=\"rdfs:comment\">The creator/author of this CreativeWork or UserComments. This is the same as the Author property for CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/currenciesAccepted\">\n      <span class=\"h\" property=\"rdfs:label\">currenciesAccepted</span>\n      <span property=\"rdfs:comment\">The currency accepted (in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_4217&#39;&gt;ISO 4217 currency format&lt;/a&gt;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/customer\">\n      <span class=\"h\" property=\"rdfs:label\">customer</span>\n      <span property=\"rdfs:comment\">Party placing the order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dataset\">\n      <span class=\"h\" property=\"rdfs:label\">dataset</span>\n      <span property=\"rdfs:comment\">A dataset contained in a catalog.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DataCatalog\">DataCatalog</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Dataset\">Dataset</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dateCreated\">\n      <span class=\"h\" property=\"rdfs:label\">dateCreated</span>\n      <span property=\"rdfs:comment\">The date on which the CreativeWork was created.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dateline\">\n      <span class=\"h\" property=\"rdfs:label\">dateline</span>\n      <span property=\"rdfs:comment\">The location where the NewsArticle was produced.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dateModified\">\n      <span class=\"h\" property=\"rdfs:label\">dateModified</span>\n      <span property=\"rdfs:comment\">The date on which the CreativeWork was most recently modified.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/datePosted\">\n      <span class=\"h\" property=\"rdfs:label\">datePosted</span>\n      <span property=\"rdfs:comment\">Publication date for the job posting.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/datePublished\">\n      <span class=\"h\" property=\"rdfs:label\">datePublished</span>\n      <span property=\"rdfs:comment\">Date of first broadcast/publication.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dayOfWeek\">\n      <span class=\"h\" property=\"rdfs:label\">dayOfWeek</span>\n      <span property=\"rdfs:comment\">The day of the week for which these opening hours are valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DayOfWeek\">DayOfWeek</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/deathDate\">\n      <span class=\"h\" property=\"rdfs:label\">deathDate</span>\n      <span property=\"rdfs:comment\">Date of death.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/deliveryAddress\">\n      <span class=\"h\" property=\"rdfs:label\">deliveryAddress</span>\n      <span property=\"rdfs:comment\">Destination address.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/deliveryLeadTime\">\n      <span class=\"h\" property=\"rdfs:label\">deliveryLeadTime</span>\n      <span property=\"rdfs:comment\">The typical delay between the receipt of the order and the goods leaving the warehouse.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/deliveryMethod\">\n      <span class=\"h\" property=\"rdfs:label\">deliveryMethod</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The method of delivery</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReceiveAction\">ReceiveAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SendAction\">SendAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrackAction\">TrackAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/deliveryStatus\">\n      <span class=\"h\" property=\"rdfs:label\">deliveryStatus</span>\n      <span property=\"rdfs:comment\">New entry added as the package passes through each leg of its journey (from shipment to final delivery).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DeliveryEvent\">DeliveryEvent</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/department\">\n      <span class=\"h\" property=\"rdfs:label\">department</span>\n      <span property=\"rdfs:comment\">A relationship between an organization and a department of that organization, also described as an organization (allowing different urls, logos, opening hours). For example: a store with a pharmacy, or a bakery with a cafe.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dependencies\">\n      <span class=\"h\" property=\"rdfs:label\">dependencies</span>\n      <span property=\"rdfs:comment\">Prerequisites needed to fulfill steps in article.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TechArticle\">TechArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/depth\">\n      <span class=\"h\" property=\"rdfs:label\">depth</span>\n      <span property=\"rdfs:comment\">The depth of the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Distance\">Distance</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/description\">\n      <span class=\"h\" property=\"rdfs:label\">description</span>\n      <span property=\"rdfs:comment\">A short description of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/device\">\n      <span class=\"h\" property=\"rdfs:label\">device</span>\n      <span property=\"rdfs:comment\">Device required to run the application. Used in cases where a specific make/model is required to run the application.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/diagnosis\">\n      <span class=\"h\" property=\"rdfs:label\">diagnosis</span>\n      <span property=\"rdfs:comment\">One or more alternative conditions considered in the differential diagnosis process.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DDxElement\">DDxElement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/diagram\">\n      <span class=\"h\" property=\"rdfs:label\">diagram</span>\n      <span property=\"rdfs:comment\">An image containing a diagram that illustrates the structure and/or its component substructures and/or connections with other structures.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/diet\">\n      <span class=\"h\" property=\"rdfs:label\">diet</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The diet used in this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dietFeatures\">\n      <span class=\"h\" property=\"rdfs:label\">dietFeatures</span>\n      <span property=\"rdfs:comment\">Nutritional information specific to the dietary plan. May include dietary recommendations on what foods to avoid, what foods to consume, and specific alterations/deviations from the USDA or other regulatory body&#39;s approved dietary guidelines.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/differentialDiagnosis\">\n      <span class=\"h\" property=\"rdfs:label\">differentialDiagnosis</span>\n      <span property=\"rdfs:comment\">One of a set of differential diagnoses for the condition. Specifically, a closely-related or competing diagnosis typically considered later in the cognitive process whereby this medical condition is distinguished from others most likely responsible for a similar collection of signs and symptoms to reach the most parsimonious diagnosis or diagnoses in a patient.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DDxElement\">DDxElement</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/director\">\n      <span class=\"h\" property=\"rdfs:label\">director</span>\n      <span property=\"rdfs:comment\">The director of the movie, tv/radio episode or series.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/directors\">\n      <span class=\"h\" property=\"rdfs:label\">directors</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/director\"/>\n      <span property=\"rdfs:comment\">The director of the movie, tv/radio episode or series. (legacy spelling; see singular form, director)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/discount\">\n      <span class=\"h\" property=\"rdfs:label\">discount</span>\n      <span property=\"rdfs:comment\">Any discount applied (to an Order).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/discountCode\">\n      <span class=\"h\" property=\"rdfs:label\">discountCode</span>\n      <span property=\"rdfs:comment\">Code used to redeem a discount.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/discountCurrency\">\n      <span class=\"h\" property=\"rdfs:label\">discountCurrency</span>\n      <span property=\"rdfs:comment\">The currency (in 3-letter ISO 4217 format) of the discount.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/discusses\">\n      <span class=\"h\" property=\"rdfs:label\">discusses</span>\n      <span property=\"rdfs:comment\">Specifies the CreativeWork associated with the UserComment.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/discussionUrl\">\n      <span class=\"h\" property=\"rdfs:label\">discussionUrl</span>\n      <span property=\"rdfs:comment\">A link to the page containing the comments of the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/distance\">\n      <span class=\"h\" property=\"rdfs:label\">distance</span>\n      <span property=\"rdfs:comment\">The distance travelled, e.g. exercising or travelling.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TravelAction\">TravelAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Distance\">Distance</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/distinguishingSign\">\n      <span class=\"h\" property=\"rdfs:label\">distinguishingSign</span>\n      <span property=\"rdfs:comment\">One of a set of signs and symptoms that can be used to distinguish this diagnosis from others in the differential diagnosis.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DDxElement\">DDxElement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/distribution\">\n      <span class=\"h\" property=\"rdfs:label\">distribution</span>\n      <span property=\"rdfs:comment\">A downloadable form of this dataset, at a specific location, in a specific format.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Dataset\">Dataset</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DataDownload\">DataDownload</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/domainIncludes\">\n      <span class=\"h\" property=\"rdfs:label\">domainIncludes</span>\n      <span property=\"rdfs:comment\">Relates a property to a class that is (one of) the type(s) the property is expected to be used on.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Class\">Class</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/inverseOf\">\n      <span class=\"h\" property=\"rdfs:label\">inverseOf</span>\n      <span property=\"rdfs:comment\">Relates a property to a property that is its inverse. Inverse properties relate the same pairs of items to each other, but in reversed direction. For example, the 'alumni' and 'alumniOf' properties are inverseOf each other. Some properties don't have explicit inverses; in these situations RDFa and JSON-LD syntax for reverse properties can be used.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/supercededBy\">\n      <span class=\"h\" property=\"rdfs:label\">supercededBy</span>\n      <span property=\"rdfs:comment\">Relates a property to one that supercedes it.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/doorTime\">\n      <span class=\"h\" property=\"rdfs:label\">doorTime</span>\n      <span property=\"rdfs:comment\">The time admission will commence.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dosageForm\">\n      <span class=\"h\" property=\"rdfs:label\">dosageForm</span>\n      <span property=\"rdfs:comment\">A dosage form in which this drug/supplement is available, e.g. &#39;tablet&#39;, &#39;suspension&#39;, &#39;injection&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/doseSchedule\">\n      <span class=\"h\" property=\"rdfs:label\">doseSchedule</span>\n      <span property=\"rdfs:comment\">A dosing schedule for the drug for a given population, either observed, recommended, or maximum dose based on the type used.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/doseUnit\">\n      <span class=\"h\" property=\"rdfs:label\">doseUnit</span>\n      <span property=\"rdfs:comment\">The unit of the dose, e.g. &#39;mg&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/doseValue\">\n      <span class=\"h\" property=\"rdfs:label\">doseValue</span>\n      <span property=\"rdfs:comment\">The value of the dose, e.g. 500.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/downloadUrl\">\n      <span class=\"h\" property=\"rdfs:label\">downloadUrl</span>\n      <span property=\"rdfs:comment\">If the file can be downloaded, URL to download the binary.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/drainsTo\">\n      <span class=\"h\" property=\"rdfs:label\">drainsTo</span>\n      <span property=\"rdfs:comment\">The vasculature that the vein drains into.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Vein\">Vein</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/drug\">\n      <span class=\"h\" property=\"rdfs:label\">drug</span>\n      <span property=\"rdfs:comment\">A drug in this drug class.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugClass\">DrugClass</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/drugClass\">\n      <span class=\"h\" property=\"rdfs:label\">drugClass</span>\n      <span property=\"rdfs:comment\">The class of drug this belongs to (e.g., statins).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugClass\">DrugClass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/drugUnit\">\n      <span class=\"h\" property=\"rdfs:label\">drugUnit</span>\n      <span property=\"rdfs:comment\">The unit in which the drug is measured, e.g. &#39;5 mg tablet&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugCost\">DrugCost</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/duns\">\n      <span class=\"h\" property=\"rdfs:label\">duns</span>\n      <span property=\"rdfs:comment\">The Dun &amp; Bradstreet DUNS number for identifying an organization or business person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/duplicateTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">duplicateTherapy</span>\n      <span property=\"rdfs:comment\">A therapy that duplicates or overlaps this one.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/duration\">\n      <span class=\"h\" property=\"rdfs:label\">duration</span>\n      <span property=\"rdfs:comment\">The duration of the item (movie, audio recording, event, etc.) in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 date format&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/durationOfWarranty\">\n      <span class=\"h\" property=\"rdfs:label\">durationOfWarranty</span>\n      <span property=\"rdfs:comment\">The duration of the warranty promise. Common unitCode values are ANN for year, MON for months, or DAY for days.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WarrantyPromise\">WarrantyPromise</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/editor\">\n      <span class=\"h\" property=\"rdfs:label\">editor</span>\n      <span property=\"rdfs:comment\">Specifies the Person who edited the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/educationalAlignment\">\n      <span class=\"h\" property=\"rdfs:label\">educationalAlignment</span>\n      <span property=\"rdfs:comment\">An alignment to an established educational framework.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/educationalFramework\">\n      <span class=\"h\" property=\"rdfs:label\">educationalFramework</span>\n      <span property=\"rdfs:comment\">The framework to which the resource being described is aligned.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/educationalRole\">\n      <span class=\"h\" property=\"rdfs:label\">educationalRole</span>\n      <span property=\"rdfs:comment\">An educationalRole of an EducationalAudience</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EducationalAudience\">EducationalAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/educationalUse\">\n      <span class=\"h\" property=\"rdfs:label\">educationalUse</span>\n      <span property=\"rdfs:comment\">The purpose of a work in the context of education; for example, &#39;assignment&#39;, &#39;group work&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/educationRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">educationRequirements</span>\n      <span property=\"rdfs:comment\">Educational background needed for the position.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/elevation\">\n      <span class=\"h\" property=\"rdfs:label\">elevation</span>\n      <span property=\"rdfs:comment\">The elevation of a location.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoCoordinates\">GeoCoordinates</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eligibleCustomerType\">\n      <span class=\"h\" property=\"rdfs:label\">eligibleCustomerType</span>\n      <span property=\"rdfs:comment\">The type(s) of customers for which the given offer is valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusinessEntityType\">BusinessEntityType</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eligibleDuration\">\n      <span class=\"h\" property=\"rdfs:label\">eligibleDuration</span>\n      <span property=\"rdfs:comment\">The duration for which the given offer is valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eligibleQuantity\">\n      <span class=\"h\" property=\"rdfs:label\">eligibleQuantity</span>\n      <span property=\"rdfs:comment\">The interval and unit of measurement of ordering quantities for which the offer or price specification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eligibleRegion\">\n      <span class=\"h\" property=\"rdfs:label\">eligibleRegion</span>\n      <span property=\"rdfs:comment\">The ISO 3166-1 (ISO 3166-1 alpha-2) or ISO 3166-2 code, or the GeoShape for the geo-political region(s) for which the offer or delivery charge specification is valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryChargeSpecification\">DeliveryChargeSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eligibleTransactionVolume\">\n      <span class=\"h\" property=\"rdfs:label\">eligibleTransactionVolume</span>\n      <span property=\"rdfs:comment\">The transaction volume, in a monetary unit, for which the offer or price specification is valid, e.g. for indicating a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases to a certain minimal amount.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/email\">\n      <span class=\"h\" property=\"rdfs:label\">email</span>\n      <span property=\"rdfs:comment\">Email address.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/embedUrl\">\n      <span class=\"h\" property=\"rdfs:label\">embedUrl</span>\n      <span property=\"rdfs:comment\">A URL pointing to a player for a specific video. In general, this is the information in the &lt;code&gt;src&lt;/code&gt; element of an &lt;code&gt;embed&lt;/code&gt; tag and should not be the same as the content of the &lt;code&gt;loc&lt;/code&gt; tag. (previous spelling: embedURL)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/employee\">\n      <span class=\"h\" property=\"rdfs:label\">employee</span>\n      <span property=\"rdfs:comment\">Someone working for this organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/employees\">\n      <span class=\"h\" property=\"rdfs:label\">employees</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/employee\"/>\n      <span property=\"rdfs:comment\">People working for this organization. (legacy spelling; see singular form, employee)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/employmentType\">\n      <span class=\"h\" property=\"rdfs:label\">employmentType</span>\n      <span property=\"rdfs:comment\">Type of employment (e.g. full-time, part-time, contract, temporary, seasonal, internship).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/encodesCreativeWork\">\n      <span class=\"h\" property=\"rdfs:label\">encodesCreativeWork</span>\n      <span property=\"rdfs:comment\">The creative work encoded by this media object</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/encoding\">\n      <span class=\"h\" property=\"rdfs:label\">encoding</span>\n      <span property=\"rdfs:comment\">A media object that encode this CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/encodingFormat\">\n      <span class=\"h\" property=\"rdfs:label\">encodingFormat</span>\n      <span property=\"rdfs:comment\">mp3, mpeg4, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/encodings\">\n      <span class=\"h\" property=\"rdfs:label\">encodings</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/encoding\"/>\n      <span property=\"rdfs:comment\">The media objects that encode this creative work (legacy spelling; see singular form, encoding).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/endDate\">\n      <span class=\"h\" property=\"rdfs:label\">endDate</span>\n      <span property=\"rdfs:comment\">The end date and time of the role, event or item (in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 date format&lt;/a&gt;).</span>\n\n      <!-- not in v1.6\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Statistic\">Statistic</a></span>\n      -->\n\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Role\">Role</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/endorsee\">\n      <span class=\"h\" property=\"rdfs:label\">endorsee</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The person/organization being supported.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EndorseAction\">EndorseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/endorsers\">\n      <span class=\"h\" property=\"rdfs:label\">endorsers</span>\n      <span property=\"rdfs:comment\">People or organizations that endorse the plan.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/endTime\">\n      <span class=\"h\" property=\"rdfs:label\">endTime</span>\n      <span property=\"rdfs:comment\">The endTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to end. For actions that span a period of time, when the action was performed. e.g. John wrote a book from January to *December*.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.\n</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishmentReservation\">FoodEstablishmentReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n   <div typeof=\"rdf:Property\" resource=\"http://schema.org/entertainmentBusiness\">\n      <span class=\"h\" property=\"rdfs:label\">entertainmentBusiness</span>\n      <span property=\"rdfs:comment\">A sub property of location. The entertainment business where the action occurred.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PerformAction\">PerformAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/EntertainmentBusiness\">EntertainmentBusiness</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/epidemiology\">\n      <span class=\"h\" property=\"rdfs:label\">epidemiology</span>\n      <span property=\"rdfs:comment\">The characteristics of associated patients, such as age, gender, race etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PhysicalActivity\">PhysicalActivity</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/episode\">\n      <span class=\"h\" property=\"rdfs:label\">episode</span>\n      <span property=\"rdfs:comment\">An episode of a TV/radio series or season</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeason\">RadioSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/episodeNumber\">\n      <span class=\"h\" property=\"rdfs:label\">episodeNumber</span>\n      <span property=\"rdfs:comment\">Position of the episode within an ordered group of episodes.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/episodes\">\n      <span class=\"h\" property=\"rdfs:label\">episodes</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/episode\"/>\n      <span property=\"rdfs:comment\">An episode of a TV/radio series or season (legacy spelling; see singular form, episode)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeason\">RadioSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/equal\">\n      <span class=\"h\" property=\"rdfs:label\">equal</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is equal to the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/estimatesRiskOf\">\n      <span class=\"h\" property=\"rdfs:label\">estimatesRiskOf</span>\n      <span property=\"rdfs:comment\">The condition, complication, or symptom whose risk is being estimated.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalRiskEstimator\">MedicalRiskEstimator</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/event\">\n      <span class=\"h\" property=\"rdfs:label\">event</span>\n      <span property=\"rdfs:comment\">Upcoming or past event associated with this place or organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InformAction\">InformAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PlayAction\">PlayAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InviteAction\">InviteAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JoinAction\">JoinAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LeaveAction\">LeaveAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/events\">\n      <span class=\"h\" property=\"rdfs:label\">events</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/event\"/>\n      <span property=\"rdfs:comment\">Upcoming or past events associated with this place or organization (legacy spelling; see singular form, event).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/eventStatus\">\n      <span class=\"h\" property=\"rdfs:label\">eventStatus</span>\n      <span property=\"rdfs:comment\">An eventStatus of an event represents its status; particularly useful when an event is cancelled or rescheduled.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/EventStatusType\">EventStatusType</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/evidenceLevel\">\n      <span class=\"h\" property=\"rdfs:label\">evidenceLevel</span>\n      <span property=\"rdfs:comment\">Strength of evidence of the data used to formulate the guideline (enumerated).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEvidenceLevel\">MedicalEvidenceLevel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/evidenceOrigin\">\n      <span class=\"h\" property=\"rdfs:label\">evidenceOrigin</span>\n      <span property=\"rdfs:comment\">Source of the data used to formulate the guidance, e.g. RCT, consensus opinion, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/exercisePlan\">\n      <span class=\"h\" property=\"rdfs:label\">exercisePlan</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The exercise plan used on this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/exerciseType\">\n      <span class=\"h\" property=\"rdfs:label\">exerciseType</span>\n      <span property=\"rdfs:comment\">Type(s) of exercise or activity, such as strength training, flexibility training, aerobics, cardiac rehabilitation, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/exifData\">\n      <span class=\"h\" property=\"rdfs:label\">exifData</span>\n      <span property=\"rdfs:comment\">exif data for this object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/expectedArrivalFrom\">\n      <span class=\"h\" property=\"rdfs:label\">expectedArrivalFrom</span>\n      <span property=\"rdfs:comment\">The earliest date the package may arrive.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/expectedArrivalUntil\">\n      <span class=\"h\" property=\"rdfs:label\">expectedArrivalUntil</span>\n      <span property=\"rdfs:comment\">The latest date the package may arrive.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/expectedPrognosis\">\n      <span class=\"h\" property=\"rdfs:label\">expectedPrognosis</span>\n      <span property=\"rdfs:comment\">The likely outcome in either the short term or long term of the medical condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/experienceRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">experienceRequirements</span>\n      <span property=\"rdfs:comment\">Description of skills and experience needed for the position.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/expertConsiderations\">\n      <span class=\"h\" property=\"rdfs:label\">expertConsiderations</span>\n      <span property=\"rdfs:comment\">Medical expert advice related to the plan.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/expires\">\n      <span class=\"h\" property=\"rdfs:label\">expires</span>\n      <span property=\"rdfs:comment\">Date the content expires and is no longer useful or available. Useful for videos.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/familyName\">\n      <span class=\"h\" property=\"rdfs:label\">familyName</span>\n      <span property=\"rdfs:comment\">Family name. In the U.S., the last name of an Person. This can be used along with givenName instead of the Name property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/fatContent\">\n      <span class=\"h\" property=\"rdfs:label\">fatContent</span>\n      <span property=\"rdfs:comment\">The number of grams of fat.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/faxNumber\">\n      <span class=\"h\" property=\"rdfs:label\">faxNumber</span>\n      <span property=\"rdfs:comment\">The fax number.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/featureList\">\n      <span class=\"h\" property=\"rdfs:label\">featureList</span>\n      <span property=\"rdfs:comment\">Features or modules provided by this application (and possibly required by other applications).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/fiberContent\">\n      <span class=\"h\" property=\"rdfs:label\">fiberContent</span>\n      <span property=\"rdfs:comment\">The number of grams of fiber.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/fileFormat\">\n      <span class=\"h\" property=\"rdfs:label\">fileFormat</span>\n      <span property=\"rdfs:comment\">MIME format of the binary (e.g. application/zip).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/fileSize\">\n      <span class=\"h\" property=\"rdfs:label\">fileSize</span>\n      <span property=\"rdfs:comment\">Size of the application / package (e.g. 18MB). In the absence of a unit (MB, KB etc.), KB will be assumed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/followee\">\n      <span class=\"h\" property=\"rdfs:label\">followee</span>\n      <span property=\"rdfs:comment\">A sub property of object. The person or organization being followed.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FollowAction\">FollowAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/follows\">\n      <span class=\"h\" property=\"rdfs:label\">follows</span>\n      <span property=\"rdfs:comment\">The most generic uni-directional social relation.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/followup\">\n      <span class=\"h\" property=\"rdfs:label\">followup</span>\n      <span property=\"rdfs:comment\">Typical or recommended followup care after the procedure is performed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/foodEstablishment\">\n      <span class=\"h\" property=\"rdfs:label\">foodEstablishment</span>\n      <span property=\"rdfs:comment\">A sub property of location. The specific food establishment where the action occurred.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CookAction\">CookAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/foodEvent\">\n      <span class=\"h\" property=\"rdfs:label\">foodEvent</span>\n      <span property=\"rdfs:comment\">A sub property of location. The specific food event where the action occurred.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CookAction\">CookAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/FoodEvent\">FoodEvent</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/foodWarning\">\n      <span class=\"h\" property=\"rdfs:label\">foodWarning</span>\n      <span property=\"rdfs:comment\">Any precaution, guidance, contraindication, etc. related to consumption of specific foods while taking this drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/founder\">\n      <span class=\"h\" property=\"rdfs:label\">founder</span>\n      <span property=\"rdfs:comment\">A person who founded this organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/founders\">\n      <span class=\"h\" property=\"rdfs:label\">founders</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/founder\"/>\n      <span property=\"rdfs:comment\">A person who founded this organization (legacy spelling; see singular form, founder).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dissolutionDate\">\n      <span class=\"h\" property=\"rdfs:label\">dissolutionDate</span>\n      <span property=\"rdfs:comment\">The date that this organization was dissolved.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/foundingDate\">\n      <span class=\"h\" property=\"rdfs:label\">foundingDate</span>\n      <span property=\"rdfs:comment\">The date that this organization was founded.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/free\">\n      <span class=\"h\" property=\"rdfs:label\">free</span>\n      <span property=\"rdfs:comment\">A flag to signal that the publication is accessible for free.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PublicationEvent\">PublicationEvent</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/frequency\">\n      <span class=\"h\" property=\"rdfs:label\">frequency</span>\n      <span property=\"rdfs:comment\">How often the dose is taken, e.g. &#39;daily&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/fromLocation\">\n      <span class=\"h\" property=\"rdfs:label\">fromLocation</span>\n      <span property=\"rdfs:comment\">A sub property of location. The original location of the object or the agent before the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MoveAction\">MoveAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/function\">\n      <span class=\"h\" property=\"rdfs:label\">function</span>\n      <span property=\"rdfs:comment\">Function of the anatomical structure.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/functionalClass\">\n      <span class=\"h\" property=\"rdfs:label\">functionalClass</span>\n      <span property=\"rdfs:comment\">The degree of mobility the joint allows.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Joint\">Joint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/gender\">\n      <span class=\"h\" property=\"rdfs:label\">gender</span>\n      <span property=\"rdfs:comment\">Gender of the person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/genre\">\n      <span class=\"h\" property=\"rdfs:label\">genre</span>\n      <span property=\"rdfs:comment\">Genre of the creative work</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/geo\">\n      <span class=\"h\" property=\"rdfs:label\">geo</span>\n      <span property=\"rdfs:comment\">The geo coordinates of the place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/GeoCoordinates\">GeoCoordinates</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/geographicArea\">\n      <span class=\"h\" property=\"rdfs:label\">geographicArea</span>\n      <span property=\"rdfs:comment\">The geographic area associated with the audience.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/givenName\">\n      <span class=\"h\" property=\"rdfs:label\">givenName</span>\n      <span property=\"rdfs:comment\">Given name. In the U.S., the first name of a Person. This can be used along with familyName instead of the Name property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/globalLocationNumber\">\n      <span class=\"h\" property=\"rdfs:label\">globalLocationNumber</span>\n      <span property=\"rdfs:comment\">The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective organization, person, or place. The GLN is a 13-digit number used to identify parties and physical locations.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/greater\">\n      <span class=\"h\" property=\"rdfs:label\">greater</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is greater than the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/greaterOrEqual\">\n      <span class=\"h\" property=\"rdfs:label\">greaterOrEqual</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/gtin13\">\n      <span class=\"h\" property=\"rdfs:label\">gtin13</span>\n      <span property=\"rdfs:comment\">The GTIN-13 code of the product, or the product to which the offer refers. This is equivalent to 13-digit ISBN codes and EAN UCC-13. Former 12-digit UPC codes can be converted into a GTIN-13 code by simply adding a preceeding zero.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/gtin14\">\n      <span class=\"h\" property=\"rdfs:label\">gtin14</span>\n      <span property=\"rdfs:comment\">The GTIN-14 code of the product, or the product to which the offer refers.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/gtin8\">\n      <span class=\"h\" property=\"rdfs:label\">gtin8</span>\n      <span property=\"rdfs:comment\">The GTIN-8 code of the product, or the product to which the offer refers. This code is also known as EAN/UCC-8 or 8-digit EAN.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/guideline\">\n      <span class=\"h\" property=\"rdfs:label\">guideline</span>\n      <span property=\"rdfs:comment\">A medical guideline related to this entity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/guidelineDate\">\n      <span class=\"h\" property=\"rdfs:label\">guidelineDate</span>\n      <span property=\"rdfs:comment\">Date on which this guideline&#39;s recommendation was made.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/guidelineSubject\">\n      <span class=\"h\" property=\"rdfs:label\">guidelineSubject</span>\n      <span property=\"rdfs:comment\">The medical conditions, treatments, etc. that are the subject of the guideline.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalGuideline\">MedicalGuideline</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hasDeliveryMethod\">\n      <span class=\"h\" property=\"rdfs:label\">hasDeliveryMethod</span>\n      <span property=\"rdfs:comment\">Method used for delivery or shipping.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DeliveryEvent\">DeliveryEvent</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DeliveryMethod\">DeliveryMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hasPOS\">\n      <span class=\"h\" property=\"rdfs:label\">hasPOS</span>\n      <span property=\"rdfs:comment\">Points-of-Sales operated by the organization or person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/headline\">\n      <span class=\"h\" property=\"rdfs:label\">headline</span>\n      <span property=\"rdfs:comment\">Headline of the article</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/healthCondition\">\n      <span class=\"h\" property=\"rdfs:label\">healthCondition</span>\n      <span property=\"rdfs:comment\">Expectations for health conditions of target audience</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/height\">\n      <span class=\"h\" property=\"rdfs:label\">height</span>\n      <span property=\"rdfs:comment\">The height of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Distance\">Distance</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/highPrice\">\n      <span class=\"h\" property=\"rdfs:label\">highPrice</span>\n      <span property=\"rdfs:comment\">The highest price of all offers available.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateOffer\">AggregateOffer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hiringOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">hiringOrganization</span>\n      <span property=\"rdfs:comment\">Organization offering the job position.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/homeLocation\">\n      <span class=\"h\" property=\"rdfs:label\">homeLocation</span>\n      <span property=\"rdfs:comment\">A contact location for a person&#39;s residence.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/honorificPrefix\">\n      <span class=\"h\" property=\"rdfs:label\">honorificPrefix</span>\n      <span property=\"rdfs:comment\">An honorific prefix preceding a Person&#39;s name such as Dr/Mrs/Mr.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/honorificSuffix\">\n      <span class=\"h\" property=\"rdfs:label\">honorificSuffix</span>\n      <span property=\"rdfs:comment\">An honorific suffix preceding a Person&#39;s name such as M.D. /PhD/MSCSW.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hospitalAffiliation\">\n      <span class=\"h\" property=\"rdfs:label\">hospitalAffiliation</span>\n      <span property=\"rdfs:comment\">A hospital with which the physician or office is affiliated.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Physician\">Physician</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Hospital\">Hospital</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hoursAvailable\">\n      <span class=\"h\" property=\"rdfs:label\">hoursAvailable</span>\n      <span property=\"rdfs:comment\">The hours during which this contact point is available.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/howPerformed\">\n      <span class=\"h\" property=\"rdfs:label\">howPerformed</span>\n      <span property=\"rdfs:comment\">How the procedure is performed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/identifyingExam\">\n      <span class=\"h\" property=\"rdfs:label\">identifyingExam</span>\n      <span property=\"rdfs:comment\">A physical examination that can identify this sign.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalSign\">MedicalSign</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PhysicalExam\">PhysicalExam</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/identifyingTest\">\n      <span class=\"h\" property=\"rdfs:label\">identifyingTest</span>\n      <span property=\"rdfs:comment\">A diagnostic test that can identify this sign.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalSign\">MedicalSign</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/illustrator\">\n      <span class=\"h\" property=\"rdfs:label\">illustrator</span>\n      <span property=\"rdfs:comment\">The illustrator of the book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Book\">Book</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/image\">\n      <span class=\"h\" property=\"rdfs:label\">image</span>\n      <span property=\"rdfs:comment\">URL of an image of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/imagingTechnique\">\n      <span class=\"h\" property=\"rdfs:label\">imagingTechnique</span>\n      <span property=\"rdfs:comment\">Imaging technique used.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ImagingTest\">ImagingTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalImagingTechnique\">MedicalImagingTechnique</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/inAlbum\">\n      <span class=\"h\" property=\"rdfs:label\">inAlbum</span>\n      <span property=\"rdfs:comment\">The album to which this recording belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicAlbum\">MusicAlbum</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/incentives\">\n      <span class=\"h\" property=\"rdfs:label\">incentives</span>\n      <span property=\"rdfs:comment\">Description of bonus and commission compensation aspects of the job.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/includedRiskFactor\">\n      <span class=\"h\" property=\"rdfs:label\">includedRiskFactor</span>\n      <span property=\"rdfs:comment\">A modifiable or non-modifiable risk factor included in the calculation, e.g. age, coexisting condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalRiskEstimator\">MedicalRiskEstimator</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalRiskFactor\">MedicalRiskFactor</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/includesObject\">\n      <span class=\"h\" property=\"rdfs:label\">includesObject</span>\n      <span property=\"rdfs:comment\">This links to a node or nodes indicating the exact quantity of the products included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/TypeAndQuantityNode\">TypeAndQuantityNode</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/increasesRiskOf\">\n      <span class=\"h\" property=\"rdfs:label\">increasesRiskOf</span>\n      <span property=\"rdfs:comment\">The condition, complication, etc. influenced by this factor.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalRiskFactor\">MedicalRiskFactor</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/indication\">\n      <span class=\"h\" property=\"rdfs:label\">indication</span>\n      <span property=\"rdfs:comment\">A factor that indicates use of this therapy for treatment and/or prevention of a condition, symptom, etc. For therapies such as drugs, indications can include both officially-approved indications as well as off-label uses. These can be distinguished by using the ApprovedIndication subtype of MedicalIndication.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalIndication\">MedicalIndication</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/industry\">\n      <span class=\"h\" property=\"rdfs:label\">industry</span>\n      <span property=\"rdfs:comment\">The industry associated with the job position.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/infectiousAgent\">\n      <span class=\"h\" property=\"rdfs:label\">infectiousAgent</span>\n      <span property=\"rdfs:comment\">The actual infectious agent, such as a specific bacterium.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InfectiousDisease\">InfectiousDisease</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/infectiousAgentClass\">\n      <span class=\"h\" property=\"rdfs:label\">infectiousAgentClass</span>\n      <span property=\"rdfs:comment\">The class of infectious agent (bacteria, prion, etc.) that causes the disease.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InfectiousDisease\">InfectiousDisease</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/InfectiousAgentClass\">InfectiousAgentClass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ingredients\">\n      <span class=\"h\" property=\"rdfs:label\">ingredients</span>\n      <span property=\"rdfs:comment\">An ingredient used in the recipe.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/inLanguage\">\n      <span class=\"h\" property=\"rdfs:label\">inLanguage</span>\n      <span property=\"rdfs:comment\">The language of the content. please use one of the language codes from the &lt;a href=&#39;http://tools.ietf.org/html/bcp47&#39;&gt;IETF BCP 47 standard.&lt;/a&gt;</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/inPlaylist\">\n      <span class=\"h\" property=\"rdfs:label\">inPlaylist</span>\n      <span property=\"rdfs:comment\">The playlist to which this recording belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicPlaylist\">MusicPlaylist</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/insertion\">\n      <span class=\"h\" property=\"rdfs:label\">insertion</span>\n      <span property=\"rdfs:comment\">The place of attachment of a muscle, or what the muscle moves.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/installUrl\">\n      <span class=\"h\" property=\"rdfs:label\">installUrl</span>\n      <span property=\"rdfs:comment\">URL at which the app may be installed, if different from the URL of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/instrument\">\n      <span class=\"h\" property=\"rdfs:label\">instrument</span>\n      <span property=\"rdfs:comment\">The object that helped the agent perform the action. e.g. John wrote a book with *a pen*.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/intensity\">\n      <span class=\"h\" property=\"rdfs:label\">intensity</span>\n      <span property=\"rdfs:comment\">Quantitative measure gauging the degree of force involved in the exercise, for example, heartbeats per minute. May include the velocity of the movement.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/interactingDrug\">\n      <span class=\"h\" property=\"rdfs:label\">interactingDrug</span>\n      <span property=\"rdfs:comment\">Another drug that is known to interact with this drug in a way that impacts the effect of this drug or causes a risk to the patient. Note: disease interactions are typically captured as contraindications.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/interactionCount\">\n      <span class=\"h\" property=\"rdfs:label\">interactionCount</span>\n      <span property=\"rdfs:comment\">A count of a specific user interactions with this item&amp;#x2014;for example, &lt;code&gt;20 UserLikes&lt;/code&gt;, &lt;code&gt;5 UserComments&lt;/code&gt;, or &lt;code&gt;300 UserDownloads&lt;/code&gt;. The user interaction type should be one of the sub types of &lt;a href=&#39;UserInteraction&#39;&gt;UserInteraction&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/interactivityType\">\n      <span class=\"h\" property=\"rdfs:label\">interactivityType</span>\n      <span property=\"rdfs:comment\">The predominant mode of learning supported by the learning resource. Acceptable values are &#39;active&#39;, &#39;expositive&#39;, or &#39;mixed&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/inventoryLevel\">\n      <span class=\"h\" property=\"rdfs:label\">inventoryLevel</span>\n      <span property=\"rdfs:comment\">The current approximate inventory level for the item or items.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SomeProducts\">SomeProducts</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isAccessoryOrSparePartFor\">\n      <span class=\"h\" property=\"rdfs:label\">isAccessoryOrSparePartFor</span>\n      <span property=\"rdfs:comment\">A pointer to another product (or multiple products) for which this product is an accessory or spare part.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isAvailableGenerically\">\n      <span class=\"h\" property=\"rdfs:label\">isAvailableGenerically</span>\n      <span property=\"rdfs:comment\">True if the drug is available in a generic form (regardless of name).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isBasedOnUrl\">\n      <span class=\"h\" property=\"rdfs:label\">isBasedOnUrl</span>\n      <span property=\"rdfs:comment\">A resource that was used in the creation of this resource. This term can be repeated for multiple sources. For example, http://example.com/great-multiplication-intro.html</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isbn\">\n      <span class=\"h\" property=\"rdfs:label\">isbn</span>\n      <span property=\"rdfs:comment\">The ISBN of the book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Book\">Book</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isConsumableFor\">\n      <span class=\"h\" property=\"rdfs:label\">isConsumableFor</span>\n      <span property=\"rdfs:comment\">A pointer to another product (or multiple products) for which this product is a consumable.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isFamilyFriendly\">\n      <span class=\"h\" property=\"rdfs:label\">isFamilyFriendly</span>\n      <span property=\"rdfs:comment\">Indicates whether this content is family friendly.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isGift\">\n      <span class=\"h\" property=\"rdfs:label\">isGift</span>\n      <span property=\"rdfs:comment\">Was the offer accepted as a gift for someone other than the buyer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isicV4\">\n      <span class=\"h\" property=\"rdfs:label\">isicV4</span>\n      <span property=\"rdfs:comment\">The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular organization, business person, or place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isPartOf\">\n      <span class=\"h\" property=\"rdfs:label\">isPartOf</span>\n      <span property=\"rdfs:comment\">Indicates the collection or gallery to which the item belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CollectionPage\">CollectionPage</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isProprietary\">\n      <span class=\"h\" property=\"rdfs:label\">isProprietary</span>\n      <span property=\"rdfs:comment\">True if this item&#39;s name is a proprietary/brand name (vs. generic name).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isRelatedTo\">\n      <span class=\"h\" property=\"rdfs:label\">isRelatedTo</span>\n      <span property=\"rdfs:comment\">A pointer to another, somehow related product (or multiple products).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isSimilarTo\">\n      <span class=\"h\" property=\"rdfs:label\">isSimilarTo</span>\n      <span property=\"rdfs:comment\">A pointer to another, functionally similar product (or multiple products).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/issuedThrough\">\n      <span class=\"h\" property=\"rdfs:label\">issuedThrough</span>\n      <span property=\"rdfs:comment\">The service through with the permit was granted.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/isVariantOf\">\n      <span class=\"h\" property=\"rdfs:label\">isVariantOf</span>\n      <span property=\"rdfs:comment\">A pointer to a base product from which this product is a variant. It is safe to infer that the variant inherits all product features from the base model, unless defined locally. This is not transitive.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemCondition\">\n      <span class=\"h\" property=\"rdfs:label\">itemCondition</span>\n      <span property=\"rdfs:comment\">A predefined value from OfferItemCondition or a textual description of the condition of the product or service, or the products or services included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/OfferItemCondition\">OfferItemCondition</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemListElement\">\n      <span class=\"h\" property=\"rdfs:label\">itemListElement</span>\n      <span property=\"rdfs:comment\">A single list item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ItemList\">ItemList</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemListOrder\">\n      <span class=\"h\" property=\"rdfs:label\">itemListOrder</span>\n      <span property=\"rdfs:comment\">Type of ordering (e.g. Ascending, Descending, Unordered).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ItemList\">ItemList</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemOffered\">\n      <span class=\"h\" property=\"rdfs:label\">itemOffered</span>\n      <span property=\"rdfs:comment\">The item being offered.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemReviewed\">\n      <span class=\"h\" property=\"rdfs:label\">itemReviewed</span>\n      <span property=\"rdfs:comment\">The item that is being reviewed/rated.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateRating\">AggregateRating</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/itemShipped\">\n      <span class=\"h\" property=\"rdfs:label\">itemShipped</span>\n      <span property=\"rdfs:comment\">Item(s) being shipped.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/jobLocation\">\n      <span class=\"h\" property=\"rdfs:label\">jobLocation</span>\n      <span property=\"rdfs:comment\">A (typically single) geographic location associated with the job position.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/jobTitle\">\n      <span class=\"h\" property=\"rdfs:label\">jobTitle</span>\n      <span property=\"rdfs:comment\">The job title of the person (for example, Financial Manager).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/keywords\">\n      <span class=\"h\" property=\"rdfs:label\">keywords</span>\n      <span property=\"rdfs:comment\">Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/knows\">\n      <span class=\"h\" property=\"rdfs:label\">knows</span>\n      <span property=\"rdfs:comment\">The most generic bi-directional social/work relation.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/labelDetails\">\n      <span class=\"h\" property=\"rdfs:label\">labelDetails</span>\n      <span property=\"rdfs:comment\">Link to the drug&#39;s label details.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/landlord\">\n      <span class=\"h\" property=\"rdfs:label\">landlord</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The owner of the real estate property.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentAction\">RentAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/language\">\n      <span class=\"h\" property=\"rdfs:label\">language</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The language used on this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WriteAction\">WriteAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Language\">Language</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lastReviewed\">\n      <span class=\"h\" property=\"rdfs:label\">lastReviewed</span>\n      <span property=\"rdfs:comment\">Date on which the content on this web page was last reviewed for accuracy and/or completeness.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/latitude\">\n      <span class=\"h\" property=\"rdfs:label\">latitude</span>\n      <span property=\"rdfs:comment\">The latitude of a location. For example &lt;code&gt;37.42242&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoCoordinates\">GeoCoordinates</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/license\">\n      <span class=\"h\" property=\"rdfs:label\">license</span>\n      <span property=\"rdfs:comment\">A license document that applies to this content, typically indicated by URL.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/learningResourceType\">\n      <span class=\"h\" property=\"rdfs:label\">learningResourceType</span>\n      <span property=\"rdfs:comment\">The predominant type or kind characterizing the learning resource. For example, &#39;presentation&#39;, &#39;handout&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/legalName\">\n      <span class=\"h\" property=\"rdfs:label\">legalName</span>\n      <span property=\"rdfs:comment\">The official name of the organization, e.g. the registered company name.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/legalStatus\">\n      <span class=\"h\" property=\"rdfs:label\">legalStatus</span>\n      <span property=\"rdfs:comment\">The drug or supplement&#39;s legal status, including any controlled substance schedules that apply.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugLegalStatus\">DrugLegalStatus</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lender\">\n      <span class=\"h\" property=\"rdfs:label\">lender</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The person that lends the object being borrowed.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BorrowAction\">BorrowAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lesser\">\n      <span class=\"h\" property=\"rdfs:label\">lesser</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is lesser than the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lesserOrEqual\">\n      <span class=\"h\" property=\"rdfs:label\">lesserOrEqual</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/line\">\n      <span class=\"h\" property=\"rdfs:label\">line</span>\n      <span property=\"rdfs:comment\">A line is a point-to-point path consisting of two or more points. A line is expressed as a series of two or more point objects separated by space.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/location\">\n      <span class=\"h\" property=\"rdfs:label\">location</span>\n      <span property=\"rdfs:comment\">The location of the event, organization or action.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/logo\">\n      <span class=\"h\" property=\"rdfs:label\">logo</span>\n      <span property=\"rdfs:comment\">A logo associated with an organization.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Brand\">Brand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/longitude\">\n      <span class=\"h\" property=\"rdfs:label\">longitude</span>\n      <span property=\"rdfs:comment\">The longitude of a location. For example &lt;code&gt;-122.08585&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoCoordinates\">GeoCoordinates</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/loser\">\n      <span class=\"h\" property=\"rdfs:label\">loser</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The loser of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WinAction\">WinAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lowPrice\">\n      <span class=\"h\" property=\"rdfs:label\">lowPrice</span>\n      <span property=\"rdfs:comment\">The lowest price of all offers available.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateOffer\">AggregateOffer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/mainContentOfPage\">\n      <span class=\"h\" property=\"rdfs:label\">mainContentOfPage</span>\n      <span property=\"rdfs:comment\">Indicates if this web page element is the main subject of the page.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/WebPageElement\">WebPageElement</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/makesOffer\">\n      <span class=\"h\" property=\"rdfs:label\">makesOffer</span>\n      <span property=\"rdfs:comment\">A pointer to products or services offered by the organization or person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/manufacturer\">\n      <span class=\"h\" property=\"rdfs:label\">manufacturer</span>\n      <span property=\"rdfs:comment\">The manufacturer of the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/map\">\n      <span class=\"h\" property=\"rdfs:label\">map</span>\n      <span property=\"rdfs:comment\">A URL to a map of the place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/maps\">\n      <span class=\"h\" property=\"rdfs:label\">maps</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/map\"/>\n      <span property=\"rdfs:comment\">A URL to a map of the place (legacy spelling; see singular form, map).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/maximumIntake\">\n      <span class=\"h\" property=\"rdfs:label\">maximumIntake</span>\n      <span property=\"rdfs:comment\">Recommended intake of this supplement for a given population as defined by a specific recommending authority.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MaximumDoseSchedule\">MaximumDoseSchedule</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/maxPrice\">\n      <span class=\"h\" property=\"rdfs:label\">maxPrice</span>\n      <span property=\"rdfs:comment\">The highest price if the price is a range.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/maxValue\">\n      <span class=\"h\" property=\"rdfs:label\">maxValue</span>\n      <span property=\"rdfs:comment\">The upper value of some characteristic or property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/mechanismOfAction\">\n      <span class=\"h\" property=\"rdfs:label\">mechanismOfAction</span>\n      <span property=\"rdfs:comment\">The specific biochemical interaction through which this drug or supplement produces its pharmacological effect.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/medicalSpecialty\">\n      <span class=\"h\" property=\"rdfs:label\">medicalSpecialty</span>\n      <span property=\"rdfs:comment\">A medical specialty of the provider.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Hospital\">Hospital</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalClinic\">MedicalClinic</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Physician\">Physician</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalSpecialty\">MedicalSpecialty</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/medicineSystem\">\n      <span class=\"h\" property=\"rdfs:label\">medicineSystem</span>\n      <span property=\"rdfs:comment\">The system of medicine that includes this MedicalEntity, for example &#39;evidence-based&#39;, &#39;homeopathic&#39;, &#39;chiropractic&#39;, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicineSystem\">MedicineSystem</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/member\">\n      <span class=\"h\" property=\"rdfs:label\">member</span>\n      <span property=\"rdfs:comment\">A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.</span>\n      <link property=\"http://schema.org/inverseOf\" href=\"http://schema.org/memberOf\"/>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/memberOf\">\n      <span class=\"h\" property=\"rdfs:label\">memberOf</span>\n      <span property=\"rdfs:comment\">An Organization (or ProgramMembership) to which this Person or Organization belongs.</span>\n      <link property=\"http://schema.org/inverseOf\" href=\"http://schema.org/member\"/>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/members\">\n      <span class=\"h\" property=\"rdfs:label\">members</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/member\"/>\n      <span property=\"rdfs:comment\">A member of this organization (legacy spelling; see singular form, member).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/memoryRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">memoryRequirements</span>\n      <span property=\"rdfs:comment\">Minimum memory requirements.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/mentions\">\n      <span class=\"h\" property=\"rdfs:label\">mentions</span>\n      <span property=\"rdfs:comment\">Indicates that the CreativeWork contains a reference to, but is not necessarily about a concept.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/menu\">\n      <span class=\"h\" property=\"rdfs:label\">menu</span>\n      <span property=\"rdfs:comment\">Either the actual menu or a URL of the menu.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/merchant\">\n      <span class=\"h\" property=\"rdfs:label\">merchant</span>\n      <span property=\"rdfs:comment\">The party taking the order (e.g. Amazon.com is a merchant for many sellers).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/minPrice\">\n      <span class=\"h\" property=\"rdfs:label\">minPrice</span>\n      <span property=\"rdfs:comment\">The lowest price if the price is a range.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/minValue\">\n      <span class=\"h\" property=\"rdfs:label\">minValue</span>\n      <span property=\"rdfs:comment\">The lower value of some characteristic or property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/model\">\n      <span class=\"h\" property=\"rdfs:label\">model</span>\n      <span property=\"rdfs:comment\">The model of the product. Use with the URL of a ProductModel or a textual representation of the model identifier. The URL of the ProductModel can be from an external source. It is recommended to additionally provide strong product identifiers via the gtin8/gtin13/gtin14 and mpn properties.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/mpn\">\n      <span class=\"h\" property=\"rdfs:label\">mpn</span>\n      <span property=\"rdfs:comment\">The Manufacturer Part Number (MPN) of the product, or the product to which the offer refers.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/musicBy\">\n      <span class=\"h\" property=\"rdfs:label\">musicBy</span>\n      <span property=\"rdfs:comment\">The composer of the movie or TV/radio soundtrack.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/musicGroupMember\">\n      <span class=\"h\" property=\"rdfs:label\">musicGroupMember</span>\n      <span property=\"rdfs:comment\">A member of a music group&amp;#x2014;for example, John, Paul, George, or Ringo.</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/member\"/>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/naics\">\n      <span class=\"h\" property=\"rdfs:label\">naics</span>\n      <span property=\"rdfs:comment\">The North American Industry Classification System (NAICS) code for a particular organization or business person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/name\">\n      <span class=\"h\" property=\"rdfs:label\">name</span>\n      <span property=\"rdfs:comment\">The name of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nationality\">\n      <span class=\"h\" property=\"rdfs:label\">nationality</span>\n      <span property=\"rdfs:comment\">Nationality of the person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Country\">Country</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/naturalProgression\">\n      <span class=\"h\" property=\"rdfs:label\">naturalProgression</span>\n      <span property=\"rdfs:comment\">The expected progression of the condition if it is not treated and allowed to progress naturally.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nerve\">\n      <span class=\"h\" property=\"rdfs:label\">nerve</span>\n      <span property=\"rdfs:comment\">The underlying innervation associated with the muscle.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nerveMotor\">\n      <span class=\"h\" property=\"rdfs:label\">nerveMotor</span>\n      <span property=\"rdfs:comment\">The neurological pathway extension that involves muscle control.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nonEqual\">\n      <span class=\"h\" property=\"rdfs:label\">nonEqual</span>\n      <span property=\"rdfs:comment\">This ordering relation for qualitative values indicates that the subject is not equal to the object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nonProprietaryName\">\n      <span class=\"h\" property=\"rdfs:label\">nonProprietaryName</span>\n      <span property=\"rdfs:comment\">The generic name of this drug or supplement.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/normalRange\">\n      <span class=\"h\" property=\"rdfs:label\">normalRange</span>\n      <span property=\"rdfs:comment\">Range of acceptable values for a typical patient, when applicable.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numberofEmployees\">\n      <span class=\"h\" property=\"rdfs:label\">numberofEmployees</span>\n      <span property=\"rdfs:comment\">The size of business by number of employees.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusinessAudience\">BusinessAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numberOfEpisodes\">\n      <span class=\"h\" property=\"rdfs:label\">numberOfEpisodes</span>\n      <span property=\"rdfs:comment\">The number of episodes in this season or series.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeason\">RadioSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numberOfPages\">\n      <span class=\"h\" property=\"rdfs:label\">numberOfPages</span>\n      <span property=\"rdfs:comment\">The number of pages in the book.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Book\">Book</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numberOfSeasons\">\n      <span class=\"h\" property=\"rdfs:label\">numberOfSeasons</span>\n      <span property=\"rdfs:comment\">The number of seasons in this series.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numTracks\">\n      <span class=\"h\" property=\"rdfs:label\">numTracks</span>\n      <span property=\"rdfs:comment\">The number of tracks in this album or playlist.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicPlaylist\">MusicPlaylist</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/nutrition\">\n      <span class=\"h\" property=\"rdfs:label\">nutrition</span>\n      <span property=\"rdfs:comment\">Nutrition information about the recipe.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/object\">\n      <span class=\"h\" property=\"rdfs:label\">object</span>\n      <span property=\"rdfs:comment\">The object upon the action is carried out, whose state is kept intact or changed. Also known as the semantic roles patient, affected or undergoer (which change their state) or theme (which doesn&#39;t). e.g. John read *a book*.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/occupationalCategory\">\n      <span class=\"h\" property=\"rdfs:label\">occupationalCategory</span>\n      <span property=\"rdfs:comment\">Category or categories describing the job. Use BLS O*NET-SOC taxonomy: http://www.onetcenter.org/taxonomy.html. Ideally includes textual label and formal code, with the property repeated for each applicable value.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/offerCount\">\n      <span class=\"h\" property=\"rdfs:label\">offerCount</span>\n      <span property=\"rdfs:comment\">The number of offers for the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateOffer\">AggregateOffer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/offers\">\n      <span class=\"h\" property=\"rdfs:label\">offers</span>\n      <span property=\"rdfs:comment\">An offer to provide this item&amp;#x2014;for example, an offer to sell a product, rent the DVD of a movie, or give away tickets to an event.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/openingHours\">\n      <span class=\"h\" property=\"rdfs:label\">openingHours</span>\n      <span property=\"rdfs:comment\">The opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas &#39;,&#39; separating each day. Day or time ranges are specified using a hyphen &#39;-&#39;.&lt;br /&gt;- Days are specified using the following two-letter combinations: &lt;code&gt;Mo&lt;/code&gt;, &lt;code&gt;Tu&lt;/code&gt;, &lt;code&gt;We&lt;/code&gt;, &lt;code&gt;Th&lt;/code&gt;, &lt;code&gt;Fr&lt;/code&gt;, &lt;code&gt;Sa&lt;/code&gt;, &lt;code&gt;Su&lt;/code&gt;.&lt;br /&gt;- Times are specified using 24:00 time. For example, 3pm is specified as &lt;code&gt;15:00&lt;/code&gt;. &lt;br /&gt;- Here is an example: &lt;code&gt;&amp;lt;time itemprop=&amp;quot;openingHours&amp;quot; datetime=&amp;quot;Tu,Th 16:00-20:00&amp;quot;&amp;gt;Tuesdays and Thursdays 4-8pm&amp;lt;/time&amp;gt;&lt;/code&gt;. &lt;br /&gt;- If a business is open 7 days a week, then it can be specified as &lt;code&gt;&amp;lt;time itemprop=&amp;quot;openingHours&amp;quot; datetime=&amp;quot;Mo-Su&amp;quot;&amp;gt;Monday through Sunday, all day&amp;lt;/time&amp;gt;&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CivicStructure\">CivicStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/openingHoursSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">openingHoursSpecification</span>\n      <span property=\"rdfs:comment\">The opening hours of a certain place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/opens\">\n      <span class=\"h\" property=\"rdfs:label\">opens</span>\n      <span property=\"rdfs:comment\">The opening hour of the place or service on the given day(s) of the week.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Time\">Time</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/operatingSystem\">\n      <span class=\"h\" property=\"rdfs:label\">operatingSystem</span>\n      <span property=\"rdfs:comment\">Operating systems supported (Windows 7, OSX 10.6, Android 1.6).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/opponent\">\n      <span class=\"h\" property=\"rdfs:label\">opponent</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The opponent on this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/option\">\n      <span class=\"h\" property=\"rdfs:label\">option</span>\n      <span property=\"rdfs:comment\">A sub property of object. The options subject to this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ChooseAction\">ChooseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/orderDate\">\n      <span class=\"h\" property=\"rdfs:label\">orderDate</span>\n      <span property=\"rdfs:comment\">Date order was placed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/orderedItem\">\n      <span class=\"h\" property=\"rdfs:label\">orderedItem</span>\n      <span property=\"rdfs:comment\">The item ordered.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/orderNumber\">\n      <span class=\"h\" property=\"rdfs:label\">orderNumber</span>\n      <span property=\"rdfs:comment\">The identifier of the transaction.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/orderStatus\">\n      <span class=\"h\" property=\"rdfs:label\">orderStatus</span>\n      <span property=\"rdfs:comment\">The current status of the order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/OrderStatus\">OrderStatus</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/origin\">\n      <span class=\"h\" property=\"rdfs:label\">origin</span>\n      <span property=\"rdfs:comment\">The place or point where a muscle arises.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Muscle\">Muscle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/originAddress\">\n      <span class=\"h\" property=\"rdfs:label\">originAddress</span>\n      <span property=\"rdfs:comment\">Shipper&#39;s address.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/originatesFrom\">\n      <span class=\"h\" property=\"rdfs:label\">originatesFrom</span>\n      <span property=\"rdfs:comment\">The vasculature the lymphatic structure originates, or afferents, from.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LymphaticVessel\">LymphaticVessel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/outcome\">\n      <span class=\"h\" property=\"rdfs:label\">outcome</span>\n      <span property=\"rdfs:comment\">Expected or actual outcomes of the study.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/overdosage\">\n      <span class=\"h\" property=\"rdfs:label\">overdosage</span>\n      <span property=\"rdfs:comment\">Any information related to overdose on a drug, including signs or symptoms, treatments, contact information for emergency response.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/overview\">\n      <span class=\"h\" property=\"rdfs:label\">overview</span>\n      <span property=\"rdfs:comment\">Descriptive information establishing the overarching theory/philosophy of the plan. May include the rationale for the name, the population where the plan first came to prominence, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ownedFrom\">\n      <span class=\"h\" property=\"rdfs:label\">ownedFrom</span>\n      <span property=\"rdfs:comment\">The date and time of obtaining the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OwnershipInfo\">OwnershipInfo</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ownedThrough\">\n      <span class=\"h\" property=\"rdfs:label\">ownedThrough</span>\n      <span property=\"rdfs:comment\">The date and time of giving up ownership on the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OwnershipInfo\">OwnershipInfo</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/owns\">\n      <span class=\"h\" property=\"rdfs:label\">owns</span>\n      <span property=\"rdfs:comment\">Products owned by the organization or person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/OwnershipInfo\">OwnershipInfo</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/parent\">\n      <span class=\"h\" property=\"rdfs:label\">parent</span>\n      <span property=\"rdfs:comment\">A parent of this person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/parents\">\n      <span class=\"h\" property=\"rdfs:label\">parents</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/parent\"/>\n      <span property=\"rdfs:comment\">A parents of the person (legacy spelling; see singular form, parent).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/parentService\">\n      <span class=\"h\" property=\"rdfs:label\">parentService</span>\n      <span property=\"rdfs:comment\">A broadcast service to which the broadcast service may belong to such as regional variations of a national channel.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BroadcastService\">BroadcastService</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BroadcastService\">BroadcastService</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/participant\">\n      <span class=\"h\" property=\"rdfs:label\">participant</span>\n      <span property=\"rdfs:comment\">Other co-agents that participated in the action indirectly. e.g. John wrote a book with *Steve*.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfEpisode\">\n      <span class=\"h\" property=\"rdfs:label\">partOfEpisode</span>\n      <span property=\"rdfs:comment\">The episode to which this clip belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfOrder\">\n      <span class=\"h\" property=\"rdfs:label\">partOfOrder</span>\n      <span property=\"rdfs:comment\">The overall order the items in this delivery were included in.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfSeason\">\n      <span class=\"h\" property=\"rdfs:label\">partOfSeason</span>\n      <span property=\"rdfs:comment\">The season to which this episode belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioClip\">RadioClip</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVClip\">TVClip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfSeries\">\n      <span class=\"h\" property=\"rdfs:label\">partOfSeries</span>\n      <span property=\"rdfs:comment\">The series to which this episode or season belongs.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioClip\">RadioClip</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeason\">RadioSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVClip\">TVClip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfSystem\">\n      <span class=\"h\" property=\"rdfs:label\">partOfSystem</span>\n      <span property=\"rdfs:comment\">The anatomical or organ system that this structure is part of.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partOfTVSeries\">\n      <span class=\"h\" property=\"rdfs:label\">partOfTVSeries</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/partOfSeries\"/>\n      <span property=\"rdfs:comment\">The TV series to which this episode or season belongs. (legacy form; partOfSeries is preferred)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVClip\">TVClip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/pathophysiology\">\n      <span class=\"h\" property=\"rdfs:label\">pathophysiology</span>\n      <span property=\"rdfs:comment\">Changes in the normal mechanical, physical, and biochemical functions that are associated with this activity or condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PhysicalActivity\">PhysicalActivity</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/paymentAccepted\">\n      <span class=\"h\" property=\"rdfs:label\">paymentAccepted</span>\n      <span property=\"rdfs:comment\">Cash, credit card, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/paymentDue\">\n      <span class=\"h\" property=\"rdfs:label\">paymentDue</span>\n      <span property=\"rdfs:comment\">The date that payment is due.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/paymentMethod\">\n      <span class=\"h\" property=\"rdfs:label\">paymentMethod</span>\n      <span property=\"rdfs:comment\">The name of the credit card or other method of payment for the order.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PaymentMethod\">PaymentMethod</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/paymentMethodId\">\n      <span class=\"h\" property=\"rdfs:label\">paymentMethodId</span>\n      <span property=\"rdfs:comment\">An identifier for the method of payment used (e.g. the last 4 digits of the credit card).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/paymentUrl\">\n      <span class=\"h\" property=\"rdfs:label\">paymentUrl</span>\n      <span property=\"rdfs:comment\">The URL for sending a payment.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Order\">Order</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/performer\">\n      <span class=\"h\" property=\"rdfs:label\">performer</span>\n      <span property=\"rdfs:comment\">A performer at the event&amp;#x2014;for example, a presenter, musician, musical group or actor.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/performerIn\">\n      <span class=\"h\" property=\"rdfs:label\">performerIn</span>\n      <span property=\"rdfs:comment\">Event that this person is a performer or participant in.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/performers\">\n      <span class=\"h\" property=\"rdfs:label\">performers</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/performer\"/>\n      <span property=\"rdfs:comment\">The main performer or performers of the event&amp;#x2014;for example, a presenter, musician, or actor (legacy spelling; see singular form, performer).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/permissions\">\n      <span class=\"h\" property=\"rdfs:label\">permissions</span>\n      <span property=\"rdfs:comment\">Permission(s) required to run the app (for example, a mobile app may require full internet access or may run only on wifi).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/permitAudience\">\n      <span class=\"h\" property=\"rdfs:label\">permitAudience</span>\n      <span property=\"rdfs:comment\">The target audience for this permit.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/phase\">\n      <span class=\"h\" property=\"rdfs:label\">phase</span>\n      <span property=\"rdfs:comment\">The phase of the trial.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTrial\">MedicalTrial</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/photo\">\n      <span class=\"h\" property=\"rdfs:label\">photo</span>\n      <span property=\"rdfs:comment\">A photograph of this place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Photograph\">Photograph</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/photos\">\n      <span class=\"h\" property=\"rdfs:label\">photos</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/photo\"/>\n      <span property=\"rdfs:comment\">Photographs of this place (legacy spelling; see singular form, photo).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Photograph\">Photograph</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/physiologicalBenefits\">\n      <span class=\"h\" property=\"rdfs:label\">physiologicalBenefits</span>\n      <span property=\"rdfs:comment\">Specific physiologic benefits associated to the plan.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/playerType\">\n      <span class=\"h\" property=\"rdfs:label\">playerType</span>\n      <span property=\"rdfs:comment\">Player type required&amp;#x2014;for example, Flash or Silverlight.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/polygon\">\n      <span class=\"h\" property=\"rdfs:label\">polygon</span>\n      <span property=\"rdfs:comment\">A polygon is the area enclosed by a point-to-point path for which the starting and ending points are the same. A polygon is expressed as a series of four or more space delimited points where the first and final points are identical.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GeoShape\">GeoShape</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/population\">\n      <span class=\"h\" property=\"rdfs:label\">population</span>\n      <span property=\"rdfs:comment\">Any characteristics of the population used in the study, e.g. &#39;males under 65&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/position\">\n      <span class=\"h\" property=\"rdfs:label\">position</span>\n      <span property=\"rdfs:comment\">Free text to define other than pure numerical ranking of an episode or a season in an ordered list of items (further formatting restrictions may apply within particular user groups).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/possibleComplication\">\n      <span class=\"h\" property=\"rdfs:label\">possibleComplication</span>\n      <span property=\"rdfs:comment\">A possible unexpected and unfavorable evolution of a medical condition. Complications may include worsening of the signs or symptoms of the disease, extension of the condition to other organ systems, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/possibleTreatment\">\n      <span class=\"h\" property=\"rdfs:label\">possibleTreatment</span>\n      <span property=\"rdfs:comment\">A possible treatment to address this condition, sign or symptom.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/postalCode\">\n      <span class=\"h\" property=\"rdfs:label\">postalCode</span>\n      <span property=\"rdfs:comment\">The postal code. For example, 94043.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/postOfficeBoxNumber\">\n      <span class=\"h\" property=\"rdfs:label\">postOfficeBoxNumber</span>\n      <span property=\"rdfs:comment\">The post office box number for PO box addresses.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/postOp\">\n      <span class=\"h\" property=\"rdfs:label\">postOp</span>\n      <span property=\"rdfs:comment\">A description of the postoperative procedures, care, and/or followups for this device.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/predecessorOf\">\n      <span class=\"h\" property=\"rdfs:label\">predecessorOf</span>\n      <span property=\"rdfs:comment\">A pointer from a previous, often discontinued variant of the product to its newer variant.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/pregnancyCategory\">\n      <span class=\"h\" property=\"rdfs:label\">pregnancyCategory</span>\n      <span property=\"rdfs:comment\">Pregnancy category of this drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugPregnancyCategory\">DrugPregnancyCategory</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/pregnancyWarning\">\n      <span class=\"h\" property=\"rdfs:label\">pregnancyWarning</span>\n      <span property=\"rdfs:comment\">Any precaution, guidance, contraindication, etc. related to this drug&#39;s use during pregnancy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/preOp\">\n      <span class=\"h\" property=\"rdfs:label\">preOp</span>\n      <span property=\"rdfs:comment\">A description of the workup, testing, and other preparations required before implanting this device.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/preparation\">\n      <span class=\"h\" property=\"rdfs:label\">preparation</span>\n      <span property=\"rdfs:comment\">Typical preparation that a patient must undergo before having the procedure performed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/prepTime\">\n      <span class=\"h\" property=\"rdfs:label\">prepTime</span>\n      <span property=\"rdfs:comment\">The length of time it takes to prepare the recipe, in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 duration format&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/prescribingInfo\">\n      <span class=\"h\" property=\"rdfs:label\">prescribingInfo</span>\n      <span property=\"rdfs:comment\">Link to prescribing information for the drug.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/prescriptionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">prescriptionStatus</span>\n      <span property=\"rdfs:comment\">Indicates whether this drug is available by prescription or over-the-counter.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DrugPrescriptionStatus\">DrugPrescriptionStatus</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/previousStartDate\">\n      <span class=\"h\" property=\"rdfs:label\">previousStartDate</span>\n      <span property=\"rdfs:comment\">Used in conjunction with eventStatus for rescheduled or cancelled events. This property contains the previously scheduled start date. For rescheduled events, the startDate property should be used for the newly scheduled start date. In the (rare) case of an event that has been postponed and rescheduled multiple times, this field may be repeated.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/price\">\n      <span class=\"h\" property=\"rdfs:label\">price</span>\n      <span property=\"rdfs:comment\">The offer price of a product, or of a price component when attached to PriceSpecification and its subtypes.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TradeAction\">TradeAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/priceRange\">\n      <span class=\"h\" property=\"rdfs:label\">priceRange</span>\n      <span property=\"rdfs:comment\">The price range of the business, for example &lt;code&gt;$$$&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LocalBusiness\">LocalBusiness</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/priceSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">priceSpecification</span>\n      <span property=\"rdfs:comment\">One or more detailed price specifications, indicating the unit price and delivery or payment charges.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/priceType\">\n      <span class=\"h\" property=\"rdfs:label\">priceType</span>\n      <span property=\"rdfs:comment\">A short text or acronym indicating multiple price specifications for the same offer, e.g. SRP for the suggested retail price or INVOICE for the invoice price, mostly used in the car industry.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UnitPriceSpecification\">UnitPriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/priceValidUntil\">\n      <span class=\"h\" property=\"rdfs:label\">priceValidUntil</span>\n      <span property=\"rdfs:comment\">The date after which the price is no longer available.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/primaryImageOfPage\">\n      <span class=\"h\" property=\"rdfs:label\">primaryImageOfPage</span>\n      <span property=\"rdfs:comment\">Indicates the main image on the page.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/primaryPrevention\">\n      <span class=\"h\" property=\"rdfs:label\">primaryPrevention</span>\n      <span property=\"rdfs:comment\">A preventative therapy used to prevent an initial occurrence of the medical condition, such as vaccination.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/printColumn\">\n      <span class=\"h\" property=\"rdfs:label\">printColumn</span>\n      <span property=\"rdfs:comment\">The number of the column in which the NewsArticle appears in the print edition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/printEdition\">\n      <span class=\"h\" property=\"rdfs:label\">printEdition</span>\n      <span property=\"rdfs:comment\">The edition of the print product in which the NewsArticle appears.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/printPage\">\n      <span class=\"h\" property=\"rdfs:label\">printPage</span>\n      <span property=\"rdfs:comment\">If this NewsArticle appears in print, this field indicates the name of the page on which the article is found. Please note that this field is intended for the exact page name (e.g. A5, B18).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/printSection\">\n      <span class=\"h\" property=\"rdfs:label\">printSection</span>\n      <span property=\"rdfs:comment\">If this NewsArticle appears in print, this field indicates the print section in which the article appeared.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NewsArticle\">NewsArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/procedure\">\n      <span class=\"h\" property=\"rdfs:label\">procedure</span>\n      <span property=\"rdfs:comment\">A description of the procedure involved in setting up, using, and/or installing the device.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/procedureType\">\n      <span class=\"h\" property=\"rdfs:label\">procedureType</span>\n      <span property=\"rdfs:comment\">The type of procedure, for example Surgical, Noninvasive, or Percutaneous.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalProcedure\">MedicalProcedure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalProcedureType\">MedicalProcedureType</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/processingTime\">\n      <span class=\"h\" property=\"rdfs:label\">processingTime</span>\n      <span property=\"rdfs:comment\">Estimated processing time for the service using this channel.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/processorRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">processorRequirements</span>\n      <span property=\"rdfs:comment\">Processor architecture required to run the application (e.g. IA64).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/producer\">\n      <span class=\"h\" property=\"rdfs:label\">producer</span>\n      <span property=\"rdfs:comment\">The producer of the movie, tv/radio series, season, or episode, or video.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/produces\">\n      <span class=\"h\" property=\"rdfs:label\">produces</span>\n      <span property=\"rdfs:comment\">The tangible thing generated by the service, e.g. a passport, permit, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/productID\">\n      <span class=\"h\" property=\"rdfs:label\">productID</span>\n      <span property=\"rdfs:comment\">The product identifier, such as ISBN. For example: &lt;code&gt;&amp;lt;meta itemprop=&#39;productID&#39; content=&#39;isbn:123-456-789&#39;/&amp;gt;&lt;/code&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/productionCompany\">\n      <span class=\"h\" property=\"rdfs:label\">productionCompany</span>\n      <span property=\"rdfs:comment\">The production company or studio that made the movie, tv/radio series, season, or episode, or media object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/productSupported\">\n      <span class=\"h\" property=\"rdfs:label\">productSupported</span>\n      <span property=\"rdfs:comment\">The product or service this support contact point is related to (such as product support for a particular product line). This can be a specific product or product line (e.g. &quot;iPhone&quot;) or a general category of products or services (e.g. &quot;smartphones&quot;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/proficiencyLevel\">\n      <span class=\"h\" property=\"rdfs:label\">proficiencyLevel</span>\n      <span property=\"rdfs:comment\">Proficiency needed for this content; expected values: &#39;Beginner&#39;, &#39;Expert&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TechArticle\">TechArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/programmingLanguage\">\n      <span class=\"h\" property=\"rdfs:label\">programmingLanguage</span>\n      <span property=\"rdfs:comment\">The computer programming language.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Code\">Code</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/programmingModel\">\n      <span class=\"h\" property=\"rdfs:label\">programmingModel</span>\n      <span property=\"rdfs:comment\">Indicates whether API is managed or unmanaged.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/APIReference\">APIReference</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/proprietaryName\">\n      <span class=\"h\" property=\"rdfs:label\">proprietaryName</span>\n      <span property=\"rdfs:comment\">Proprietary name given to the diet plan, typically by its originator or creator.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/proteinContent\">\n      <span class=\"h\" property=\"rdfs:label\">proteinContent</span>\n      <span property=\"rdfs:comment\">The number of grams of protein.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/providesService\">\n      <span class=\"h\" property=\"rdfs:label\">providesService</span>\n      <span property=\"rdfs:comment\">The service provided by this channel.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/publication\">\n      <span class=\"h\" property=\"rdfs:label\">publication</span>\n      <span property=\"rdfs:comment\">A publication event associated with the episode, clip or media object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Clip\">Clip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PublicationEvent\">PublicationEvent</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/publicationType\">\n      <span class=\"h\" property=\"rdfs:label\">publicationType</span>\n      <span property=\"rdfs:comment\">The type of the medical article, taken from the US NLM MeSH &lt;a href=http://www.nlm.nih.gov/mesh/pubtypes.html&gt;publication type catalog.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalScholarlyArticle\">MedicalScholarlyArticle</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/publishedOn\">\n      <span class=\"h\" property=\"rdfs:label\">publishedOn</span>\n      <span property=\"rdfs:comment\">A broadcast service associated with the publication event.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PublicationEvent\">PublicationEvent</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BroadcastService\">BroadcastService</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/publisher\">\n      <span class=\"h\" property=\"rdfs:label\">publisher</span>\n      <span property=\"rdfs:comment\">The publisher of the creative work.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/publishingPrinciples\">\n      <span class=\"h\" property=\"rdfs:label\">publishingPrinciples</span>\n      <span property=\"rdfs:comment\">Link to page describing the editorial principles of the organization primarily responsible for the creation of the CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/purpose\">\n      <span class=\"h\" property=\"rdfs:label\">purpose</span>\n      <span property=\"rdfs:comment\">A goal towards an action is taken. Can be concrete or abstract.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AllocateAction\">AllocateAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PayAction\">PayAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalDevicePurpose\">MedicalDevicePurpose</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/qualifications\">\n      <span class=\"h\" property=\"rdfs:label\">qualifications</span>\n      <span property=\"rdfs:comment\">Specific qualifications required for this role.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/query\">\n      <span class=\"h\" property=\"rdfs:label\">query</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The query used on this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SearchAction\">SearchAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Class\">Class</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/question\">\n      <span class=\"h\" property=\"rdfs:label\">question</span>\n      <span property=\"rdfs:comment\">A sub property of object. A question.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AskAction\">AskAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/rangeIncludes\">\n      <span class=\"h\" property=\"rdfs:label\">rangeIncludes</span>\n      <span property=\"rdfs:comment\">Relates a property to a class that constitutes (one of) the expected type(s) for values of the property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Property\">Property</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Class\">Class</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ratingCount\">\n      <span class=\"h\" property=\"rdfs:label\">ratingCount</span>\n      <span property=\"rdfs:comment\">The count of total number of ratings.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateRating\">AggregateRating</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ratingValue\">\n      <span class=\"h\" property=\"rdfs:label\">ratingValue</span>\n      <span property=\"rdfs:comment\">The rating for the content.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Rating\">Rating</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/realEstateAgent\">\n      <span class=\"h\" property=\"rdfs:label\">realEstateAgent</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The real estate agent involved in the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentAction\">RentAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/RealEstateAgent\">RealEstateAgent</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipe\">\n      <span class=\"h\" property=\"rdfs:label\">recipe</span>\n      <span property=\"rdfs:comment\">A sub property of instrument. The recipe/instructions used to perform the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/instrument\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CookAction\">CookAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipeCategory\">\n      <span class=\"h\" property=\"rdfs:label\">recipeCategory</span>\n      <span property=\"rdfs:comment\">The category of the recipe&amp;#x2014;for example, appetizer, entree, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipeCuisine\">\n      <span class=\"h\" property=\"rdfs:label\">recipeCuisine</span>\n      <span property=\"rdfs:comment\">The cuisine of the recipe (for example, French or Ethiopian).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipeInstructions\">\n      <span class=\"h\" property=\"rdfs:label\">recipeInstructions</span>\n      <span property=\"rdfs:comment\">The steps to make the dish.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipeYield\">\n      <span class=\"h\" property=\"rdfs:label\">recipeYield</span>\n      <span property=\"rdfs:comment\">The quantity produced by the recipe (for example, number of people served, number of servings, etc).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recipient\">\n      <span class=\"h\" property=\"rdfs:label\">recipient</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The participant who is at the receiving end of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CommunicateAction\">CommunicateAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AuthorizeAction\">AuthorizeAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DonateAction\">DonateAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GiveAction\">GiveAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PayAction\">PayAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReturnAction\">ReturnAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SendAction\">SendAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TipAction\">TipAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recognizingAuthority\">\n      <span class=\"h\" property=\"rdfs:label\">recognizingAuthority</span>\n      <span property=\"rdfs:comment\">If applicable, the organization that officially recognizes this entity as part of its endorsed system of medicine.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recommendationStrength\">\n      <span class=\"h\" property=\"rdfs:label\">recommendationStrength</span>\n      <span property=\"rdfs:comment\">Strength of the guideline&#39;s recommendation (e.g. &#39;class I&#39;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalGuidelineRecommendation\">MedicalGuidelineRecommendation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/recommendedIntake\">\n      <span class=\"h\" property=\"rdfs:label\">recommendedIntake</span>\n      <span property=\"rdfs:comment\">Recommended intake of this supplement for a given population as defined by a specific recommending authority.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/RecommendedDoseSchedule\">RecommendedDoseSchedule</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/regionDrained\">\n      <span class=\"h\" property=\"rdfs:label\">regionDrained</span>\n      <span property=\"rdfs:comment\">The anatomical or organ system drained by this vessel; generally refers to a specific part of an organ.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LymphaticVessel\">LymphaticVessel</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Vein\">Vein</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/regionsAllowed\">\n      <span class=\"h\" property=\"rdfs:label\">regionsAllowed</span>\n      <span property=\"rdfs:comment\">The regions where the media is allowed. If not specified, then it&#39;s assumed to be allowed everywhere. Specify the countries in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_3166&#39;&gt;ISO 3166 format&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedAnatomy\">\n      <span class=\"h\" property=\"rdfs:label\">relatedAnatomy</span>\n      <span property=\"rdfs:comment\">Anatomical systems or structures that relate to the superficial anatomy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedCondition\">\n      <span class=\"h\" property=\"rdfs:label\">relatedCondition</span>\n      <span property=\"rdfs:comment\">A medical condition associated with this anatomy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedDrug\">\n      <span class=\"h\" property=\"rdfs:label\">relatedDrug</span>\n      <span property=\"rdfs:comment\">Any other drug related to this one, for example commonly-prescribed alternatives.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedLink\">\n      <span class=\"h\" property=\"rdfs:label\">relatedLink</span>\n      <span property=\"rdfs:comment\">A link related to this web page, for example to other related web pages.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedStructure\">\n      <span class=\"h\" property=\"rdfs:label\">relatedStructure</span>\n      <span property=\"rdfs:comment\">Related anatomical structure(s) that are not part of the system but relate or connect to it, such as vascular bundles associated with an organ system.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedTherapy\">\n      <span class=\"h\" property=\"rdfs:label\">relatedTherapy</span>\n      <span property=\"rdfs:comment\">A medical therapy related to this anatomy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalSystem\">AnatomicalSystem</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relatedTo\">\n      <span class=\"h\" property=\"rdfs:label\">relatedTo</span>\n      <span property=\"rdfs:comment\">The most generic familial relation.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/releaseDate\">\n      <span class=\"h\" property=\"rdfs:label\">releaseDate</span>\n      <span property=\"rdfs:comment\">The release date of a product or product model. This can be used to distinguish the exact variant of a product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/releaseNotes\">\n      <span class=\"h\" property=\"rdfs:label\">releaseNotes</span>\n      <span property=\"rdfs:comment\">Description of what changed in this version.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/relevantSpecialty\">\n      <span class=\"h\" property=\"rdfs:label\">relevantSpecialty</span>\n      <span property=\"rdfs:comment\">If applicable, a medical specialty in which this entity is relevant.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalSpecialty\">MedicalSpecialty</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/repetitions\">\n      <span class=\"h\" property=\"rdfs:label\">repetitions</span>\n      <span property=\"rdfs:comment\">Number of times one should repeat the activity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/replacee\">\n      <span class=\"h\" property=\"rdfs:label\">replacee</span>\n      <span property=\"rdfs:comment\">A sub property of object. The object that is being replaced.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReplaceAction\">ReplaceAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/replacer\">\n      <span class=\"h\" property=\"rdfs:label\">replacer</span>\n      <span property=\"rdfs:comment\">A sub property of object. The object that replaces.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/object\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReplaceAction\">ReplaceAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/replyToUrl\">\n      <span class=\"h\" property=\"rdfs:label\">replyToUrl</span>\n      <span property=\"rdfs:comment\">The URL at which a reply may be posted to the specified UserComment.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UserComments\">UserComments</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/representativeOfPage\">\n      <span class=\"h\" property=\"rdfs:label\">representativeOfPage</span>\n      <span property=\"rdfs:comment\">Indicates whether this image is representative of the content of the page.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/requiredGender\">\n      <span class=\"h\" property=\"rdfs:label\">requiredGender</span>\n      <span property=\"rdfs:comment\">Audiences defined by a person&#39;s gender.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/requiredMaxAge\">\n      <span class=\"h\" property=\"rdfs:label\">requiredMaxAge</span>\n      <span property=\"rdfs:comment\">Audiences defined by a person&#39;s maximum age.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/requiredMinAge\">\n      <span class=\"h\" property=\"rdfs:label\">requiredMinAge</span>\n      <span property=\"rdfs:comment\">Audiences defined by a person&#39;s minimum age.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/requirements\">\n      <span class=\"h\" property=\"rdfs:label\">requirements</span>\n      <span property=\"rdfs:comment\">Component dependency requirements for application. This includes runtime environments and shared libraries that are not included in the application distribution package, but required to run the application (Examples: DirectX, Java or .NET runtime).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/requiresSubscription\">\n      <span class=\"h\" property=\"rdfs:label\">requiresSubscription</span>\n      <span property=\"rdfs:comment\">Indicates if use of the media require a subscription  (either paid or free). Allowed values are &lt;code&gt;true&lt;/code&gt; or &lt;code&gt;false&lt;/code&gt; (note that an earlier version had &#39;yes&#39;, &#39;no&#39;).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/responsibilities\">\n      <span class=\"h\" property=\"rdfs:label\">responsibilities</span>\n      <span property=\"rdfs:comment\">Responsibilities associated with this role.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/restPeriods\">\n      <span class=\"h\" property=\"rdfs:label\">restPeriods</span>\n      <span property=\"rdfs:comment\">How often one should break from the activity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/result\">\n      <span class=\"h\" property=\"rdfs:label\">result</span>\n      <span property=\"rdfs:comment\">The result produced in the action. e.g. John wrote *a book*.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/resultReview\">\n      <span class=\"h\" property=\"rdfs:label\">resultReview</span>\n      <span property=\"rdfs:comment\">A sub property of result. The review that resulted in the performing of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/result\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReviewAction\">ReviewAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/review\">\n      <span class=\"h\" property=\"rdfs:label\">review</span>\n      <span property=\"rdfs:comment\">A review of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reviewBody\">\n      <span class=\"h\" property=\"rdfs:label\">reviewBody</span>\n      <span property=\"rdfs:comment\">The actual body of the review.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reviewCount\">\n      <span class=\"h\" property=\"rdfs:label\">reviewCount</span>\n      <span property=\"rdfs:comment\">The count of total number of reviews.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AggregateRating\">AggregateRating</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reviewedBy\">\n      <span class=\"h\" property=\"rdfs:label\">reviewedBy</span>\n      <span property=\"rdfs:comment\">People or organizations that have reviewed the content on this web page for accuracy and/or completeness.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reviewRating\">\n      <span class=\"h\" property=\"rdfs:label\">reviewRating</span>\n      <span property=\"rdfs:comment\">The rating given in this review. Note that reviews can themselves be rated. The &lt;code&gt;reviewRating&lt;/code&gt; applies to rating given by the review. The &lt;code&gt;aggregateRating&lt;/code&gt; property applies to the review itself, as a creative work.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Rating\">Rating</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reviews\">\n      <span class=\"h\" property=\"rdfs:label\">reviews</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/review\"/>\n      <span property=\"rdfs:comment\">Review of the item (legacy spelling; see singular form, review).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Review\">Review</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/riskFactor\">\n      <span class=\"h\" property=\"rdfs:label\">riskFactor</span>\n      <span property=\"rdfs:comment\">A modifiable or non-modifiable factor that increases the risk of a patient contracting this condition, e.g. age,  coexisting condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalRiskFactor\">MedicalRiskFactor</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/risks\">\n      <span class=\"h\" property=\"rdfs:label\">risks</span>\n      <span property=\"rdfs:comment\">Specific physiologic risks associated to the plan.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Diet\">Diet</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/runsTo\">\n      <span class=\"h\" property=\"rdfs:label\">runsTo</span>\n      <span property=\"rdfs:comment\">The vasculature the lymphatic structure runs, or efferents, to.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LymphaticVessel\">LymphaticVessel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Vessel\">Vessel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/runtime\">\n      <span class=\"h\" property=\"rdfs:label\">runtime</span>\n      <span property=\"rdfs:comment\">Runtime platform or script interpreter dependencies (Example - Java v1, Python2.3, .Net Framework 3.0)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Code\">Code</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/safetyConsideration\">\n      <span class=\"h\" property=\"rdfs:label\">safetyConsideration</span>\n      <span property=\"rdfs:comment\">Any potential safety concern associated with the supplement. May include interactions with other drugs and foods, pregnancy, breastfeeding, known adverse reactions, and documented efficacy of the supplement.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/salaryCurrency\">\n      <span class=\"h\" property=\"rdfs:label\">salaryCurrency</span>\n      <span property=\"rdfs:comment\">The currency (coded using ISO 4217, http://en.wikipedia.org/wiki/ISO_4217 used for the main salary information in this job posting.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sameAs\">\n      <span class=\"h\" property=\"rdfs:label\">sameAs</span>\n      <span property=\"rdfs:comment\">URL of a reference Web page that unambiguously indicates the item&#39;s identity. E.g. the URL of the item&#39;s Wikipedia page, Freebase page, or official website.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sampleType\">\n      <span class=\"h\" property=\"rdfs:label\">sampleType</span>\n      <span property=\"rdfs:comment\">Full (compile ready) solution, code snippet, inline code, scripts, template.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Code\">Code</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/saturatedFatContent\">\n      <span class=\"h\" property=\"rdfs:label\">saturatedFatContent</span>\n      <span property=\"rdfs:comment\">The number of grams of saturated fat.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/scheduledTime\">\n      <span class=\"h\" property=\"rdfs:label\">scheduledTime</span>\n      <span property=\"rdfs:comment\">The time the object is scheduled to.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PlanAction\">PlanAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReserveAction\">ReserveAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/screenshot\">\n      <span class=\"h\" property=\"rdfs:label\">screenshot</span>\n      <span property=\"rdfs:comment\">A link to a screenshot image of the app.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/season\">\n      <span class=\"h\" property=\"rdfs:label\">season</span>\n      <span property=\"rdfs:comment\">A season in a tv/radio series.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seasonNumber\">\n      <span class=\"h\" property=\"rdfs:label\">seasonNumber</span>\n      <span property=\"rdfs:comment\">Position of the season within an ordered group of seasons.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seasons\">\n      <span class=\"h\" property=\"rdfs:label\">seasons</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/season\"/>\n      <span property=\"rdfs:comment\">A season in a tv/radio series. (legacy spelling; see singular form, season)</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/secondaryPrevention\">\n      <span class=\"h\" property=\"rdfs:label\">secondaryPrevention</span>\n      <span property=\"rdfs:comment\">A preventative therapy used to prevent reoccurrence of the medical condition after an initial episode of the condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seeks\">\n      <span class=\"h\" property=\"rdfs:label\">seeks</span>\n      <span property=\"rdfs:comment\">A pointer to products or services sought by the organization or person (demand).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seller\">\n      <span class=\"h\" property=\"rdfs:label\">seller</span>\n      <span property=\"rdfs:comment\">The organization or person making the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sender\">\n      <span class=\"h\" property=\"rdfs:label\">sender</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The participant who is at the sending end of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReceiveAction\">ReceiveAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sensoryUnit\">\n      <span class=\"h\" property=\"rdfs:label\">sensoryUnit</span>\n      <span property=\"rdfs:comment\">The neurological pathway extension that inputs and sends information to the brain or spinal cord.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serialNumber\">\n      <span class=\"h\" property=\"rdfs:label\">serialNumber</span>\n      <span property=\"rdfs:comment\">The serial number or any alphanumeric identifier of a particular product. When attached to an offer, it is a shortcut for the serial number of the product included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/IndividualProduct\">IndividualProduct</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seriousAdverseOutcome\">\n      <span class=\"h\" property=\"rdfs:label\">seriousAdverseOutcome</span>\n      <span property=\"rdfs:comment\">A possible serious complication and/or serious side effect of this therapy. Serious adverse outcomes include those that are life-threatening; result in death, disability, or permanent damage; require hospitalization or prolong existing hospitalization; cause congenital anomalies or birth defects; or jeopardize the patient and may require medical or surgical intervention to prevent one of the outcomes in this definition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTherapy\">MedicalTherapy</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/servesCuisine\">\n      <span class=\"h\" property=\"rdfs:label\">servesCuisine</span>\n      <span property=\"rdfs:comment\">The cuisine of the restaurant.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishment\">FoodEstablishment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceArea\">\n      <span class=\"h\" property=\"rdfs:label\">serviceArea</span>\n      <span property=\"rdfs:comment\">The geographic area where the service is provided.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceAudience\">\n      <span class=\"h\" property=\"rdfs:label\">serviceAudience</span>\n      <span property=\"rdfs:comment\">The audience eligible for this service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Audience\">Audience</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceLocation\">\n      <span class=\"h\" property=\"rdfs:label\">serviceLocation</span>\n      <span property=\"rdfs:comment\">The location (e.g. civic structure, local business, etc.) where a person can go to access the service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceOperator\">\n      <span class=\"h\" property=\"rdfs:label\">serviceOperator</span>\n      <span property=\"rdfs:comment\">The operating organization, if different from the provider.  This enables the representation of services that are provided by an organization, but operated by another organization like a subcontractor.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/GovernmentService\">GovernmentService</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/servicePhone\">\n      <span class=\"h\" property=\"rdfs:label\">servicePhone</span>\n      <span property=\"rdfs:comment\">The phone number to use to access the service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/servicePostalAddress\">\n      <span class=\"h\" property=\"rdfs:label\">servicePostalAddress</span>\n      <span property=\"rdfs:comment\">The address for accessing the service by mail.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceSmsNumber\">\n      <span class=\"h\" property=\"rdfs:label\">serviceSmsNumber</span>\n      <span property=\"rdfs:comment\">The number to access the service by text message.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceType\">\n      <span class=\"h\" property=\"rdfs:label\">serviceType</span>\n      <span property=\"rdfs:comment\">The type of service being offered, e.g. veterans&#39; benefits, emergency relief, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/serviceUrl\">\n      <span class=\"h\" property=\"rdfs:label\">serviceUrl</span>\n      <span property=\"rdfs:comment\">The website to access the service.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ServiceChannel\">ServiceChannel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/servingSize\">\n      <span class=\"h\" property=\"rdfs:label\">servingSize</span>\n      <span property=\"rdfs:comment\">The serving size, in terms of the number of volume or mass.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sibling\">\n      <span class=\"h\" property=\"rdfs:label\">sibling</span>\n      <span property=\"rdfs:comment\">A sibling of the person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/siblings\">\n      <span class=\"h\" property=\"rdfs:label\">siblings</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/sibling\"/>\n      <span property=\"rdfs:comment\">A sibling of the person (legacy spelling; see singular form, sibling).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/signDetected\">\n      <span class=\"h\" property=\"rdfs:label\">signDetected</span>\n      <span property=\"rdfs:comment\">A sign detected by the test.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalSign\">MedicalSign</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/significance\">\n      <span class=\"h\" property=\"rdfs:label\">significance</span>\n      <span property=\"rdfs:comment\">The significance associated with the superficial anatomy; as an example, how characteristics of the superficial anatomy can suggest underlying medical conditions or courses of treatment.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SuperficialAnatomy\">SuperficialAnatomy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/significantLink\">\n      <span class=\"h\" property=\"rdfs:label\">significantLink</span>\n      <span property=\"rdfs:comment\">One of the more significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/significantLinks\">\n      <span class=\"h\" property=\"rdfs:label\">significantLinks</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/significantLink\"/>\n      <span property=\"rdfs:comment\">The most significant URLs on the page. Typically, these are the non-navigation links that are clicked on the most (legacy spelling; see singular form, significantLink).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/signOrSymptom\">\n      <span class=\"h\" property=\"rdfs:label\">signOrSymptom</span>\n      <span property=\"rdfs:comment\">A sign or symptom of this condition. Signs are objective or physically observable manifestations of the medical condition while symptoms are the subjective experience of the medical condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalSignOrSymptom\">MedicalSignOrSymptom</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/skills\">\n      <span class=\"h\" property=\"rdfs:label\">skills</span>\n      <span property=\"rdfs:comment\">Skills required to fulfill this role.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sku\">\n      <span class=\"h\" property=\"rdfs:label\">sku</span>\n      <span property=\"rdfs:comment\">The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service, or the product to which the offer refers.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sodiumContent\">\n      <span class=\"h\" property=\"rdfs:label\">sodiumContent</span>\n      <span property=\"rdfs:comment\">The number of milligrams of sodium.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/softwareVersion\">\n      <span class=\"h\" property=\"rdfs:label\">softwareVersion</span>\n      <span property=\"rdfs:comment\">Version of the software instance.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/source\">\n      <span class=\"h\" property=\"rdfs:label\">source</span>\n      <span property=\"rdfs:comment\">The anatomical or organ system that the artery originates from.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Artery\">Artery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sourcedFrom\">\n      <span class=\"h\" property=\"rdfs:label\">sourcedFrom</span>\n      <span property=\"rdfs:comment\">The neurological pathway that originates the neurons.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Nerve\">Nerve</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BrainStructure\">BrainStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sourceOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">sourceOrganization</span>\n      <span property=\"rdfs:comment\">The Organization on whose behalf the creator was working.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/spatial\">\n      <span class=\"h\" property=\"rdfs:label\">spatial</span>\n      <span property=\"rdfs:comment\">The range of spatial applicability of a dataset, e.g. for a dataset of New York weather, the state of New York.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Dataset\">Dataset</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/specialCommitments\">\n      <span class=\"h\" property=\"rdfs:label\">specialCommitments</span>\n      <span property=\"rdfs:comment\">Any special commitments associated with this job posting. Valid entries include VeteranCommit, MilitarySpouseCommit, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/specialty\">\n      <span class=\"h\" property=\"rdfs:label\">specialty</span>\n      <span property=\"rdfs:comment\">One of the domain specialities to which this web page&#39;s content applies.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Specialty\">Specialty</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sponsor\">\n      <span class=\"h\" property=\"rdfs:label\">sponsor</span>\n      <span property=\"rdfs:comment\">Sponsor of the study.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sportsActivityLocation\">\n      <span class=\"h\" property=\"rdfs:label\">sportsActivityLocation</span>\n      <span property=\"rdfs:comment\">A sub property of location. The sports activity location where this action occurred.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SportsActivityLocation\">SportsActivityLocation</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sportsEvent\">\n      <span class=\"h\" property=\"rdfs:label\">sportsEvent</span>\n      <span property=\"rdfs:comment\">A sub property of location. The sports event where this action occurred.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SportsEvent\">SportsEvent</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sportsTeam\">\n      <span class=\"h\" property=\"rdfs:label\">sportsTeam</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The sports team that participated on this action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SportsTeam\">SportsTeam</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/spouse\">\n      <span class=\"h\" property=\"rdfs:label\">spouse</span>\n      <span property=\"rdfs:comment\">The person&#39;s spouse.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/stage\">\n      <span class=\"h\" property=\"rdfs:label\">stage</span>\n      <span property=\"rdfs:comment\">The stage of the condition, if applicable.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalConditionStage\">MedicalConditionStage</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/stageAsNumber\">\n      <span class=\"h\" property=\"rdfs:label\">stageAsNumber</span>\n      <span property=\"rdfs:comment\">The stage represented as a number, e.g. 3.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalConditionStage\">MedicalConditionStage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/startDate\">\n      <span class=\"h\" property=\"rdfs:label\">startDate</span>\n      <span property=\"rdfs:comment\">The start date and time of the event, role or item (in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 date format&lt;/a&gt;).</span>\n\n      <!-- not in v1.6\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Statistic\">Statistic</a></span>\n      -->\n\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Role\">Role</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/startTime\">\n      <span class=\"h\" property=\"rdfs:label\">startTime</span>\n      <span property=\"rdfs:comment\">The startTime of something. For a reserved event or service (e.g. FoodEstablishmentReservation), the time that it is expected to start. For actions that span a period of time, when the action was performed. e.g. John wrote a book from *January* to December.\n\nNote that Event uses startDate/endDate instead of startTime/endTime, even when describing dates with times. This situation may be clarified in future revisions.\n</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishmentReservation\">FoodEstablishmentReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n   <div typeof=\"rdf:Property\" resource=\"http://schema.org/status\">\n      <span class=\"h\" property=\"rdfs:label\">status</span>\n      <span property=\"rdfs:comment\">The status of the study (enumerated).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalStudyStatus\">MedicalStudyStatus</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/storageRequirements\">\n      <span class=\"h\" property=\"rdfs:label\">storageRequirements</span>\n      <span property=\"rdfs:comment\">Storage requirements (free space required).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/streetAddress\">\n      <span class=\"h\" property=\"rdfs:label\">streetAddress</span>\n      <span property=\"rdfs:comment\">The street address. For example, 1600 Amphitheatre Pkwy.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PostalAddress\">PostalAddress</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/strengthUnit\">\n      <span class=\"h\" property=\"rdfs:label\">strengthUnit</span>\n      <span property=\"rdfs:comment\">The units of an active ingredient&#39;s strength, e.g. mg.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugStrength\">DrugStrength</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/strengthValue\">\n      <span class=\"h\" property=\"rdfs:label\">strengthValue</span>\n      <span property=\"rdfs:comment\">The value of an active ingredient&#39;s strength, e.g. 325.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DrugStrength\">DrugStrength</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/structuralClass\">\n      <span class=\"h\" property=\"rdfs:label\">structuralClass</span>\n      <span property=\"rdfs:comment\">The name given to how bone physically connects to each other.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Joint\">Joint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/study\">\n      <span class=\"h\" property=\"rdfs:label\">study</span>\n      <span property=\"rdfs:comment\">A medical study or trial related to this entity.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/studyDesign\">\n      <span class=\"h\" property=\"rdfs:label\">studyDesign</span>\n      <span property=\"rdfs:comment\">Specifics about the observational study design (enumerated).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalObservationalStudy\">MedicalObservationalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalObservationalStudyDesign\">MedicalObservationalStudyDesign</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/studyLocation\">\n      <span class=\"h\" property=\"rdfs:label\">studyLocation</span>\n      <span property=\"rdfs:comment\">The location in which the study is taking/took place.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/studySubject\">\n      <span class=\"h\" property=\"rdfs:label\">studySubject</span>\n      <span property=\"rdfs:comment\">A subject of the study, i.e. one of the medical conditions, therapies, devices, drugs, etc. investigated by the study.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalStudy\">MedicalStudy</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalEntity\">MedicalEntity</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subEvent\">\n      <span class=\"h\" property=\"rdfs:label\">subEvent</span>\n      <span property=\"rdfs:comment\">An Event that is part of this event. For example, a conference event includes many presentations, each of which is a subEvent of the conference.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subEvents\">\n      <span class=\"h\" property=\"rdfs:label\">subEvents</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/subEvent\"/>\n      <span property=\"rdfs:comment\">Events that are a part of this event. For example, a conference event includes many presentations, each subEvents of the conference (legacy spelling; see singular form, subEvent).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">subOrganization</span>\n      <span property=\"rdfs:comment\">A relationship between two organizations where the first includes the second, e.g., as a subsidiary. See also: the more specific &#39;department&#39; property.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subStageSuffix\">\n      <span class=\"h\" property=\"rdfs:label\">subStageSuffix</span>\n      <span property=\"rdfs:comment\">The substage, e.g. &#39;a&#39; for Stage IIIa.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalConditionStage\">MedicalConditionStage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subStructure\">\n      <span class=\"h\" property=\"rdfs:label\">subStructure</span>\n      <span property=\"rdfs:comment\">Component (sub-)structure(s) that comprise this anatomical structure.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subTest\">\n      <span class=\"h\" property=\"rdfs:label\">subTest</span>\n      <span property=\"rdfs:comment\">A component test of the panel.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTestPanel\">MedicalTestPanel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subtype\">\n      <span class=\"h\" property=\"rdfs:label\">subtype</span>\n      <span property=\"rdfs:comment\">A more specific type of the condition, where applicable, for example &#39;Type 1 Diabetes&#39;, &#39;Type 2 Diabetes&#39;, or &#39;Gestational Diabetes&#39; for Diabetes.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/successorOf\">\n      <span class=\"h\" property=\"rdfs:label\">successorOf</span>\n      <span property=\"rdfs:comment\">A pointer from a newer variant of a product  to its previous, often discontinued predecessor.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProductModel\">ProductModel</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/sugarContent\">\n      <span class=\"h\" property=\"rdfs:label\">sugarContent</span>\n      <span property=\"rdfs:comment\">The number of grams of sugar.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/suggestedGender\">\n      <span class=\"h\" property=\"rdfs:label\">suggestedGender</span>\n      <span property=\"rdfs:comment\">The gender of the person or audience.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/suggestedMaxAge\">\n      <span class=\"h\" property=\"rdfs:label\">suggestedMaxAge</span>\n      <span property=\"rdfs:comment\">Maximal age recommended for viewing content.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/suggestedMinAge\">\n      <span class=\"h\" property=\"rdfs:label\">suggestedMinAge</span>\n      <span property=\"rdfs:comment\">Minimal age recommended for viewing content.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PeopleAudience\">PeopleAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/superEvent\">\n      <span class=\"h\" property=\"rdfs:label\">superEvent</span>\n      <span property=\"rdfs:comment\">An event that this event is a part of. For example, a collection of individual music performances might each have a music festival as their superEvent.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/supplyTo\">\n      <span class=\"h\" property=\"rdfs:label\">supplyTo</span>\n      <span property=\"rdfs:comment\">The area to which the artery supplies blood.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Artery\">Artery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetDescription\">\n      <span class=\"h\" property=\"rdfs:label\">targetDescription</span>\n      <span property=\"rdfs:comment\">The description of a node in an established educational framework.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetName\">\n      <span class=\"h\" property=\"rdfs:label\">targetName</span>\n      <span property=\"rdfs:comment\">The name of a node in an established educational framework.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetPlatform\">\n      <span class=\"h\" property=\"rdfs:label\">targetPlatform</span>\n      <span property=\"rdfs:comment\">Type of app development: phone, Metro style, desktop, XBox, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/APIReference\">APIReference</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetPopulation\">\n      <span class=\"h\" property=\"rdfs:label\">targetPopulation</span>\n      <span property=\"rdfs:comment\">Characteristics of the population for which this is intended, or which typically uses it, e.g. &#39;adults&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DietarySupplement\">DietarySupplement</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/DoseSchedule\">DoseSchedule</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetProduct\">\n      <span class=\"h\" property=\"rdfs:label\">targetProduct</span>\n      <span property=\"rdfs:comment\">Target Operating System / Product to which the code applies.  If applies to several versions, just the product name can be used.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Code\">Code</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/targetUrl\">\n      <span class=\"h\" property=\"rdfs:label\">targetUrl</span>\n      <span property=\"rdfs:comment\">The URL of a node in an established educational framework.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AlignmentObject\">AlignmentObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/taxID\">\n      <span class=\"h\" property=\"rdfs:label\">taxID</span>\n      <span property=\"rdfs:comment\">The Tax / Fiscal ID of the organization or person, e.g. the TIN in the US or the CIF/NIF in Spain.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/telephone\">\n      <span class=\"h\" property=\"rdfs:label\">telephone</span>\n      <span property=\"rdfs:comment\">The telephone number.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/temporal\">\n      <span class=\"h\" property=\"rdfs:label\">temporal</span>\n      <span property=\"rdfs:comment\">The range of temporal applicability of a dataset, e.g. for a 2011 census dataset, the year 2011 (in ISO 8601 time interval format).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Dataset\">Dataset</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/text\">\n      <span class=\"h\" property=\"rdfs:label\">text</span>\n      <span property=\"rdfs:comment\">The textual content of this CreativeWork.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/thumbnail\">\n      <span class=\"h\" property=\"rdfs:label\">thumbnail</span>\n      <span property=\"rdfs:comment\">Thumbnail image for an image or video.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ImageObject\">ImageObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/thumbnailUrl\">\n      <span class=\"h\" property=\"rdfs:label\">thumbnailUrl</span>\n      <span property=\"rdfs:comment\">A thumbnail image relevant to the Thing.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/tickerSymbol\">\n      <span class=\"h\" property=\"rdfs:label\">tickerSymbol</span>\n      <span property=\"rdfs:comment\">The exchange traded instrument associated with a Corporation object. The tickerSymbol is expressed as an exchange and an instrument name separated by a space character. For the exchange component of the tickerSymbol attribute, we reccommend using the controlled vocaulary of Market Identifier Codes (MIC) specified in ISO15022.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Corporation\">Corporation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/timeRequired\">\n      <span class=\"h\" property=\"rdfs:label\">timeRequired</span>\n      <span property=\"rdfs:comment\">Approximate or typical time it takes to work with or through this learning resource for the typical intended target audience, e.g. &#39;P30M&#39;, &#39;P1H25M&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/tissueSample\">\n      <span class=\"h\" property=\"rdfs:label\">tissueSample</span>\n      <span property=\"rdfs:comment\">The type of tissue sample required for the test.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PathologyTest\">PathologyTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/title\">\n      <span class=\"h\" property=\"rdfs:label\">title</span>\n      <span property=\"rdfs:comment\">The title of the job.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/toLocation\">\n      <span class=\"h\" property=\"rdfs:label\">toLocation</span>\n      <span property=\"rdfs:comment\">A sub property of location. The final location of the object or the agent after the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/location\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InsertAction\">InsertAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MoveAction\">MoveAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TransferAction\">TransferAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExerciseAction\">ExerciseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/totalTime\">\n      <span class=\"h\" property=\"rdfs:label\">totalTime</span>\n      <span property=\"rdfs:comment\">The total time it takes to prepare and cook the recipe, in &lt;a href=&#39;http://en.wikipedia.org/wiki/ISO_8601&#39;&gt;ISO 8601 duration format&lt;/a&gt;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Recipe\">Recipe</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/track\">\n      <span class=\"h\" property=\"rdfs:label\">track</span>\n      <span property=\"rdfs:comment\">A music recording (track)&amp;#x2014;usually a single song.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicPlaylist\">MusicPlaylist</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trackingNumber\">\n      <span class=\"h\" property=\"rdfs:label\">trackingNumber</span>\n      <span property=\"rdfs:comment\">Shipper tracking number.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trackingUrl\">\n      <span class=\"h\" property=\"rdfs:label\">trackingUrl</span>\n      <span property=\"rdfs:comment\">Tracking url for the parcel delivery.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ParcelDelivery\">ParcelDelivery</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/tracks\">\n      <span class=\"h\" property=\"rdfs:label\">tracks</span>\n      <span property=\"http://schema.org/supercededBy\" href=\"http://schema.org/track\"/>\n      <span property=\"rdfs:comment\">A music recording (track)&amp;#x2014;usually a single song (legacy spelling; see singular form, track).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicPlaylist\">MusicPlaylist</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MusicGroup\">MusicGroup</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MusicRecording\">MusicRecording</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trailer\">\n      <span class=\"h\" property=\"rdfs:label\">trailer</span>\n      <span property=\"rdfs:comment\">The trailer of a movie or tv/radio series, season, or episode.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Movie\">Movie</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Episode\">Episode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVEpisode\">TVEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Season\">Season</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeason\">TVSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Series\">Series</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TVSeries\">TVSeries</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioEpisode\">RadioEpisode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeason\">RadioSeason</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RadioSeries\">RadioSeries</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/transcript\">\n      <span class=\"h\" property=\"rdfs:label\">transcript</span>\n      <span property=\"rdfs:comment\">If this MediaObject is an AudioObject or VideoObject, the transcript of that object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/AudioObject\">AudioObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/transFatContent\">\n      <span class=\"h\" property=\"rdfs:label\">transFatContent</span>\n      <span property=\"rdfs:comment\">The number of grams of trans fat.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/transmissionMethod\">\n      <span class=\"h\" property=\"rdfs:label\">transmissionMethod</span>\n      <span property=\"rdfs:comment\">How the disease spreads, either as a route or vector, for example &#39;direct contact&#39;, &#39;Aedes aegypti&#39;, etc.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/InfectiousDisease\">InfectiousDisease</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trialDesign\">\n      <span class=\"h\" property=\"rdfs:label\">trialDesign</span>\n      <span property=\"rdfs:comment\">Specifics about the trial design (enumerated).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTrial\">MedicalTrial</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTrialDesign\">MedicalTrialDesign</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/tributary\">\n      <span class=\"h\" property=\"rdfs:label\">tributary</span>\n      <span property=\"rdfs:comment\">The anatomical or organ system that the vein flows into; a larger structure that the vein connects to.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Vein\">Vein</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AnatomicalStructure\">AnatomicalStructure</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/typeOfGood\">\n      <span class=\"h\" property=\"rdfs:label\">typeOfGood</span>\n      <span property=\"rdfs:comment\">The product that this structured value is referring to.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OwnershipInfo\">OwnershipInfo</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TypeAndQuantityNode\">TypeAndQuantityNode</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/typicalAgeRange\">\n      <span class=\"h\" property=\"rdfs:label\">typicalAgeRange</span>\n      <span property=\"rdfs:comment\">The typical expected age range, e.g. &#39;7-9&#39;, &#39;11-&#39;.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/typicalTest\">\n      <span class=\"h\" property=\"rdfs:label\">typicalTest</span>\n      <span property=\"rdfs:comment\">A medical test typically performed given this condition.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/unitCode\">\n      <span class=\"h\" property=\"rdfs:label\">unitCode</span>\n      <span property=\"rdfs:comment\">The unit of measurement given using the UN/CEFACT Common Code (3 characters).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TypeAndQuantityNode\">TypeAndQuantityNode</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/UnitPriceSpecification\">UnitPriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/unsaturatedFatContent\">\n      <span class=\"h\" property=\"rdfs:label\">unsaturatedFatContent</span>\n      <span property=\"rdfs:comment\">The number of grams of unsaturated fat.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/NutritionInformation\">NutritionInformation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Mass\">Mass</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/uploadDate\">\n      <span class=\"h\" property=\"rdfs:label\">uploadDate</span>\n      <span property=\"rdfs:comment\">Date when this media object was uploaded to this site.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/url\">\n      <span class=\"h\" property=\"rdfs:label\">url</span>\n      <span property=\"rdfs:comment\">URL of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/usedToDiagnose\">\n      <span class=\"h\" property=\"rdfs:label\">usedToDiagnose</span>\n      <span property=\"rdfs:comment\">A condition the test is used to diagnose.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalCondition\">MedicalCondition</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/usesDevice\">\n      <span class=\"h\" property=\"rdfs:label\">usesDevice</span>\n      <span property=\"rdfs:comment\">Device used to perform the test.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MedicalTest\">MedicalTest</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/MedicalDevice\">MedicalDevice</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/validFor\">\n      <span class=\"h\" property=\"rdfs:label\">validFor</span>\n      <span property=\"rdfs:comment\">The time validity of the permit.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/validFrom\">\n      <span class=\"h\" property=\"rdfs:label\">validFrom</span>\n      <span property=\"rdfs:comment\">The date when the item becomes valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/validIn\">\n      <span class=\"h\" property=\"rdfs:label\">validIn</span>\n      <span property=\"rdfs:comment\">The geographic area where the permit is valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/AdministrativeArea\">AdministrativeArea</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/validThrough\">\n      <span class=\"h\" property=\"rdfs:label\">validThrough</span>\n      <span property=\"rdfs:comment\">The end of the validity of offer, price specification, or opening hours data.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OpeningHoursSpecification\">OpeningHoursSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/validUntil\">\n      <span class=\"h\" property=\"rdfs:label\">validUntil</span>\n      <span property=\"rdfs:comment\">The date when the item is no longer valid.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Date\">Date</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/value\">\n      <span class=\"h\" property=\"rdfs:label\">value</span>\n      <span property=\"rdfs:comment\">The value of the product characteristic.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueAddedTaxIncluded\">\n      <span class=\"h\" property=\"rdfs:label\">valueAddedTaxIncluded</span>\n      <span property=\"rdfs:comment\">Specifies whether the applicable value-added tax (VAT) is included in the price specification or not.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueReference\">\n      <span class=\"h\" property=\"rdfs:label\">valueReference</span>\n      <span property=\"rdfs:comment\">A pointer to a secondary value that provides additional information on the original value, e.g. a reference temperature.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/StructuredValue\">StructuredValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/vatID\">\n      <span class=\"h\" property=\"rdfs:label\">vatID</span>\n      <span property=\"rdfs:comment\">The Value-added Tax ID of the organization or person.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/vendor\">\n      <span class=\"h\" property=\"rdfs:label\">vendor</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The seller. The participant/person/organization that sold the object.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BuyAction\">BuyAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/version\">\n      <span class=\"h\" property=\"rdfs:label\">version</span>\n      <span property=\"rdfs:comment\">The version of the CreativeWork embodied by a specified resource.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/video\">\n      <span class=\"h\" property=\"rdfs:label\">video</span>\n      <span property=\"rdfs:comment\">An embedded video object.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/videoFrameSize\">\n      <span class=\"h\" property=\"rdfs:label\">videoFrameSize</span>\n      <span property=\"rdfs:comment\">The frame size of the video.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/videoQuality\">\n      <span class=\"h\" property=\"rdfs:label\">videoQuality</span>\n      <span property=\"rdfs:comment\">The quality of the video.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/VideoObject\">VideoObject</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/warning\">\n      <span class=\"h\" property=\"rdfs:label\">warning</span>\n      <span property=\"rdfs:comment\">Any FDA or other warnings about the drug (text or URL).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Drug\">Drug</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/warranty\">\n      <span class=\"h\" property=\"rdfs:label\">warranty</span>\n      <span property=\"rdfs:comment\">The warranty promise(s) included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Demand\">Demand</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/WarrantyPromise\">WarrantyPromise</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/warrantyPromise\">\n      <span class=\"h\" property=\"rdfs:label\">warrantyPromise</span>\n      <span property=\"rdfs:comment\">The warranty promise(s) included in the offer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BuyAction\">BuyAction</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/SellAction\">SellAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/WarrantyPromise\">WarrantyPromise</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/warrantyScope\">\n      <span class=\"h\" property=\"rdfs:label\">warrantyScope</span>\n      <span property=\"rdfs:comment\">The scope of the warranty promise.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/WarrantyPromise\">WarrantyPromise</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/WarrantyScope\">WarrantyScope</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/weight\">\n      <span class=\"h\" property=\"rdfs:label\">weight</span>\n      <span property=\"rdfs:comment\">The weight of the product.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/width\">\n      <span class=\"h\" property=\"rdfs:label\">width</span>\n      <span property=\"rdfs:comment\">The width of the item.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/MediaObject\">MediaObject</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Product\">Product</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Distance\">Distance</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/winner\">\n      <span class=\"h\" property=\"rdfs:label\">winner</span>\n      <span property=\"rdfs:comment\">A sub property of participant. The winner of the action.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/participant\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LoseAction\">LoseAction</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/wordCount\">\n      <span class=\"h\" property=\"rdfs:label\">wordCount</span>\n      <span property=\"rdfs:comment\">The number of words in the text of the Article.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Article\">Article</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/workHours\">\n      <span class=\"h\" property=\"rdfs:label\">workHours</span>\n      <span property=\"rdfs:comment\">The typical working hours for this job (e.g. 1st shift, night shift, 8am-5pm).</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/JobPosting\">JobPosting</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/workload\">\n      <span class=\"h\" property=\"rdfs:label\">workload</span>\n      <span property=\"rdfs:comment\">Quantitative measure of the physiologic output of the exercise; also referred to as energy expenditure.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ExercisePlan\">ExercisePlan</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Energy\">Energy</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/workLocation\">\n      <span class=\"h\" property=\"rdfs:label\">workLocation</span>\n      <span property=\"rdfs:comment\">A contact location for a person&#39;s place of work.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ContactPoint\">ContactPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/worksFor\">\n      <span class=\"h\" property=\"rdfs:label\">worksFor</span>\n      <span property=\"rdfs:comment\">Organizations that the person works for.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/worstRating\">\n      <span class=\"h\" property=\"rdfs:label\">worstRating</span>\n      <span property=\"rdfs:comment\">The lowest value allowed in this rating system. If worstRating is omitted, 1 is assumed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Rating\">Rating</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/yearlyRevenue\">\n      <span class=\"h\" property=\"rdfs:label\">yearlyRevenue</span>\n      <span property=\"rdfs:comment\">The size of the business in annual revenue.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusinessAudience\">BusinessAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/yearsInOperation\">\n      <span class=\"h\" property=\"rdfs:label\">yearsInOperation</span>\n      <span property=\"rdfs:comment\">The age of the business.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusinessAudience\">BusinessAudience</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_WikiDoc\">\n      <span property=\"rdfs:label\">WikiDoc</span>\n      <span property=\"rdfs:comment\">This class contains information contributed by &lt;a href=http://wikidoc.org&gt;WikiDoc&lt;/a&gt;.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange\">\n      <span property=\"rdfs:label\">Stack Exchange</span>\n      <span property=\"rdfs:comment\">The Question/Answer types were &lt;a href=\"https://www.w3.org/wiki/WebSchemas/QASchemaResearch\"&gt;based on&lt;/a&gt; the Stack Overflow API.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_rNews\">\n      <span property=\"rdfs:label\">rNews</span>\n      <span property=\"rdfs:comment\">This class contains derivatives of IPTC rNews properties. rNews is a data model of publishing metadata with serializations currently available for RDFa as well as HTML5 Microdata. More information about the IPTC and rNews can be found at &lt;a href=http://rnews.org&gt;rnews.org&lt;/a&gt;.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_DatasetClass\">\n      <span property=\"rdfs:label\">DatasetClass</span>\n      <span property=\"rdfs:comment\">This class is based upon W3C DCAT work, and benefits from collaboration around the DCAT, ADMS and VoID vocabularies. See http://www.w3.org/wiki/WebSchemas/Datasets for full details and mappings.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsClass\">\n      <span property=\"rdfs:label\">GoodRelationsClass</span>\n      <span property=\"rdfs:comment\">This class is derived from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at &lt;a href=&quot;http://purl.org/goodrelations/&quot;&gt;http://purl.org/goodrelations/&lt;/a&gt;.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_GoodRelationsProperties\">\n      <span property=\"rdfs:label\">GoodRelationsProperties</span>\n      <span property=\"rdfs:comment\">This class contains derivatives of properties from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at &lt;a href=&quot;http://purl.org/goodrelations/&quot;&gt;http://purl.org/goodrelations/&lt;/a&gt;.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_LRMIClass\">\n      <span property=\"rdfs:label\">LRMIClass</span>\n      <span property=\"rdfs:comment\">This class is based on the work of the LRMI project, see lrmi.net for details.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/Organization\" resource=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass\">\n      <span property=\"rdfs:label\">ActionCollabClass</span>\n      <span property=\"rdfs:comment\">The schema.org Actions mechanism benefited from extensive discussions across the Web standards community around W3C, in particular from the &lt;a href=&quot;http://purl.org/hydra/&quot;&gt; Hydra project&lt;/a&gt;'s community group.</span>\n    </div>\n\n    <hr />\n\n\n\n    <h1>Reservations</h1>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Reservation\">\n      <span class=\"h\" property=\"rdfs:label\">Reservation</span>\n      <span property=\"rdfs:comment\">Describes a reservation for travel, dining or an event. Some reservations require tickets.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, restaurant reservations, flights, or rental cars, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusReservation\">\n      <span class=\"h\" property=\"rdfs:label\">BusReservation</span>\n      <span property=\"rdfs:comment\">A reservation for bus travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EventReservation\">\n      <span class=\"h\" property=\"rdfs:label\">EventReservation</span>\n      <span property=\"rdfs:comment\">A reservation for an event like a concert, sporting event, or lecture.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FlightReservation\">\n      <span class=\"h\" property=\"rdfs:label\">FlightReservation</span>\n      <span property=\"rdfs:comment\">A reservation for air travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/FoodEstablishmentReservation\">\n      <span class=\"h\" property=\"rdfs:label\">FoodEstablishmentReservation</span>\n      <span property=\"rdfs:comment\">A reservation to dine at a food-related business.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/LodgingReservation\">\n      <span class=\"h\" property=\"rdfs:label\">LodgingReservation</span>\n      <span property=\"rdfs:comment\">A reservation for lodging at a hotel, motel, inn, etc.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/RentalCarReservation\">\n      <span class=\"h\" property=\"rdfs:label\">RentalCarReservation</span>\n      <span property=\"rdfs:comment\">A reservation for a rental car.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TaxiReservation\">\n      <span class=\"h\" property=\"rdfs:label\"> TaxiReservation</span>\n      <span property=\"rdfs:comment\">A reservation for a taxi.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TrainReservation\">\n      <span class=\"h\" property=\"rdfs:label\"> TrainReservation</span>\n      <span property=\"rdfs:comment\">A reservation for train travel.<p>Note: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use http://schema.org/Offer.</p></span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReservationPackage\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationPackage</span>\n      <span property=\"rdfs:comment\">A group of multiple reservations with common values for all sub-reservations.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ReservationStatusType\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationStatusType</span>\n      <span property=\"rdfs:comment\">Enumerated status values for Reservation.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n    <div typeof=\"http://schema.org/ReservationStatusType\" resource=\"http://schema.org/ReservationCancelled\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationCancelled</span>\n      <span property=\"rdfs:comment\">The status for a previously confirmed reservation that is now cancelled.</span>\n      <span>type: <a href=\"http://schema.org/ReservationStatusType\">ReservationStatusType</a></span>\n    </div>\n    <div typeof=\"http://schema.org/ReservationStatusType\" resource=\"http://schema.org/ReservationConfirmed\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationConfirmed</span>\n      <span property=\"rdfs:comment\">The status of a confirmed reservation.</span>\n      <span>type: <a href=\"http://schema.org/ReservationStatusType\">ReservationStatusType</a></span>\n    </div>\n    <div typeof=\"http://schema.org/ReservationStatusType\" resource=\"http://schema.org/ReservationHold\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationHold</span>\n      <span property=\"rdfs:comment\">The status of a reservation on hold pending an update like credit card number or flight changes.</span>\n      <span>type: <a href=\"http://schema.org/ReservationStatusType\">ReservationStatusType</a></span>\n    </div>\n    <div typeof=\"http://schema.org/ReservationStatusType\" resource=\"http://schema.org/ReservationPending\">\n      <span class=\"h\" property=\"rdfs:label\">ReservationPending</span>\n      <span property=\"rdfs:comment\">The status of a reservation when a request has been sent, but not confirmed.</span>\n      <span>type: <a href=\"http://schema.org/ReservationStatusType\">ReservationStatusType</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/BusTrip\">\n      <span class=\"h\" property=\"rdfs:label\">Bus Trip</span>\n      <span property=\"rdfs:comment\">A trip on a commercial bus line.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/TrainTrip\">\n      <span class=\"h\" property=\"rdfs:label\">Train Trip</span>\n      <span property=\"rdfs:comment\">A trip on a commercial train line.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Flight\">\n      <span class=\"h\" property=\"rdfs:label\">Flight</span>\n      <span property=\"rdfs:comment\">An airline flight.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Airline\">\n      <span class=\"h\" property=\"rdfs:label\">Airline</span>\n      <span property=\"rdfs:comment\">An organization that provides flights for passengers.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ProgramMembership\">\n      <span class=\"h\" property=\"rdfs:label\">Program Membership</span>\n      <span property=\"rdfs:comment\">Used to describe membership in a loyalty programs (e.g. \"StarAliance\"), traveler clubs (e.g. \"AAA\"), purchase clubs (\"Safeway Club\"), etc.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Ticket\">\n      <span class=\"h\" property=\"rdfs:label\">Ticket</span>\n      <span property=\"rdfs:comment\">Used to describe a ticket to an event, a flight, a bus ride, etc.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Seat\">\n      <span class=\"h\" property=\"rdfs:label\">Seat</span>\n      <span property=\"rdfs:comment\">Used to describe a seat, such as a reserved seat in an event reservation.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Taxi\">\n      <span class=\"h\" property=\"rdfs:label\">Taxi</span>\n      <span property=\"rdfs:comment\">A taxi.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Service\">Service</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Vehicle\">\n      <span class=\"h\" property=\"rdfs:label\">Vehicle</span>\n      <span property=\"rdfs:comment\">A vehicle.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Product\">Product</a></span>\n    </div>\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Car\">\n      <span class=\"h\" property=\"rdfs:label\">Car</span>\n      <span property=\"rdfs:comment\">An automobile.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Vehicle\">Vehicle</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reservationId\">\n      <span class=\"h\" property=\"rdfs:label\">reservationId</span>\n      <span property=\"rdfs:comment\">A unique identifier for the reservation.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reservationStatus\">\n      <span class=\"h\" property=\"rdfs:label\">reservationStatus</span>\n      <span property=\"rdfs:comment\">The current status of the reservation.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ReservationStatusType\">ReservationStatusType</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reservationFor\">\n      <span class=\"h\" property=\"rdfs:label\">reservationFor</span>\n      <span property=\"rdfs:comment\">The thing -- flight, event, restaurant,etc. being reserved.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/underName\">\n      <span class=\"h\" property=\"rdfs:label\">underName</span>\n      <span property=\"rdfs:comment\">The person or organization the reservation or ticket is for.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/provider\">\n      <span class=\"h\" property=\"rdfs:label\">provider</span>\n      <span property=\"rdfs:comment\">The person or organization providing the service, reservation, or creative work. The provider may subcontract out the service.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Service\">Service</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bookingAgent\">\n      <span class=\"h\" property=\"rdfs:label\">bookingAgent</span>\n      <span property=\"rdfs:comment\">If the reservation was not booked directly through the provider, the third-party booking agent can be recorded through this property.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/bookingTime\">\n      <span class=\"h\" property=\"rdfs:label\">bookingTime</span>\n      <span property=\"rdfs:comment\">The date and time the reservation was booked.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/modifiedTime\">\n      <span class=\"h\" property=\"rdfs:label\">modifiedTime</span>\n      <span property=\"rdfs:comment\">The date and time the reservation was modified.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/programMembershipUsed\">\n      <span class=\"h\" property=\"rdfs:label\">programMembershipUsed</span>\n      <span property=\"rdfs:comment\">Any membership in a frequent flyer, hotel loyalty program, etc. being applied to the reservation.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/reservedTicket\">\n      <span class=\"h\" property=\"rdfs:label\">reservedTicket</span>\n      <span property=\"rdfs:comment\">A ticket associated with the reservation.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/totalPrice\">\n      <span class=\"h\" property=\"rdfs:label\">totalPrice</span>\n      <span property=\"rdfs:comment\">The total price for the reservation or ticket, including applicable taxes, shipping, etc.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/priceCurrency\">\n      <span class=\"h\" property=\"rdfs:label\">priceCurrency</span>\n      <span property=\"rdfs:comment\">The currency (in 3-letter ISO 4217 format) of the price or a price component, when attached to PriceSpecification and its subtypes.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Offer\">Offer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PriceSpecification\">PriceSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n<div typeof=\"rdf:Property\" resource=\"http://schema.org/membershipNumber\">\n      <span class=\"h\" property=\"rdfs:label\">membershipNumber</span>\n      <span property=\"rdfs:comment\">A unique identifier for the membership.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/programName\">\n      <span class=\"h\" property=\"rdfs:label\">programName</span>\n      <span property=\"rdfs:comment\">The program providing the membership.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/hostingOrganization\">\n      <span class=\"h\" property=\"rdfs:label\">hostingOrganization</span>\n      <span property=\"rdfs:comment\">The organization (airline, travelers' club, etc.) the membership is made with.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ProgramMembership\">ProgramMembership</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/issuedBy\">\n      <span class=\"h\" property=\"rdfs:label\">issuedBy</span>\n      <span property=\"rdfs:comment\">The organization issuing the ticket or permit.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Permit\">Permit</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Organization\">Organization</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dateIssued\">\n      <span class=\"h\" property=\"rdfs:label\">dateIssued</span>\n      <span property=\"rdfs:comment\">The date the ticket was issued.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ticketedSeat\">\n      <span class=\"h\" property=\"rdfs:label\">ticketedSeat</span>\n      <span property=\"rdfs:comment\">The seat associated with the ticket.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Seat\">Seat</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ticketNumber\">\n      <span class=\"h\" property=\"rdfs:label\">ticketNumber</span>\n      <span property=\"rdfs:comment\">The unique identifier for the ticket.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/ticketToken\">\n      <span class=\"h\" property=\"rdfs:label\">ticketToken</span>\n      <span property=\"rdfs:comment\">Reference to an asset (e.g., Barcode, QR code image or PDF) usable for entrance.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Ticket\">Ticket</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seatNumber\">\n      <span class=\"h\" property=\"rdfs:label\">seatNumber</span>\n      <span property=\"rdfs:comment\">The location of the reserved seat (e.g., 27).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Seat\">Seat</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seatRow\">\n      <span class=\"h\" property=\"rdfs:label\">seatRow</span>\n      <span property=\"rdfs:comment\">The row location of the reserved seat (e.g., B).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Seat\">Seat</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seatSection\">\n      <span class=\"h\" property=\"rdfs:label\">seatSection</span>\n      <span property=\"rdfs:comment\">The section location of the reserved seat (e.g. Orchestra).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Seat\">Seat</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/seatingType\">\n      <span class=\"h\" property=\"rdfs:label\">seatingType</span>\n      <span property=\"rdfs:comment\">The type/class of the seat.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Seat\">Seat</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/subReservation\">\n      <span class=\"h\" property=\"rdfs:label\">subReservation</span>\n      <span property=\"rdfs:comment\">The individual reservations included in the package. Typically a repeated property.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/ReservationPackage\">ReservationPackage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Reservation\">Reservation</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/boardingGroup\">\n      <span class=\"h\" property=\"rdfs:label\">boardingGroup</span>\n      <span property=\"rdfs:comment\">The airline-specific indicator of boarding order / preference.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FlightReservation\">ReservationPackage</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/flightNumber\">\n      <span class=\"h\" property=\"rdfs:label\">flightNumber</span>\n      <span property=\"rdfs:comment\">The unique identifier for a flight, not including the airline IATA code. For example, if describing United flight 110, the flightNumber is '110'. The IATA code can be set on the Airline.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n<!--\npostponing for 1.6.\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/operator\">\n      <span class=\"h\" property=\"rdfs:label\">operator</span>\n      <span property=\"rdfs:comment\">The operating organization, if different from the provider. A subcontractor who provides the service or flight is listed here.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Airline\">Airline</a></span>\n    </div>\n -->\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureTime\">\n      <span class=\"h\" property=\"rdfs:label\">departureTime</span>\n      <span property=\"rdfs:comment\">The expected departure time.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalTime\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalTime</span>\n      <span property=\"rdfs:comment\">The expected arrival time.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n        <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureAirport\">\n      <span class=\"h\" property=\"rdfs:label\">departureAirport</span>\n      <span property=\"rdfs:comment\">The airport where the flight originates.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Airport\">Airport</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalAirport\">\n      <span class=\"h\" property=\"rdfs:label\">departureAirport</span>\n      <span property=\"rdfs:comment\">The airport where the flight terminates.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Airport\">Airport</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureGate\">\n      <span class=\"h\" property=\"rdfs:label\">departureGate</span>\n      <span property=\"rdfs:comment\">Identifier of the flight's departure gate.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalGate\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalGate</span>\n      <span property=\"rdfs:comment\">Identifier of the flight's arrival gate.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureTerminal\">\n      <span class=\"h\" property=\"rdfs:label\">departureTerminal</span>\n      <span property=\"rdfs:comment\">Identifier of the flight's departure terminal.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalTerminal\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalTerminal</span>\n      <span property=\"rdfs:comment\">Identifier of the flight's arrival terminal.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/aircraft\">\n      <span class=\"h\" property=\"rdfs:label\">aircraft</span>\n      <span property=\"rdfs:comment\">The kind of aircraft (e.g., \"Boeing 747\").</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Vehicle\">Vehicle</a></span>\n</div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/mealService\">\n      <span class=\"h\" property=\"rdfs:label\">mealService</span>\n      <span property=\"rdfs:comment\">Description of the meals that will be provided or available for purchase.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/estimatedFlightDuration\">\n      <span class=\"h\" property=\"rdfs:label\">estimatedFlightDuration</span>\n      <span property=\"rdfs:comment\">The estimated time the flight will take.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Duration\">Duration</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/flightDistance\">\n      <span class=\"h\" property=\"rdfs:label\">flightDistance</span>\n      <span property=\"rdfs:comment\">The distance of the flight.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Distance\">Distance</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/webCheckinTime\">\n      <span class=\"h\" property=\"rdfs:label\">webCheckinTime</span>\n      <span property=\"rdfs:comment\">The time when a passenger can check into the flight online.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Flight\">Flight</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/iataCode\">\n      <span class=\"h\" property=\"rdfs:label\">iataCode</span>\n      <span property=\"rdfs:comment\">IATA identifier for an airline or airport</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Airline\">Airline</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Airport\">Airport</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/icaoCode\">\n      <span class=\"h\" property=\"rdfs:label\">iacoCode</span>\n      <span property=\"rdfs:comment\">IACO identifier for an airport.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Airport\">Airport</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/partySize\">\n      <span class=\"h\" property=\"rdfs:label\">partySize</span>\n      <span property=\"rdfs:comment\">Number of people the reservation should accommodate.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/FoodEstablishmentReservation\">FoodEstablishmentReservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TaxiReservation\">TaxiReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trainNumber\">\n      <span class=\"h\" property=\"rdfs:label\">trainNumber</span>\n      <span property=\"rdfs:comment\">The unique identifier for the train.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/trainName\">\n      <span class=\"h\" property=\"rdfs:label\">trainName</span>\n      <span property=\"rdfs:comment\">The name of the train (e.g. The Orient Express).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureStation\">\n      <span class=\"h\" property=\"rdfs:label\">departureStation</span>\n      <span property=\"rdfs:comment\">The station from which the train departs.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/TrainStation\">TrainStation</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalStation\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalStation</span>\n      <span property=\"rdfs:comment\">The station where the train trip ends.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/TrainStation\">TrainStation</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departurePlatform\">\n      <span class=\"h\" property=\"rdfs:label\">departurePlatform</span>\n      <span property=\"rdfs:comment\">The platform from which the train departs.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalPlatform\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalPlatform</span>\n      <span property=\"rdfs:comment\">The platform where the train arrives.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TrainTrip\">TrainTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/busNumber\">\n      <span class=\"h\" property=\"rdfs:label\">busNumber</span>\n      <span property=\"rdfs:comment\">The unique identifier for the bus.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/busName\">\n      <span class=\"h\" property=\"rdfs:label\">busName</span>\n      <span property=\"rdfs:comment\">The name of the bus (e.g. Bolt Express).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/departureBusStop\">\n      <span class=\"h\" property=\"rdfs:label\">departureBusStop</span>\n      <span property=\"rdfs:comment\">The stop or station from which the bus departs.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusStation\">BusStation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusStop\">BusStop</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/arrivalBusStop\">\n      <span class=\"h\" property=\"rdfs:label\">arrivalBusStop</span>\n      <span property=\"rdfs:comment\">The stop or station from which the bus arrives.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/BusTrip\">BusTrip</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusStation\">BusStation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/BusStop\">BusStop</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/pickupLocation\">\n      <span class=\"h\" property=\"rdfs:label\">pickupLocation</span>\n      <span property=\"rdfs:comment\">Where a taxi will pick up a passenger or a rental car can be picked up.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentalCarReservation\">RentalCarReservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TaxiReservation\">TaxiReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dropoffLocation\">\n      <span class=\"h\" property=\"rdfs:label\">dropoffLocation</span>\n      <span property=\"rdfs:comment\">Where a rental car can be dropped off.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentalCarReservation\">RentalCarReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Place\">Place</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/pickupTime\">\n      <span class=\"h\" property=\"rdfs:label\">pickupTime</span>\n      <span property=\"rdfs:comment\">When a taxi will pickup a passenger or a rental car can be picked up.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentalCarReservation\">RentalCarReservation</a></span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/TaxiReservation\">TaxiReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/dropoffTime\">\n      <span class=\"h\" property=\"rdfs:label\">dropoffTime</span>\n      <span property=\"rdfs:comment\">When a rental car can be dropped off.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/RentalCarReservation\">RentalCarReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/checkinTime\">\n      <span class=\"h\" property=\"rdfs:label\">checkinTime</span>\n      <span property=\"rdfs:comment\">The earliest someone may check into a lodging establishment.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/checkoutTime\">\n      <span class=\"h\" property=\"rdfs:label\">checkoutTime</span>\n      <span property=\"rdfs:comment\">The latest someone may check out of a lodging establishment.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/DateTime\">DateTime</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lodgingUnitType\">\n      <span class=\"h\" property=\"rdfs:label\">lodgingUnitType</span>\n      <span property=\"rdfs:comment\">Textual description of the unit type (including suite vs. room, size of bed, etc.).</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QualitativeValue\">QualitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lodgingUnitDescription\">\n      <span class=\"h\" property=\"rdfs:label\">lodgingUnitDescription</span>\n      <span property=\"rdfs:comment\">A full description of the lodging unit.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numAdults\">\n      <span class=\"h\" property=\"rdfs:label\">numAdults</span>\n      <span property=\"rdfs:comment\">The number of adults staying in the unit.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/numChildren\">\n      <span class=\"h\" property=\"rdfs:label\">numChildren</span>\n      <span property=\"rdfs:comment\">The number of children staying in the unit.</span>\n      <span>domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/LodgingReservation\">LodgingReservation</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/QuantitativeValue\">QuantitativeValue</a></span>\n    </div>\n\n\n    <hr />\n\n    <h1>Questions and Answers (QA) and FAQ schema</h1>\n    <p>Enrichment of Schema.org to enable annotation of questions and answers content, as <a href=\"http://lists.w3.org/Archives/Public/public-vocabs/2014Jan/0200.html\">discussed</a>\non public-vocabs@w3.org.</p>\n    <p>See <a href=\"http://www.w3.org/wiki/WebSchemas/QASchemaResearch\">wiki</a> for details.</p>\n\n    <!--  New QAPage class. -->\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/QAPage\">\n      <span class=\"h\" property=\"rdfs:label\">QAPage</span>\n      <span property=\"rdfs:comment\">A QAPage is a WebPage focussed on a specific Question and its Answer(s), e.g. in a question answering site or documenting Frequently Asked Questions (FAQs).</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/WebPage\">WebPage</a></span>\n    </div>\n\n    <!-- extend range of comment property to include Comment type, not just the old UserComments -->\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/comment\">\n      <link property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Comment\" />\n    </div>\n\n    <!--  New Question class. -->\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Question\">\n      <span class=\"h\" property=\"rdfs:label\">Question</span>\n      <span property=\"rdfs:comment\">A specific question - e.g. from a user seeking answers online, or collected in a Frequently Asked Questions (FAQ) document.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange\">Stack Overflow</a></span>\n    </div>\n    <!--  New properties for the new Question class. -->\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/upvoteCount\">\n      <span class=\"h\" property=\"rdfs:label\">upvoteCount</span>\n      <span property=\"rdfs:comment\">The number of upvotes this question has received from the community.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Comment\">Comment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/downvoteCount\">\n      <span class=\"h\" property=\"rdfs:label\">downvoteCount</span>\n      <span property=\"rdfs:comment\">The number of downvotes this question has received from the community.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Comment\">Comment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n\n<!-- dropping for now, per http://lists.w3.org/Archives/Public/public-vocabs/2014Jan/0200.html\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/viewCount\">\n      <span class=\"h\" property=\"rdfs:label\">viewCount</span>\n      <span property=\"rdfs:comment\">The number of times this question has viewed.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n-->\n\n<!-- dropping lastEditor, at least for now.\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/lastEditor\">\n      <span class=\"h\" property=\"rdfs:label\">lastEditor</span>\n      <span property=\"rdfs:comment\">The user who last edited this question or answer.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Person\">Person</a></span>\n    </div>\n-->\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/answerCount\">\n      <span class=\"h\" property=\"rdfs:label\">answerCount</span>\n      <span property=\"rdfs:comment\">The number of answers this question has received.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/commentCount\">\n      <span class=\"h\" property=\"rdfs:label\">commentCount</span>\n      <span property=\"rdfs:comment\">The number of comments this CreativeWork (e.g. Article, Question or Answer) has received. This is most applicable to works published in Web sites with commenting system; additional comments may exist elsewhere.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Integer\">Integer</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/acceptedAnswer\">\n      <span class=\"h\" property=\"rdfs:label\">acceptedAnswer</span>\n      <span property=\"rdfs:comment\">The answer that has been accepted as best, typically on a Question/Answer site. Sites vary in their selection mechanisms, e.g. drawing on community opinion and/or the view of the Question author.</span>\n      <link property=\"rdfs:subPropertyOf\" href=\"http://schema.org/suggestedAnswer\" />\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n    </div>\n\n    <!--  New Answer class. -->\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Answer\">\n      <span class=\"h\" property=\"rdfs:label\">Answer</span>\n      <span property=\"rdfs:comment\">An answer offered to a question; perhaps correct, perhaps opinionated or wrong.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n      <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_QAStackExchange\">Stack Overflow</a></span>\n    </div>\n    <!--  New properties for the new Answer class. -->\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/parentItem\">\n      <span class=\"h\" property=\"rdfs:label\">parentItem</span>\n      <span property=\"rdfs:comment\">The parent of a question, answer or item in general.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Comment\">Comment</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n    </div>\n\n\n\n   <!-- associations -->\n\n<div typeof=\"rdf:Property\" resource=\"http://schema.org/suggestedAnswer\">\n <span class=\"h\" property=\"rdfs:label\">suggestedAnswer</span>\n <span property=\"rdfs:comment\">An answer (possibly one of several, possibly incorrect) to a Question, e.g. on a Question/Answer site.</span>\n <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Question\">Question</a></span>\n <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Answer\">Answer</a></span>\n</div>\n\n\n <hr />\n\n <h1>EmailMessage</h1>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EmailMessage\">\n      <span class=\"h\" property=\"rdfs:label\">EmailMessage</span>\n      <span property=\"rdfs:comment\">An email message.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n  <hr />\n\n\n <h1>Potential Actions</h1>\n\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/actionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">actionStatus</span>\n      <span property=\"rdfs:comment\">Indicates the current disposition of the Action.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/ActionStatusType\">ActionStatusType</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/ActionStatusType\">\n      <span class=\"h\" property=\"rdfs:label\">ActionStatusType</span>\n      <span property=\"rdfs:comment\">The status of an Action.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Enumeration\">Enumeration</a></span>\n    </div>\n\n    <div typeof=\"http://schema.org/ActionStatusType\" resource=\"http://schema.org/PotentialActionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">PotentialActionStatus</span>\n      <span property=\"rdfs:comment\">A description of an action that is supported.</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ActionStatusType\" resource=\"http://schema.org/ActiveActionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">ActiveActionStatus</span>\n      <span property=\"rdfs:comment\">An in-progress action (e.g, while watching the movie, or driving to a location).</span>\n    </div>\n\n    <div typeof=\"http://schema.org/ActionStatusType\" resource=\"http://schema.org/CompletedActionStatus\">\n      <span class=\"h\" property=\"rdfs:label\">CompletedActionStatus</span>\n      <span property=\"rdfs:comment\">An action that has already taken place.</span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/potentialAction\">\n      <span class=\"h\" property=\"rdfs:label\">potentialAction</span>\n      <span property=\"rdfs:comment\">Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/EntryPoint\">\n      <span class=\"h\" property=\"rdfs:label\">EntryPoint</span>\n      <span property=\"rdfs:comment\">An entry point, within some Web-based protocol.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n      <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass\">Action collaborations</a></span>\n    </div>\n\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/target\">\n      <span class=\"h\" property=\"rdfs:label\">target</span>\n      <span property=\"rdfs:comment\">Indicates a target EntryPoint for an Action.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Action\">Action</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/httpMethod\">\n      <span class=\"h\" property=\"rdfs:label\">httpMethod</span>\n      <span property=\"rdfs:comment\">An HTTP method that specifies the appropriate HTTP method for a request to an HTTP EntryPoint. Values are capitalized strings as used in HTTP.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/encodingType\">\n      <span class=\"h\" property=\"rdfs:label\">encodingType</span>\n      <span property=\"rdfs:comment\">The supported encoding type(s) for an EntryPoint request.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/contentType\"> <!-- note that we have fileFormat already, re MIME. -->\n      <span class=\"h\" property=\"rdfs:label\">contentType</span>\n      <span property=\"rdfs:comment\">The supported content type(s) for an EntryPoint response.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/application\">\n      <span class=\"h\" property=\"rdfs:label\">application</span>\n      <span property=\"rdfs:comment\">An application that can complete the request.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/SoftwareApplication\">SoftwareApplication</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PropertyValueSpecification\">\n      <span class=\"h\" property=\"rdfs:label\">PropertyValueSpecification</span>\n      <span property=\"rdfs:comment\">A Property value specification.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n      <span>Source:  <a property=\"dc:source\" href=\"http://www.w3.org/wiki/WebSchemas/SchemaDotOrgSources#source_ActionCollabClass\">Action collaborations</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/urlTemplate\">\n      <span class=\"h\" property=\"rdfs:label\">urlTemplate</span>\n      <span property=\"rdfs:comment\">An url template (RFC6570) that will be used to construct the target of the execution of the action.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/EntryPoint\">EntryPoint</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueName\">\n     <span class=\"h\" property=\"rdfs:label\">valueName</span>\n     <span property=\"rdfs:comment\">Indicates the name of the PropertyValueSpecification to be used in URL templates and form encoding in a manner analogous to HTML's input@name.</span>\n     <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n     <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueRequired\">\n      <span class=\"h\" property=\"rdfs:label\">valueRequired</span>\n      <span property=\"rdfs:comment\">Whether the property must be filled in to complete the action.  Default is false.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/defaultValue\">\n      <span class=\"h\" property=\"rdfs:label\">defaultValue</span>\n      <span property=\"rdfs:comment\">The default value of the input.  For properties that expect a literal, the default is a literal value, for properties that expect an object, it's an ID reference to one of the current values.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Thing\">Thing</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/readonlyValue\">\n      <span class=\"h\" property=\"rdfs:label\">readonlyValue</span>\n      <span property=\"rdfs:comment\">Whether or not a property is mutable.  Default is false. Specifying this for a property that also has a value makes it act similar to a \"hidden\" input in an HTML form.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/multipleValues\">\n      <span class=\"h\" property=\"rdfs:label\">multipleValues</span>\n      <span property=\"rdfs:comment\">Whether multiple values are allowed for the property.  Default is false.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Boolean\">Boolean</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueMinLength\">\n      <span class=\"h\" property=\"rdfs:label\">valueMinLength</span>\n      <span property=\"rdfs:comment\">Specifies the minimum allowed range for number of characters in a literal value.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valueMaxLength\">\n      <span class=\"h\" property=\"rdfs:label\">valueMaxLength</span>\n      <span property=\"rdfs:comment\">Specifies the allowed range for number of characters in a literal value.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/valuePattern\">\n      <span class=\"h\" property=\"rdfs:label\">valuePattern</span>\n      <span property=\"rdfs:comment\">Specifies a regular expression for testing literal values according to the HTML spec.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <!-- note: see also minValue, maxValue which are defined elsewhere and shared with other schema structures. -->\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/stepValue\">\n      <span class=\"h\" property=\"rdfs:label\">stepValue</span>\n      <span property=\"rdfs:comment\">The stepValue attribute indicates the granularity that is expected (and required) of the value in a PropertyValueSpecification.</span>\n      <span>Domain: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PropertyValueSpecification\">PropertyValueSpecification</a></span>\n      <span>Range: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Number\">Number</a></span>\n    </div>\n\n    <h1>workPerformed</h1>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/workPerformed\">\n      <span class=\"h\" property=\"rdfs:label\">workPerformed</span>\n      <span property=\"rdfs:comment\">A work performed in some event, for example a play performed in a TheaterEvent.</span>\n      <span>domainIncludes: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/Event\">Event</a></span>\n      <span>rangeIncludes: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/CreativeWork\">CreativeWork</a></span>\n    </div>\n\n    <h1>Role</h1>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/Role\">\n      <span class=\"h\" property=\"rdfs:label\">Role</span>\n      <span property=\"rdfs:comment\">Represents additional information about a relationship or property. For example a Role can be used to say that a 'member' role linking some SportsTeam to a player occurred during a particular time period. Or that a Person's 'actor' role in a Movie was for some particular characterName. Such properties can be attached to a Role entity, which is then associated with the main entities using ordinary properties like 'member' or 'actor'.\n    </span>\n    <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Intangible\">Intangible</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/PerformanceRole\">\n      <span class=\"h\" property=\"rdfs:label\">PerformanceRole</span>\n      <span property=\"rdfs:comment\">A PerformanceRole is a Role that some entity places with regard to a theatrical performance, e.g. in a Movie, TVSeries etc.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Role\">Role</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/characterName\">\n      <span class=\"h\" property=\"rdfs:label\">characterName</span>\n      <span property=\"rdfs:comment\">The name of a character played in some acting or performing role, i.e. in a PerformanceRole.</span>\n      <span>domainIncludes: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/PerformanceRole\">PerformanceRole</a></span>\n      <span>rangeIncludes: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n    </div>\n\n    <div typeof=\"rdfs:Class\" resource=\"http://schema.org/OrganizationRole\">\n      <span class=\"h\" property=\"rdfs:label\">OrganizationRole</span>\n      <span property=\"rdfs:comment\">A subclass of Role used to describe roles within organizations.</span>\n      <span>Subclass of: <a property=\"rdfs:subClassOf\" href=\"http://schema.org/Role\">Role</a></span>\n    </div>\n\n    <div typeof=\"rdf:Property\" resource=\"http://schema.org/namedPosition\">\n      <span class=\"h\" property=\"rdfs:label\">namedPosition</span>\n      <span property=\"rdfs:comment\">A position played, performed or filled by a person or organization, as part of an organization. For example, an athlete in a SportsTeam might play in the position named 'Quarterback'.</span>\n      <span>domainIncludes: <a property=\"http://schema.org/domainIncludes\" href=\"http://schema.org/OrganizationRole\">OrganizationRole</a></span>\n      <span>rangeIncludes: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/Text\">Text</a></span>\n      <span>rangeIncludes: <a property=\"http://schema.org/rangeIncludes\" href=\"http://schema.org/URL\">URL</a></span>\n    </div>\n\n  </body>\n</html>\n"
  },
  {
    "path": "script/gen_context",
    "content": "#!/usr/bin/env ruby\n# Generate a context for schema.org from the RDFS definition.\n# Include the RDFS definition recursed\nrequire 'rubygems'\nrequire \"bundler/setup\"\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nbegin\n  require 'linkeddata'\nrescue LoadError\nend\nrequire 'json/ld'\nrequire 'getoptlong'\nrequire 'rdf/rdfa'\nrequire 'json/ld'\n\noptions = {\n  output: STDOUT,\n  prefixes: {}\n}\n\nOPT_ARGS = [\n  [\"--body\",          GetoptLong::NO_ARGUMENT,      \"Include the vocabulary definition in the body of the document\"],\n  [\"--hierarchical\",  GetoptLong::NO_ARGUMENT,      \"Create a hierachy using 'children' as reverse of rdfs:subClassOf\"],\n  [\"--initial\",       GetoptLong::REQUIRED_ARGUMENT,\"Initial context to load, overrides default\"],\n  [\"--language\",      GetoptLong::REQUIRED_ARGUMENT,\"Default language for vocabulary\"],\n  [\"--output\", \"-o\",  GetoptLong::REQUIRED_ARGUMENT,\"Output to the specified file path\"],\n  [\"--prefix\",        GetoptLong::REQUIRED_ARGUMENT,\"space-separated prefix uri combination\"],\n  [\"--quiet\",         GetoptLong::NO_ARGUMENT,      \"Supress most output other than progress indicators\"],\n  [\"--verbose\",       GetoptLong::NO_ARGUMENT,      \"Detail on execution\"],\n  [\"--vocab\",         GetoptLong::REQUIRED_ARGUMENT,\"Set context @vocab to specified URI\"],\n  [\"--help\", \"-?\",    GetoptLong::NO_ARGUMENT,      \"This message\"]\n]\ndef usage\n  STDERR.puts %{Usage: #{$0} [options] URL ...}\n  width = OPT_ARGS.map do |o|\n    l = o.first.length\n    l += o[1].length + 2 if o[1].is_a?(String)\n    l\n  end.max\n  OPT_ARGS.each do |o|\n    s = \"  %-*s  \" % [width, (o[1].is_a?(String) ? \"#{o[0,2].join(', ')}\" : o[0])]\n    s += o.last\n    STDERR.puts s\n  end\n  exit(1)\nend\n\nbase_context = ::JSON.parse %({\n  \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n  \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n  \"rdfs:domain\": {\"@type\": \"@id\"},\n  \"rdfs:range\": {\"@type\": \"@id\"},\n  \"rdfs:subClassOf\": {\"@type\": \"@id\"},\n  \"rdfs:subPropertyOf\": {\"@type\": \"@id\"},\n  \"owl\": \"http://www.w3.org/2002/07/owl#\",\n  \"owl:equivalentClass\": {\"@type\": \"@vocab\"},\n  \"owl:equivalentProperty\": {\"@type\": \"@vocab\"},\n  \"owl:oneOf\": {\"@container\": \"@list\", \"@type\": \"@vocab\"},\n  \"owl:imports\": {\"@type\": \"@id\"},\n  \"owl:versionInfo\": {\"@type\": \"xsd:string\", \"@language\": null},\n  \"owl:inverseOf\": {\"@type\": \"@vocab\"}\n})\n\nopts = GetoptLong.new(*OPT_ARGS.map {|o| o[0..-2]})\n\nopts.each do |opt, arg|\n  case opt\n  when '--body'         then options[:include_body] = true\n  when '--initial'      then base_context = ::JSON.parse(File.read(arg))\n  when '--hierarchical' then options[:hier] = true\n  when '--language'     then options[:language] = arg\n  when '--output'       then options[:output] = File.open(arg, \"w\")\n  when '--quiet'        then options[:quiet] = true\n  when '--prefix'       then pfx,uri = arg.split(' '); options[:prefixes][pfx.to_sym] = uri\n  when '--vocab'        then options[:vocab] = arg\n  when '--help'         then usage\n  end\nend\n\n# Load vocabulary\ngraph = RDF::Graph.load(ARGV[0])\n\ncontext = JSON::LD::Context.new(**options).\n  parse(base_context).\n  from_vocabulary(graph)\n\n# Simply serialize with the generated context\nif options[:hier]\n  STDERR.puts \"Hierarchical implies adding body\" unless options[:include_body]\n\n  class_map = {}\n  property_map = {}\n  json = JSON::LD::API.fromRDF(graph) do |expanded|\n    JSON::LD::API.compact(expanded, context) do |compacted|\n      compacted['@graph'].each do |obj|\n        #next if type_exclusion.include?(obj['name'])\n        if obj['@type'].include?(\"rdfs:Class\")\n          class_map[obj['@id']] = obj\n        elsif obj['@type'].include?(\"rdf:Property\")\n          property_map[obj['@id']] = obj\n        end\n      end\n    end\n  end\n\n  thing = class_map['schema:Thing']\n  datatype = class_map['schema:DataType']\n\n  # Build class hierarchy\n  class_map.each do |id, obj|\n    [obj['rdfs:subClassOf']].flatten.compact.each do |super_class|\n      so = class_map[super_class]\n      #next if so.nil?\n      raise \"super class not found: #{super_class}\" if so.nil?\n      (so['children'] ||= []) << obj\n    end\n  end\n\n  # Add properties to classes\n  property_map.each do |id, obj|\n    [obj['domainIncludes']].flatten.compact.each do |domain|\n      dom = class_map[domain]\n      #next if dom.nil?\n      raise \"domain not found: #{domain}\" if dom.nil?\n      (dom['properties'] ||= []) << obj\n    end\n  end\n\n  result = {\n    \"@context\" => [context.serialize['@context'], {\n      \"children\" => {\"@reverse\" => \"rdfs:subClassOf\"},\n      \"properties\" => {\"@reverse\" => \"schema:domainIncludes\"}\n      }],\n    \"@graph\" => [thing, datatype]\n  }\n\n  options[:output].puts(result.to_json(JSON::LD::JSON_STATE))\nelsif options[:include_body]\n  JSON::LD::Writer.new(options[:output], context: context, standard_prefixes: true) {|w| w << graph}\nelse\n  options[:output].puts(context.serialize.to_json(JSON::LD::JSON_STATE))\nend\n\n#object_map = {}\n#\n## Extract IDs\n#RDF::Repository.load(\"http://schema.org/docs/schema_org_rdfa.html\") do |repo|\n#  JSON::LD::API.fromRDF(repo) do |expanded|\n#    JSON::LD::API.compact(expanded, context) do |compacted|\n#      compacted['@graph'].each do |obj|\n#        next if type_exclusion.include?(obj['name'])\n#        object_map[obj['@id']] = obj if obj['@type'] == \"rdfs:Class\"\n#      end\n#    end\n#  end\n#end\n#\n#thing = object_map['schema:Thing']\n#\n## Build type hierarchy\n#object_map.each do |id, obj|\n#  [obj['rdfs:subClassOf']].flatten.compact.each do |super_class|\n#    so = object_map[super_class]\n#    next if so.nil?\n#    raise \"super class not found: #{super_class}\" if so.nil?\n#    (so['children'] ||= []) << obj\n#  end\n#end\n#\n#context = context.merge({\"children\" => {\"@reverse\" => \"rdfs:subClassOf\"}})\n#context = {\"@context\" => context}\n#puts context.merge(thing).to_json(JSON::LD::JSON_STATE)"
  },
  {
    "path": "script/parse",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\nrequire \"bundler/setup\"\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nrequire 'rdf/turtle'\nbegin\n  require 'linkeddata'\nrescue LoadError\nend\nrequire 'logger'\nrequire 'json/ld'\nrequire 'getoptlong'\nrequire 'open-uri'\nrequire 'ruby-prof'\n\ndef run(input, options)\n  if options[:profile]\n    output_dir = File.expand_path(\"../../doc/profiles/#{File.basename __FILE__, \".rb\"}\", __FILE__)\n    FileUtils.mkdir_p(output_dir)\n    profile = RubyProf::Profile.new\n    profile.exclude_methods!(Array, :each, :map)\n    profile.exclude_method!(Hash, :each)\n    profile.exclude_method!(Kernel, :require)\n    profile.exclude_method!(Object, :run)\n    profile.exclude_common_methods!\n    profile.start\n    run(input, **options.merge(profile: false))\n    result = profile.stop\n    \n    # Print a graph profile to text\n    printer = RubyProf::MultiPrinter.new(result)\n    printer.print(path: output_dir, profile: \"profile\")\n    puts \"output saved in #{output_dir}\"\n    return\n  end\n  reader_class = RDF::Reader.for(options[:input_format].to_sym)\n  raise \"Reader not found for #{options[:input_format]}\" unless reader_class\n\n  start = Time.new\n  if options[:flatten]\n    output = JSON::LD::API.flatten(input, options.delete(:context), **options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    puts \"Flattened in #{secs} seconds.\"\n  elsif options[:expand]\n    options = options.merge(expandContext: options.delete(:context)) if options.key?(:context)\n    output = JSON::LD::API.expand(input, **options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    puts \"Expanded in #{secs} seconds.\"\n  elsif options[:compact]\n    output = JSON::LD::API.compact(input, options[:context], **options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    puts \"Compacted in #{secs} seconds.\"\n  elsif options[:frame]\n    output = JSON::LD::API.frame(input, options[:frame], **options)\n    secs = Time.new - start\n    options[:output].puts output.to_json(JSON::LD::JSON_STATE)\n    puts \"Framed in #{secs} seconds.\"\n  else\n    r = reader_class.new(input, **options[:parser_options])\n    if options[:output_format] == :none\n      num = 0\n      r.each_statement { num += 1 } # Eat statements\n      secs = Time.new - start\n    else\n      g = RDF::Repository.new << r\n      secs = Time.new - start\n      num = g.count\n      parser_options = options[:parser_options].merge(prefixes: r.prefixes, standard_prefixes: true)\n      options[:output].puts g.dump(options[:output_format], **parser_options)\n      puts\n    end\n    puts \"Parsed #{num} statements in #{secs} seconds @ #{num/secs} statements/second.\"\n  end\nrescue\n  fname = input.respond_to?(:path) ? input.path : \"-stdin-\"\n  STDERR.puts(\"Error in #{fname}\")\n  raise\nend\n\nlogger = Logger.new(STDERR)\nlogger.level = Logger::WARN\nlogger.formatter = lambda {|severity, datetime, progname, msg| \"#{severity}: #{msg}\\n\"}\n\nparser_options = {\n  base:     nil,\n  progress: false,\n  profile:  false,\n  validate: false,\n  logger:   logger,\n}\n\noptions = {\n  parser_options: parser_options,\n  output:        STDOUT,\n  output_format: :turtle,\n  input_format:  :jsonld,\n  logger:        logger,\n}\ninput = nil\n\nOPT_ARGS = [\n  [\"--debug\", GetoptLong::NO_ARGUMENT,                \"Debug output\"],\n  [\"--compact\", GetoptLong::NO_ARGUMENT,              \"Compact input, using context\"],\n  [\"--context\", GetoptLong::REQUIRED_ARGUMENT,        \"Context used for compaction\"],\n  [\"--execute\", \"-e\", GetoptLong::REQUIRED_ARGUMENT,  \"Use option argument as the patch input\"],\n  [\"--expand\", GetoptLong::NO_ARGUMENT,               \"Expand input\"],\n  [\"--expanded\", GetoptLong::NO_ARGUMENT,             \"Input is already expanded\"],\n  [\"--flatten\", GetoptLong::NO_ARGUMENT,              \"Flatten input\"],\n  [\"--format\", GetoptLong::REQUIRED_ARGUMENT,         \"Output format, for RDF output\"],\n  [\"--frame\", GetoptLong::REQUIRED_ARGUMENT,          \"Frame input, option value is frame to use\"],\n  [\"--help\", \"-?\", GetoptLong::NO_ARGUMENT,           \"This message\"],\n  [\"--input-format\", GetoptLong::REQUIRED_ARGUMENT,   \"Format of input, if not JSON-LD\"],\n  [\"--output\", \"-o\", GetoptLong::REQUIRED_ARGUMENT,   \"Where to store output (default STDOUT)\"],\n  [\"--profile\", GetoptLong::NO_ARGUMENT,              \"Run profiler with output to doc/profiles/\"],\n  [\"--quiet\", GetoptLong::NO_ARGUMENT,                \"Reduce output\"],\n  [\"--rdfstar\", GetoptLong::NO_ARGUMENT,              \"RDF-star mode\"],\n  [\"--stream\", GetoptLong::NO_ARGUMENT,               \"Streaming reader/writer\"],\n  [\"--uri\", GetoptLong::REQUIRED_ARGUMENT,            \"Run with argument value as base\"],\n  [\"--validate\", GetoptLong::NO_ARGUMENT,             \"Validate input\"],\n]\n\nopts = GetoptLong.new(*OPT_ARGS.map {|o| o[0..-2]})\n\ndef usage\n  STDERR.puts %{Usage: #{$0} [options] file ...}\n  width = OPT_ARGS.map do |o|\n    l = o.first.length\n    l += o[1].length + 2 if o[1].is_a?(String)\n    l\n  end.max\n  OPT_ARGS.each do |o|\n    s = \"  %-*s  \" % [width, (o[1].is_a?(String) ? \"#{o[0,2].join(', ')}\" : o[0])]\n    s += o.last\n    STDERR.puts s\n  end\n  exit(1)\nend\n\nopts.each do |opt, arg|\n  case opt\n  when '--debug'        then logger.level = Logger::DEBUG\n  when '--compact'      then options[:compact] = true\n  when '--context'      then options[:context] = arg\n  when '--execute'      then input = arg\n  when '--expand'       then options[:expand] = true\n  when '--expanded'     then options[:expanded] = true\n  when '--flatten'      then options[:flatten] = true\n  when '--format'       then options[:output_format] = arg.to_sym\n  when '--frame'        then options[:frame] = arg\n  when \"--help\"         then usage\n  when '--input-format' then options[:input_format] = arg.to_sym\n  when '--output'       then options[:output] = File.open(arg, \"w\")\n  when '--profile'      then options[:profile] = true\n  when '--quiet'\n    options[:quiet] = true\n    logger.level = Logger::FATAL\n  when '--rdfstar'      then parser_options[:rdfstar] = true\n  when '--stream'       then parser_options[:stream] = true\n  when '--uri'          then parser_options[:base] = arg\n  when '--validate'     then parser_options[:validate] = true\n  end\nend\n\nif ARGV.empty?\n  s = input ? input : $stdin.read\n  run(StringIO.new(s), options)\nelse\n  ARGV.each do |test_file|\n    io = Kernel.open(test_file)\n    io.define_singleton_method(:content_type) {\"text/html\"} if test_file.end_with?('.html')\n    run(io, options)\n  end\nend\nputs\n"
  },
  {
    "path": "script/tc",
    "content": "#!/usr/bin/env ruby\nrequire 'rubygems'\n$:.unshift(File.expand_path(\"../../lib\", __FILE__))\nrequire \"bundler/setup\"\nrequire 'logger'\nrequire 'json/ld'\n#require 'linkeddata'\nrequire 'rdf/isomorphic'\nrequire File.expand_path(\"../../spec/spec_helper\", __FILE__)\nrequire File.expand_path(\"../../spec/suite_helper\", __FILE__)\nrequire 'getoptlong'\n\nASSERTOR = \"http://greggkellogg.net/foaf#me\"\nRUN_TIME = Time.now\n\nMultiJson.use(:json_gem) # because of differences in parsing with OJ\n\ndef earl_preamble(options)\n  options[:output].write File.read(File.expand_path(\"../../etc/doap.ttl\", __FILE__))\n  options[:output].puts %(\n<https://rubygems.org/gems/json-ld> doap:release [\n  doap:name \"json-ld-#{JSON::LD::VERSION}\";\n  doap:revision \"#{JSON::LD::VERSION}\";\n  doap:created \"#{File.mtime(File.expand_path('../../VERSION', __FILE__)).strftime('%Y-%m-%d')}\"^^xsd:date;\n] .\n<> foaf:primaryTopic <https://rubygems.org/gems/json-ld>;\n  dc:issued \"#{RUN_TIME.xmlschema}\"^^xsd:dateTime;\n  foaf:maker <#{ASSERTOR}> .\n\n<#{ASSERTOR}> a earl:Assertor;\n  foaf:title \"Implementor\" .\n)\nend\n\ndef compare_results(tc, result, expected)\n  if tc.evaluationTest?\n    if tc.testType == \"jld:ToRDFTest\"\n      expected.equivalent_graph?(result) ? \"passed\": \"failed\"\n    elsif tc.options[:ordered]\n      expected == result ? \"passed\": \"failed\"\n    else\n      if !expected.equivalent_jsonld?(result)\n        \"failed\"\n      elsif result.to_s.include?('@context')\n        exp_expected = JSON::LD::API.expand(expected, **tc.options.merge(logger: false))\n        exp_result = JSON::LD::API.expand(result, **tc.options.merge(logger: false))\n        exp_expected.equivalent_jsonld?(exp_result) ? \"passed\" : \"failed\"\n      else\n        \"passed\"\n      end\n    end\n  else\n    result.nil? ? \"failed\": \"passed\"\n  end\nend\n\ndef run_tc(man, tc, options)\n  tc.options[:logger] = options[:logger]\n  tc.options[:documentLoader] ||= Fixtures::SuiteTest.method(:documentLoader)\n  tc.options[:lowercaseLanguage] = true\n\n  if tc.options[:specVersion] == \"json-ld-1.0\"\n    STDERR.puts \"skip #{tc.property('input')} (1.0 test)\" if options[:verbose]\n    return\n  end\n\n  STDERR.write \"run #{tc.property('input')}\"\n\n  if options[:verbose]\n    puts \"\\nTestCase: #{tc.inspect}\"\n    puts \"\\nInput:\\n\" + tc.input\n    puts \"\\nContext:\\n\" + tc.context if tc.context\n    puts \"\\nFrame:\\n\" + tc.frame if tc.frame\n    puts \"\\nExpected:\\n\" + tc.expect if tc.expect && tc.positiveTest?\n    puts \"\\nExpected:\\n\" + tc.expectErrorCode if tc.negativeTest?\n  end\n\n  output = \"\"\n  begin\n    puts \"open #{tc.input_loc}\" if options[:verbose]\n\n    result = case tc.testType\n    when 'jld:CompactTest'\n      output = JSON::LD::API.compact(tc.input_loc, tc.context_json['@context'], validate: true, **tc.options)\n      expected = JSON.load(tc.expect) if tc.evaluationTest? && tc.positiveTest?\n      compare_results(tc, output, expected)\n    when 'jld:ExpandTest'\n      # MultiJson use OJ, by default, which doesn't handle native numbers the same as the JSON gem.\n      output = JSON::LD::API.expand(tc.input_loc, validate: true, **tc.options)\n      expected = JSON.load(tc.expect) if tc.evaluationTest? && tc.positiveTest?\n      compare_results(tc, output, expected)\n    when 'jld:FlattenTest'\n      output = JSON::LD::API.flatten(tc.input_loc, (tc.context_json['@context'] if tc.context_loc), validate: true, **tc.options)\n      expected = JSON.load(tc.expect) if tc.evaluationTest? && tc.positiveTest?\n      compare_results(tc, output, expected)\n    when 'jld:FrameTest'\n      output = JSON::LD::API.frame(tc.input_loc, tc.frame_loc, validate: true, **tc.options)\n      expected = JSON.load(tc.expect) if tc.evaluationTest? && tc.positiveTest?\n      compare_results(tc, output, expected)\n    when 'jld:FromRDFTest'\n      repo = RDF::Repository.load(tc.input_loc, format: :nquads, rdfstar: tc.options[:rdfstar])\n      output = if options[:stream]\n        JSON.parse(JSON::LD::Writer.buffer(stream: true, validate: true, **tc.options) {|w| w << repo})\n      else\n        JSON::LD::API.fromRdf(repo, validate: true, **tc.options)\n      end\n      expected = JSON.load(tc.expect) if tc.evaluationTest? && tc.positiveTest?\n      compare_results(tc, output, expected)\n    when 'jld:ToRDFTest'\n      output = RDF::Repository.new.extend(RDF::Isomorphic)\n      if options[:stream]\n        JSON::LD::Reader.open(tc.input_loc, stream: true, **tc.options.merge(logger: false)) do |statement|\n          output << statement\n        end\n      else\n        JSON::LD::API.toRdf(tc.input_loc, **tc.options).map do |statement|\n          output << statement\n        end\n      end\n\n      if tc.evaluationTest? && tc.positiveTest?\n        begin\n          if tc.options[:produceGeneralizedRdf]\n            quads = JSON::LD::API.toRdf(tc.input_loc, **tc.options.merge(validate: false)).map do |statement|\n              # Not really RDF, try different test method\n              tc.to_quad(statement)\n            end\n            output = quads.sort.uniq.join(\"\")\n            # toRdf/e075 is hard to test, but verified manually\n            output == tc.expect ? 'passed' : (tc.input_loc.include?('e075') ? 'passed' : 'failed')\n          else\n            expected = RDF::Repository.new << RDF::NQuads::Reader.new(tc.expect, rdfstar: tc.options[:rdfstar], validate: false, logger: [])\n            output.isomorphic?(expected) ? 'passed' : 'failed'\n          end\n        rescue RDF::ReaderError, JSON::LD::JsonLdError\n          quads = JSON::LD::API.toRdf(tc.input_loc, rdfstar: tc.options[:rdfstar], **tc.options.merge(validate: false)).map do |statement|\n            # Not really RDF, try different test method\n            tc.to_quad(statement)\n          end\n\n          # FIXME: toRDF is outputing duplicate quads\n          output = quads.sort.uniq.join(\"\")\n          output == tc.expect ? 'passed' : 'failed'\n        end\n      else\n        output.count > 0 ? 'passed' : 'failed'\n      end\n    end || \"untested\"\n\n    output = output.dump(:nquads, validate: false) rescue output.to_s if output.is_a?(RDF::Enumerable)\n    puts \"\\nOutput:\\n\" + (tc.testType == 'jld:ToRDFTest' ? output : output.to_json(JSON::LD::JSON_STATE)) if !tc.syntaxTest? && options[:verbose]\n\n    result = result ? 'failed' : 'passed' unless tc.positiveTest?\n    options[:results][result] ||= 0\n    options[:results][result] += 1\n  rescue Interrupt\n    $stderr.puts \"(interrupt)\"\n    exit 1\n  rescue StandardError => e\n    result = if tc.positiveTest?\n      STDERR.puts \"#{\" exception\" unless options[:quiet]}: #{e}\"\n      if options[:quiet] || !options[:verbose]\n        options[:results]['failed'] ||= 0\n        options[:results]['failed'] += 1\n      else\n        raise\n      end\n      \"failed\"\n    else\n      if e.message.include?(tc.property('expectErrorCode'))\n        options[:results]['passed'] ||= 0\n        options[:results]['passed'] += 1\n        \"passed\"\n      else\n        STDERR.puts(\"Expected exception: '#{tc.property('expectErrorCode')}' not '#{e}'\") unless options[:quiet]\n        options[:results]['failed'] ||= 0\n        options[:results]['failed'] += 1\n        \"failed\"\n      end\n    end\n  end\n  \n  #options[:output].puts(\"\\nOutput:\\n\" + output) unless options[:quiet]\n\n  if options[:earl]\n    options[:output].puts %{\n[ a earl:Assertion;\n  earl:assertedBy <#{ASSERTOR}>;\n  earl:subject <https://rubygems.org/gems/json-ld>;\n  earl:test <#{man}#{tc.id}>;\n  earl:result [\n    a earl:TestResult;\n    earl:outcome earl:#{result};\n    dc:date \"#{RUN_TIME.xmlschema}\"^^xsd:dateTime];\n  earl:mode earl:automatic ] .\n}\n  end\n\n  puts \"#{\" test result:\" unless options[:quiet]} #{result}\"\nend\n\nlogger = Logger.new(STDERR)\nlogger.level = Logger::WARN\nlogger.formatter = lambda {|severity, datetime, progname, msg| \"#{severity}: #{msg}\\n\"}\n\noptions = {\n  output: STDOUT,\n  results: {},\n  logger: logger\n}\n\nopts = GetoptLong.new(\n  [\"--help\", \"-?\", GetoptLong::NO_ARGUMENT],\n  [\"--debug\", GetoptLong::NO_ARGUMENT],\n  [\"--earl\", GetoptLong::NO_ARGUMENT],\n  [\"--quiet\", \"-q\", GetoptLong::NO_ARGUMENT],\n  [\"--output\", \"-o\", GetoptLong::REQUIRED_ARGUMENT],\n  [\"--stream\",   GetoptLong::NO_ARGUMENT],\n  [\"--verbose\", \"-v\", GetoptLong::NO_ARGUMENT]\n)\n\ndef help(options)\n  puts \"Usage: #{$0} [options] [test-number ...]\"\n  puts \"Options:\"\n  puts \"      --debug:              Display detailed debug output\"\n  puts \"      --earl:               Generate EARL report\"\n  puts \"      --quiet:              Minimal output\"\n  puts \"      --output:             Output to specified file\"\n  puts \"      --stream:             Use streaming RDF reader/writer\"\n  puts \"      --verbose:            Verbose processing\"\n  puts \"      --help,-?:            This message\"\n  exit(0)\nend\n\nopts.each do |opt, arg|\n  case opt\n  when '--help'             then help(options)\n  when '--debug'            then logger.level = Logger::DEBUG\n  when '--earl'\n    options[:quiet] = options[:earl] = true\n    logger.level = Logger::FATAL\n  when '--output'           then options[:output] = File.open(arg, \"w\")\n  when '--quiet'\n    options[:quiet] = true\n    logger.level = Logger::FATAL\n  when '--stream'           then options[:stream] = true\n  when '--verbose'          then options[:verbose] = true\n  end\nend\n\nmanifests = if options[:stream]\n  [\"#{Fixtures::SuiteTest::STREAM_SUITE}stream-toRdf-manifest.jsonld\"]\nelse\n  %w(expand compact flatten fromRdf html remote-doc toRdf).map do |man|\n    \"#{Fixtures::SuiteTest::SUITE}#{man}-manifest.jsonld\"\n  end +\n  [\"#{Fixtures::SuiteTest::FRAME_SUITE}frame-manifest.jsonld\"] +\n  %w{expand compact flatten fromRdf toRdf}.map do |man|\n    \"#{Fixtures::SuiteTest::STAR_SUITE}#{man}-manifest.jsonld\"\n  end\nend\n\nearl_preamble(options) if options[:earl]\n\nmanifests.each do |man|\n  Fixtures::SuiteTest::Manifest.open(man) do |m|\n    m.entries.each do |tc|\n      next unless ARGV.empty? || ARGV.any? {|n| tc.property('@id').match(/#{n}/) || tc.property('input').match(/#{n}/)}\n      options = {stream: true}.merge(options) if man.include?('stream')\n      run_tc(man.sub(\".jsonld\", \"\"), tc, options)\n    end\n  end\nend\n\noptions[:results].each {|k, v| puts \"#{k}: #{v}\"}\n"
  },
  {
    "path": "spec/.gitignore",
    "content": "/json-ld.org\n/uri-cache/\n/json-ld-api\n/json-ld-framing\n/json-ld-star\n/json-ld-streaming\n"
  },
  {
    "path": "spec/api_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  before { JSON::LD::Context::PRELOADED.clear }\n\n  describe \"#initialize\" do\n    context \"with string input\" do\n      let(:context) do\n        JSON::LD::API::RemoteDocument.new('{\n          \"@context\": {\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"name\": \"http://xmlns.com/foaf/0.1/name\",\n            \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n            \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n          }\n          }',\n          documentUrl: \"http://example.com/context\",\n          contentType: 'application/ld+json')\n      end\n      let(:remote_doc) do\n        JSON::LD::API::RemoteDocument.new('{\"@id\": \"\", \"name\": \"foo\"}',\n          documentUrl: \"http://example.com/foo\",\n          contentType: 'application/ld+json',\n          contextUrl: \"http://example.com/context\")\n      end\n\n      it \"loads document with loader and loads context\" do\n        expect(described_class).to receive(:documentLoader).with(\"http://example.com/foo\",\n          anything).and_yield(remote_doc)\n        expect(described_class).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(context)\n        described_class.new(\"http://example.com/foo\", nil)\n      end\n    end\n  end\n\n  context \"when validating\", pending: (\"JRuby support for jsonlint\" if RUBY_ENGINE == \"jruby\") do\n    it \"detects invalid JSON\" do\n      expect do\n        described_class.new(StringIO.new(%({\"a\": \"b\", \"a\": \"c\"})), nil,\n          validate: true)\n      end.to raise_error(JSON::LD::JsonLdError::LoadingDocumentFailed)\n    end\n  end\n\n  context \"Test Files\" do\n    %i[oj json_gem ok_json yajl].each do |adapter|\n      context \"with MultiJson adapter #{adapter.inspect}\" do\n        Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), 'test-files/*-input.*'))) do |filename|\n          test = File.basename(filename).sub(/-input\\..*$/, '')\n          frame = filename.sub(/-input\\..*$/, '-frame.jsonld')\n          framed = filename.sub(/-input\\..*$/, '-framed.jsonld')\n          compacted = filename.sub(/-input\\..*$/, '-compacted.jsonld')\n          context = filename.sub(/-input\\..*$/, '-context.jsonld')\n          expanded = filename.sub(/-input\\..*$/, '-expanded.jsonld')\n          ttl = filename.sub(/-input\\..*$/, '-rdf.ttl')\n\n          context test,\n            skip: (\"Not supported in JRuby\" if RUBY_ENGINE == \"jruby\" && %w[oj yajl].include?(adapter.to_s)) do\n            around do |example|\n              @file = File.open(filename)\n              case filename\n              when /.jsonld$/\n                @file.define_singleton_method(:content_type) { 'application/ld+json' }\n              end\n              if context\n                @ctx_io = File.open(context)\n                case context\n                when /.jsonld$/\n                  @ctx_io.define_singleton_method(:content_type) { 'application/ld+json' }\n                end\n              end\n              example.run\n              @file.close\n              @ctx_io&.close\n            end\n\n            if File.exist?(expanded)\n              it \"expands\" do\n                options = { logger: logger, adapter: adapter }\n                options[:expandContext] = @ctx_io if context\n                jld = described_class.expand(@file, **options)\n                expect(jld).to produce_jsonld(JSON.parse(File.read(expanded)), logger)\n              end\n\n              it \"expands with serializer\" do\n                options = { logger: logger, adapter: adapter }\n                options[:expandContext] = @ctx_io if context\n                jld = described_class.expand(@file, serializer: described_class.method(:serializer), **options)\n                expect(jld).to be_a(String)\n                expect(JSON.parse(jld)).to produce_jsonld(JSON.parse(File.read(expanded)), logger)\n              end\n            end\n\n            if File.exist?(compacted) && File.exist?(context)\n              it \"compacts\" do\n                jld = described_class.compact(@file, @ctx_io, adapter: adapter, logger: logger)\n                expect(jld).to produce_jsonld(JSON.parse(File.read(compacted)), logger)\n              end\n\n              it \"compacts with serializer\" do\n                jld = described_class.compact(@file, @ctx_io, serializer: described_class.method(:serializer),\n                  adapter: adapter, logger: logger)\n                expect(jld).to be_a(String)\n                expect(JSON.parse(jld)).to produce_jsonld(JSON.parse(File.read(compacted)), logger)\n              end\n            end\n\n            if File.exist?(framed) && File.exist?(frame)\n              it \"frames\" do\n                File.open(frame) do |frame_io|\n                  jld = described_class.frame(@file, frame_io, adapter: adapter, logger: logger)\n                  expect(jld).to produce_jsonld(JSON.parse(File.read(framed)), logger)\n                end\n              end\n\n              it \"frames with serializer\" do\n                File.open(frame) do |frame_io|\n                  jld = described_class.frame(@file, frame_io, serializer: described_class.method(:serializer),\n                    adapter: adapter, logger: logger)\n                  expect(jld).to be_a(String)\n                  expect(JSON.parse(jld)).to produce_jsonld(JSON.parse(File.read(framed)), logger)\n                end\n              end\n            end\n\n            if File.exist?(ttl)\n              it \"toRdf\" do\n                expect(RDF::Repository.load(filename, format: :jsonld, adapter: adapter,\n                  logger: logger)).to be_equivalent_graph(RDF::Repository.load(ttl), logger: logger)\n              end\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/compact_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".compact\" do\n    {\n      \"prefix\" => {\n        input: %({\n          \"@id\": \"http://example.com/a\",\n          \"http://example.com/b\": {\"@id\": \"http://example.com/c\"}\n        }),\n        context: %({\"ex\": \"http://example.com/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@id\": \"ex:a\",\n          \"ex:b\": {\"@id\": \"ex:c\"}\n        })\n      },\n      \"term\" => {\n        input: %({\n          \"@id\": \"http://example.com/a\",\n          \"http://example.com/b\": {\"@id\": \"http://example.com/c\"}\n        }),\n        context: %({\"b\": \"http://example.com/b\"}),\n        output: %({\n          \"@context\": {\"b\": \"http://example.com/b\"},\n          \"@id\": \"http://example.com/a\",\n          \"b\": {\"@id\": \"http://example.com/c\"}\n        })\n      },\n      \"integer value\" => {\n        input: %({\n          \"@id\": \"http://example.com/a\",\n          \"http://example.com/b\": {\"@value\": 1}\n        }),\n        context: %({\"b\": \"http://example.com/b\"}),\n        output: %({\n          \"@context\": {\"b\": \"http://example.com/b\"},\n          \"@id\": \"http://example.com/a\",\n          \"b\": 1\n        })\n      },\n      \"boolean value\" => {\n        input: %({\n          \"@id\": \"http://example.com/a\",\n          \"http://example.com/b\": {\"@value\": true}\n        }),\n        context: %({\"b\": \"http://example.com/b\"}),\n        output: %({\n          \"@context\": {\"b\": \"http://example.com/b\"},\n          \"@id\": \"http://example.com/a\",\n          \"b\": true\n        })\n      },\n      \"@id\" => {\n        input: %({\"@id\": \"http://example.org/test#example\"}),\n        context: {},\n        output: {}\n      },\n      \"@id coercion\" => {\n        input: %({\n          \"@id\": \"http://example.com/a\",\n          \"http://example.com/b\": {\"@id\": \"http://example.com/c\"}\n        }),\n        context: %({\"b\": {\"@id\": \"http://example.com/b\", \"@type\": \"@id\"}}),\n        output: %({\n          \"@context\": {\"b\": {\"@id\": \"http://example.com/b\", \"@type\": \"@id\"}},\n          \"@id\": \"http://example.com/a\",\n          \"b\": \"http://example.com/c\"\n        })\n      },\n      \"xsd:date coercion\" => {\n        input: %({\n          \"http://example.com/b\": {\"@value\": \"2012-01-04\", \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}\n        }),\n        context: %({\n          \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n          \"b\": {\"@id\": \"http://example.com/b\", \"@type\": \"xsd:date\"}\n        }),\n        output: %({\n          \"@context\": {\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"b\": {\"@id\": \"http://example.com/b\", \"@type\": \"xsd:date\"}\n          },\n          \"b\": \"2012-01-04\"\n        })\n      },\n      '@list coercion': {\n        input: %({\n          \"http://example.com/b\": {\"@list\": [\"c\", \"d\"]}\n        }),\n        context: %({\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@list\"}},\n          \"b\": [\"c\", \"d\"]\n        })\n      },\n      \"@list coercion (integer)\" => {\n        input: %({\n          \"http://example.com/term\": [\n            {\"@list\": [1]}\n          ]\n        }),\n        context: %({\n          \"term4\": {\"@id\": \"http://example.com/term\", \"@container\": \"@list\"},\n          \"@language\": \"de\"\n        }),\n        output: %({\n          \"@context\": {\n            \"term4\": {\"@id\": \"http://example.com/term\", \"@container\": \"@list\"},\n            \"@language\": \"de\"\n          },\n          \"term4\": [1]\n        })\n      },\n      \"@set coercion\" => {\n        input: %({\n          \"http://example.com/b\": {\"@set\": [\"c\"]}\n        }),\n        context: %({\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@set\"}}),\n        output: %({\n          \"@context\": {\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@set\"}},\n          \"b\": [\"c\"]\n        })\n      },\n      \"@set coercion on @type\" => {\n        input: %({\n          \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\",\n          \"http://example.org/foo\": {\"@value\": \"bar\", \"@type\": \"http://example.com/type\"}\n        }),\n        context: %({\"@version\": 1.1, \"@type\": {\"@container\": \"@set\"}}),\n        output: %({\n          \"@context\": {\"@version\": 1.1, \"@type\": {\"@container\": \"@set\"}},\n          \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\n          \"http://example.org/foo\": {\"@value\": \"bar\", \"@type\": \"http://example.com/type\"}\n        })\n      },\n      \"empty @set coercion\" => {\n        input: %({\n          \"http://example.com/b\": []\n        }),\n        context: %({\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@set\"}}),\n        output: %({\n          \"@context\": {\"b\": {\"@id\": \"http://example.com/b\", \"@container\": \"@set\"}},\n          \"b\": []\n        })\n      },\n      \"@type with string @id\" => {\n        input: %({\n          \"@id\": \"http://example.com/\",\n          \"@type\": \"#{RDF::RDFS.Resource}\"\n        }),\n        context: {},\n        output: %({\n          \"@id\": \"http://example.com/\",\n          \"@type\": \"#{RDF::RDFS.Resource}\"\n        })\n      },\n      \"@type with array @id\" => {\n        input: %({\n          \"@id\": \"http://example.com/\",\n          \"@type\": [\"#{RDF::RDFS.Resource}\"]\n        }),\n        context: {},\n        output: %({\n          \"@id\": \"http://example.com/\",\n          \"@type\": \"#{RDF::RDFS.Resource}\"\n        })\n      },\n      \"default language\" => {\n        input: %({\n          \"http://example.com/term\": [\n            \"v5\",\n            {\"@value\": \"plain literal\"}\n          ]\n        }),\n        context: %({\n          \"term5\": {\"@id\": \"http://example.com/term\", \"@language\": null},\n          \"@language\": \"de\"\n        }),\n        output: %({\n          \"@context\": {\n            \"term5\": {\"@id\": \"http://example.com/term\", \"@language\": null},\n            \"@language\": \"de\"\n          },\n          \"term5\": [ \"v5\", \"plain literal\" ]\n        })\n      },\n      \"default direction\" => {\n        input: %({\n          \"http://example.com/term\": [\n            \"v5\",\n            {\"@value\": \"plain literal\"}\n          ]\n        }),\n        context: %({\n          \"term5\": {\"@id\": \"http://example.com/term\", \"@direction\": null},\n          \"@direction\": \"ltr\"\n        }),\n        output: %({\n          \"@context\": {\n            \"term5\": {\"@id\": \"http://example.com/term\", \"@direction\": null},\n            \"@direction\": \"ltr\"\n          },\n          \"term5\": [ \"v5\", \"plain literal\" ]\n        })\n      }\n    }.each_pair do |title, params|\n      it(title) { run_compact(params) }\n    end\n\n    context \"keyword aliasing\" do\n      {\n        \"@id\" => {\n          input: %({\n            \"@id\": \"\",\n            \"@type\": \"#{RDF::RDFS.Resource}\"\n          }),\n          context: %({\"id\": \"@id\"}),\n          output: %({\n            \"@context\": {\"id\": \"@id\"},\n            \"id\": \"\",\n            \"@type\": \"#{RDF::RDFS.Resource}\"\n          })\n        },\n        '@type': {\n          input: %({\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\",\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"@type\": \"http://example.com/type\"}\n          }),\n          context: %({\"type\": \"@type\"}),\n          output: %({\n            \"@context\": {\"type\": \"@type\"},\n            \"type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\",\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"type\": \"http://example.com/type\"}\n          })\n        },\n        '@type with @container: @set': {\n          input: %({\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\",\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"@type\": \"http://example.com/type\"}\n          }),\n          context: %({\"type\": {\"@id\": \"@type\", \"@container\": \"@set\"}}),\n          output: %({\n            \"@context\": {\"type\": {\"@id\": \"@type\", \"@container\": \"@set\"}},\n            \"type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"type\": \"http://example.com/type\"}\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        \"@language\" => {\n          input: %({\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"@language\": \"baz\"}\n          }),\n          context: %({\"language\": \"@language\"}),\n          output: %({\n            \"@context\": {\"language\": \"@language\"},\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"language\": \"baz\"}\n          })\n        },\n        \"@direction\" => {\n          input: %({\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"@direction\": \"ltr\"}\n          }),\n          context: %({\"direction\": \"@direction\"}),\n          output: %({\n            \"@context\": {\"direction\": \"@direction\"},\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"direction\": \"ltr\"}\n          })\n        },\n        \"@value\" => {\n          input: %({\n            \"http://example.org/foo\": {\"@value\": \"bar\", \"@language\": \"baz\"}\n          }),\n          context: %({\"literal\": \"@value\"}),\n          output: %({\n            \"@context\": {\"literal\": \"@value\"},\n            \"http://example.org/foo\": {\"literal\": \"bar\", \"@language\": \"baz\"}\n          })\n        },\n        \"@list\" => {\n          input: %({\n            \"http://example.org/foo\": {\"@list\": [\"bar\"]}\n          }),\n          context: %({\"list\": \"@list\"}),\n          output: %({\n            \"@context\": {\"list\": \"@list\"},\n            \"http://example.org/foo\": {\"list\": [\"bar\"]}\n          })\n        }\n      }.each do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"term selection\" do\n      {\n        \"Uses term with null language when two terms conflict on language\" => {\n          input: %([{\n            \"http://example.com/term\": {\"@value\": \"v1\"}\n          }]),\n          context: %({\n            \"term5\": {\"@id\": \"http://example.com/term\",\"@language\": null},\n            \"@language\": \"de\"\n          }),\n          output: %({\n            \"@context\": {\n              \"term5\": {\"@id\": \"http://example.com/term\",\"@language\": null},\n              \"@language\": \"de\"\n            },\n            \"term5\": \"v1\"\n          })\n        },\n        \"Uses term with null direction when two terms conflict on direction\" => {\n          input: %([{\n            \"http://example.com/term\": {\"@value\": \"v1\"}\n          }]),\n          context: %({\n            \"term5\": {\"@id\": \"http://example.com/term\",\"@direction\": null},\n            \"@direction\": \"ltr\"\n          }),\n          output: %({\n            \"@context\": {\n              \"term5\": {\"@id\": \"http://example.com/term\",\"@direction\": null},\n              \"@direction\": \"ltr\"\n            },\n            \"term5\": \"v1\"\n          })\n        },\n        \"Uses subject alias\" => {\n          input: %([{\n            \"@id\": \"http://example.com/id1\",\n            \"http://example.com/id1\": {\"@value\": \"foo\", \"@language\": \"de\"}\n          }]),\n          context: %({\n            \"id1\": \"http://example.com/id1\",\n            \"@language\": \"de\"\n          }),\n          output: %({\n            \"@context\": {\n              \"id1\": \"http://example.com/id1\",\n              \"@language\": \"de\"\n            },\n            \"@id\": \"http://example.com/id1\",\n            \"id1\": \"foo\"\n          })\n        },\n        \"compact-0007\" => {\n          input: %(\n            {\"http://example.org/vocab#contains\": \"this-is-not-an-IRI\"}\n          ),\n          context: %({\n            \"ex\": \"http://example.org/vocab#\",\n            \"ex:contains\": {\"@type\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/vocab#\",\n              \"ex:contains\": {\"@type\": \"@id\"}\n            },\n            \"http://example.org/vocab#contains\": \"this-is-not-an-IRI\"\n          })\n        },\n        \"Language map term with language value\" => {\n          input: %([{\"http://example/t\": {\"@value\": \"foo\", \"@language\": \"en\"}}]),\n          context: %({\"t\": {\"@id\": \"http://example/t\", \"@container\": \"@language\"}}),\n          output: %({\n            \"@context\": {\n              \"t\": {\"@id\": \"http://example/t\", \"@container\": \"@language\"}\n            },\n            \"t\": {\"en\": \"foo\"}\n          })\n        },\n        \"Datatyped term with datatyped value\" => {\n          input: %([{\"http://example/t\": {\"@value\": \"foo\", \"@type\": \"http:/example/type\"}}]),\n          context: %({\"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}}),\n          output: %({\n            \"@context\": {\n              \"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}\n            },\n            \"t\": \"foo\"\n          })\n        },\n        \"Datatyped term with simple value\" => {\n          input: %([{\"http://example/t\": {\"@value\": \"foo\"}}]),\n          context: %({\"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}}),\n          output: %({\n            \"@context\": {\n              \"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}\n            },\n            \"http://example/t\": \"foo\"\n          })\n        },\n        \"Datatyped term with object value\" => {\n          input: %([{\"http://example/t\": {\"@id\": \"http://example/id\"}}]),\n          context: %({\"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}}),\n          output: %({\n            \"@context\": {\n              \"t\": {\"@id\": \"http://example/t\", \"@type\": \"http:/example/type\"}\n            },\n            \"http://example/t\": {\"@id\": \"http://example/id\"}\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"IRI Compaction\" do\n      {\n        \"Expands and compacts to document base in 1.0\" => {\n          input: %({\n            \"@id\": \"a\",\n            \"http://example.com/b\": {\"@id\": \"c\"}\n          }),\n          context: %({\"b\": \"http://example.com/b\"}),\n          output: %({\n            \"@context\": {\"b\": \"http://example.com/b\"},\n            \"@id\": \"a\",\n            \"b\": {\"@id\": \"c\"}\n          }),\n          base: \"http://example.org/\"\n        },\n        \"Expands and compacts to document base in 1.1 with compactToRelative true\" => {\n          input: %({\n            \"@id\": \"a\",\n            \"http://example.com/b\": {\"@id\": \"c\"}\n          }),\n          context: %({\"b\": \"http://example.com/b\"}),\n          output: %({\n            \"@context\": {\"b\": \"http://example.com/b\"},\n            \"@id\": \"a\",\n            \"b\": {\"@id\": \"c\"}\n          }),\n          base: \"http://example.org/\",\n          compactToRelative: true,\n          processingMode: 'json-ld-1.1'\n        },\n        \"Expands but does not compact to document base in 1.1 with compactToRelative false\" => {\n          input: %({\n            \"@id\": \"http://example.org/a\",\n            \"http://example.com/b\": {\"@id\": \"http://example.org/c\"}\n          }),\n          context: %({\"b\": \"http://example.com/b\"}),\n          output: %({\n            \"@context\": {\"b\": \"http://example.com/b\"},\n            \"@id\": \"http://example.org/a\",\n            \"b\": {\"@id\": \"http://example.org/c\"}\n          }),\n          compactToRelative: false,\n          processingMode: 'json-ld-1.1'\n        },\n        \"Expands and compacts to document base in 1.1 by default\" => {\n          input: %({\n            \"@id\": \"a\",\n            \"http://example.com/b\": {\"@id\": \"c\"}\n          }),\n          context: %({\"b\": \"http://example.com/b\"}),\n          output: %({\n            \"@context\": {\"b\": \"http://example.com/b\"},\n            \"@id\": \"a\",\n            \"b\": {\"@id\": \"c\"}\n          }),\n          base: \"http://example.org/\",\n          processingMode: 'json-ld-1.1'\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"@container: @reverse\" do\n      {\n        \"@container: @reverse\" => {\n          input: %([{\n            \"@id\": \"http://example/one\",\n            \"@reverse\": {\n              \"http://example/forward\": [\n                {\n                  \"@id\": \"http://example/two\"\n                }\n              ]\n            }\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"rev\": { \"@reverse\": \"forward\", \"@type\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"rev\": { \"@reverse\": \"forward\", \"@type\": \"@id\"}\n            },\n            \"@id\": \"http://example/one\",\n            \"rev\": \"http://example/two\"\n          })\n        },\n        \"compact-0033\" => {\n          input: %([\n            {\n              \"@id\": \"http://example.com/people/markus\",\n              \"@reverse\": {\n                \"http://xmlns.com/foaf/0.1/knows\": [\n                  {\n                    \"@id\": \"http://example.com/people/dave\",\n                    \"http://xmlns.com/foaf/0.1/name\": [ { \"@value\": \"Dave Longley\" } ]\n                  }\n                ]\n              },\n              \"http://xmlns.com/foaf/0.1/name\": [ { \"@value\": \"Markus Lanthaler\" } ]\n            }\n          ]),\n          context: %({\n            \"name\": \"http://xmlns.com/foaf/0.1/name\",\n            \"isKnownBy\": { \"@reverse\": \"http://xmlns.com/foaf/0.1/knows\" }\n          }),\n          output: %({\n            \"@context\": {\n              \"name\": \"http://xmlns.com/foaf/0.1/name\",\n              \"isKnownBy\": {\n                \"@reverse\": \"http://xmlns.com/foaf/0.1/knows\"\n              }\n            },\n            \"@id\": \"http://example.com/people/markus\",\n            \"name\": \"Markus Lanthaler\",\n            \"isKnownBy\": {\n              \"@id\": \"http://example.com/people/dave\",\n              \"name\": \"Dave Longley\"\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"context as value\" do\n      {\n        \"includes the context in the output document\" => {\n          input: %({\n            \"http://example.com/\": \"bar\"\n          }),\n          context: %({\n            \"foo\": \"http://example.com/\"\n          }),\n          output: %({\n            \"@context\": {\n              \"foo\": \"http://example.com/\"\n            },\n            \"foo\": \"bar\"\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"context as reference\" do\n      let(:remote_doc) do\n        JSON::LD::API::RemoteDocument.new(\n          '{\"@context\": {\"b\": \"http://example.com/b\"}}',\n          documentUrl: \"http://example.com/context\"\n        )\n      end\n\n      it \"uses referenced context\" do\n        JSON::LD::Context.instance_variable_set(:@cache, nil)\n        input = JSON.parse %({\n          \"http://example.com/b\": \"c\"\n        })\n        expected = JSON.parse %({\n          \"@context\": \"http://example.com/context\",\n          \"b\": \"c\"\n        })\n        allow(described_class).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        jld = described_class.compact(input, \"http://example.com/context\", logger: logger, validate: true)\n        expect(jld).to produce_jsonld(expected, logger)\n      end\n    end\n\n    context \"@list\" do\n      {\n        \"1 term 2 lists 2 languages\" => {\n          input: %([{\n            \"http://example.com/foo\": [\n              {\"@list\": [{\"@value\": \"en\", \"@language\": \"en\"}]},\n              {\"@list\": [{\"@value\": \"de\", \"@language\": \"de\"}]}\n            ]\n          }]),\n          context: %({\n            \"foo_en\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@language\": \"en\"},\n            \"foo_de\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@language\": \"de\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"foo_en\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@language\": \"en\"},\n              \"foo_de\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@language\": \"de\"}\n            },\n            \"foo_en\": [\"en\"],\n            \"foo_de\": [\"de\"]\n          })\n        },\n        \"1 term 2 lists 2 directions\" => {\n          input: %([{\n            \"http://example.com/foo\": [\n              {\"@list\": [{\"@value\": \"en\", \"@direction\": \"ltr\"}]},\n              {\"@list\": [{\"@value\": \"ar\", \"@direction\": \"rtl\"}]}\n            ]\n          }]),\n          context: %({\n            \"foo_ltr\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@direction\": \"ltr\"},\n            \"foo_rtl\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@direction\": \"rtl\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"foo_ltr\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@direction\": \"ltr\"},\n              \"foo_rtl\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\", \"@direction\": \"rtl\"}\n            },\n            \"foo_ltr\": [\"en\"],\n            \"foo_rtl\": [\"ar\"]\n          })\n        },\n        \"coerced @list containing an empty list\" => {\n          input: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": []}]}]\n          }]),\n          context: %({\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          }),\n          output: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[]]\n          })\n        },\n        \"coerced @list containing a list\" => {\n          input: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]\n          }]),\n          context: %({\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          }),\n          output: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"baz\"]]\n          })\n        },\n        \"coerced @list containing an deep list\" => {\n          input: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]}]\n          }]),\n          context: %({\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          }),\n          output: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[[\"baz\"]]]\n          })\n        },\n        \"coerced @list containing multiple lists\" => {\n          input: %([{\n            \"http://example.com/foo\": [{\"@list\": [\n              {\"@list\": [{\"@value\": \"a\"}]},\n              {\"@list\": [{\"@value\": \"b\"}]}\n            ]}]\n          }]),\n          context: %({\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          }),\n          output: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"a\"], [\"b\"]]\n          })\n        },\n        \"coerced @list containing mixed list values\" => {\n          input: %([{\n            \"http://example.com/foo\": [{\"@list\": [\n              {\"@list\": [{\"@value\": \"a\"}]},\n              {\"@value\": \"b\"}\n            ]}]\n          }]),\n          context: %({\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          }),\n          output: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"a\"], \"b\"]\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"with @type: @json\" do\n      {\n        true => {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n            },\n            \"e\": true\n          }),\n          input: %( [{\n            \"http://example.org/vocab#bool\": [{\"@value\": true, \"@type\": \"@json\"}]\n          }])\n        },\n        false => {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n            },\n            \"e\": false\n          }),\n          input: %([{\n            \"http://example.org/vocab#bool\": [{\"@value\": false, \"@type\": \"@json\"}]\n          }])\n        },\n        double: {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n            },\n            \"e\": 1.23\n          }),\n          input: %([{\n            \"http://example.org/vocab#double\": [{\"@value\": 1.23, \"@type\": \"@json\"}]\n          }])\n        },\n        'double-zero': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n            },\n            \"e\": 0.0e0\n          }),\n          input: %([{\n            \"http://example.org/vocab#double\": [{\"@value\": 0.0e0, \"@type\": \"@json\"}]\n          }])\n        },\n        integer: {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@json\"}\n            },\n            \"e\": 123\n          }),\n          input: %([{\n            \"http://example.org/vocab#integer\": [{\"@value\": 123, \"@type\": \"@json\"}]\n          }])\n        },\n        string: {\n          input: %([{\n            \"http://example.org/vocab#string\": [{\n              \"@value\": \"string\",\n              \"@type\": \"@json\"\n            }]\n          }]),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#string\", \"@type\": \"@json\"}\n            },\n            \"e\": \"string\"\n          })\n        },\n        null: {\n          input: %([{\n            \"http://example.org/vocab#null\": [{\n              \"@value\": null,\n              \"@type\": \"@json\"\n            }]\n          }]),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#null\", \"@type\": \"@json\"}\n            },\n            \"e\": null\n          })\n        },\n        object: {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#object\", \"@type\": \"@json\"}\n            },\n            \"e\": {\"foo\": \"bar\"}\n          }),\n          input: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }])\n        },\n        array: {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#array\", \"@type\": \"@json\", \"@container\": \"@set\"}\n            },\n            \"e\": [{\"foo\": \"bar\"}]\n          }),\n          input: %([{\n            \"http://example.org/vocab#array\": [{\"@value\": [{\"foo\": \"bar\"}], \"@type\": \"@json\"}]\n          }])\n        },\n        'Already expanded object': {\n          output: %({\n            \"@context\": {\"@version\": 1.1},\n            \"http://example.org/vocab#object\": {\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}\n          }),\n          input: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }])\n        },\n        'Already expanded object with aliased keys': {\n          output: %({\n            \"@context\": {\"@version\": 1.1, \"value\": \"@value\", \"type\": \"@type\", \"json\": \"@json\"},\n            \"http://example.org/vocab#object\": {\"value\": {\"foo\": \"bar\"}, \"type\": \"json\"}\n          }),\n          input: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_compact(processingMode: 'json-ld-1.1', **params) }\n      end\n    end\n\n    context \"@container: @index\" do\n      {\n        \"compact-0029\" => {\n          input: %([{\n             \"@id\": \"http://example.com/article\",\n             \"http://example.com/vocab/author\": [{\n                \"@id\": \"http://example.org/person/1\",\n                \"@index\": \"regular\"\n             }, {\n                \"@id\": \"http://example.org/guest/cd24f329aa\",\n                \"@index\": \"guest\"\n             }]\n          }]),\n          context: %({\n            \"author\": {\"@id\": \"http://example.com/vocab/author\", \"@container\": \"@index\" }\n          }),\n          output: %({\n            \"@context\": {\n              \"author\": {\n                \"@id\": \"http://example.com/vocab/author\",\n                \"@container\": \"@index\"\n              }\n            },\n            \"@id\": \"http://example.com/article\",\n            \"author\": {\n              \"regular\": {\n                \"@id\": \"http://example.org/person/1\"\n              },\n              \"guest\": {\n                \"@id\": \"http://example.org/guest/cd24f329aa\"\n              }\n            }\n          })\n        },\n        \"simple map with @none node definition\" => {\n          input: %([{\n             \"@id\": \"http://example.com/article\",\n             \"http://example.com/vocab/author\": [{\n                \"@id\": \"http://example.org/person/1\",\n                \"@index\": \"regular\"\n             }, {\n                \"@id\": \"http://example.org/guest/cd24f329aa\"\n             }]\n          }]),\n          context: %({\n            \"author\": {\"@id\": \"http://example.com/vocab/author\", \"@container\": \"@index\" }\n          }),\n          output: %({\n            \"@context\": {\n              \"author\": {\n                \"@id\": \"http://example.com/vocab/author\",\n                \"@container\": \"@index\"\n              }\n            },\n            \"@id\": \"http://example.com/article\",\n            \"author\": {\n              \"regular\": {\n                \"@id\": \"http://example.org/person/1\"\n              },\n              \"@none\": {\n                \"@id\": \"http://example.org/guest/cd24f329aa\"\n              }\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        \"simple map with @none value\" => {\n          input: %([{\n             \"@id\": \"http://example.com/article\",\n             \"http://example.com/vocab/author\": [{\n                \"@value\": \"Gregg\",\n                \"@index\": \"regular\"\n             }, {\n                \"@value\": \"Manu\"\n             }]\n          }]),\n          context: %({\n            \"author\": {\"@id\": \"http://example.com/vocab/author\", \"@container\": \"@index\" }\n          }),\n          output: %({\n            \"@context\": {\n              \"author\": {\n                \"@id\": \"http://example.com/vocab/author\",\n                \"@container\": \"@index\"\n              }\n            },\n            \"@id\": \"http://example.com/article\",\n            \"author\": {\n              \"regular\": \"Gregg\",\n              \"@none\": \"Manu\"\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        \"simple map with @none value using alias of @none\" => {\n          input: %([{\n             \"@id\": \"http://example.com/article\",\n             \"http://example.com/vocab/author\": [{\n                \"@value\": \"Gregg\",\n                \"@index\": \"regular\"\n             }, {\n                \"@value\": \"Manu\"\n             }]\n          }]),\n          context: %({\n            \"author\": {\"@id\": \"http://example.com/vocab/author\", \"@container\": \"@index\" },\n            \"none\": \"@none\"\n          }),\n          output: %({\n            \"@context\": {\n              \"author\": {\n                \"@id\": \"http://example.com/vocab/author\",\n                \"@container\": \"@index\"\n              },\n              \"none\": \"@none\"\n            },\n            \"@id\": \"http://example.com/article\",\n            \"author\": {\n              \"regular\": \"Gregg\",\n              \"none\": \"Manu\"\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        'issue-514': {\n          input: %({\n            \"http://example.org/ns/prop\": [{\n              \"@id\": \"http://example.org/ns/bar\",\n              \"http://example.org/ns/name\": \"bar\"\n            }, {\n                \"@id\": \"http://example.org/ns/foo\",\n              \"http://example.org/ns/name\": \"foo\"\n            }]\n          }),\n          context: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/ns/\",\n              \"prop\": {\n                \"@id\": \"ex:prop\",\n                \"@container\": \"@index\",\n                \"@index\": \"ex:name\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/ns/\",\n              \"prop\": {\n                \"@id\": \"ex:prop\",\n                \"@container\": \"@index\",\n                \"@index\": \"ex:name\"\n              }\n            },\n            \"prop\": {\n              \"foo\": { \"@id\": \"ex:foo\"},\n              \"bar\": { \"@id\": \"ex:bar\"}\n            }\n          })\n        },\n        'issue-514b': {\n          input: %({\n            \"http://example.org/ns/prop\": [{\n              \"@id\": \"http://example.org/ns/bar\",\n              \"http://example.org/ns/name\": \"bar\"\n            }, {\n                \"@id\": \"http://example.org/ns/foo\",\n              \"http://example.org/ns/name\": \"foo\"\n            }]\n          }),\n          context: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/ns/\",\n              \"prop\": {\n                \"@id\": \"ex:prop\",\n                \"@container\": \"@index\",\n                \"@index\": \"http://example.org/ns/name\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/ns/\",\n              \"prop\": {\n                \"@id\": \"ex:prop\",\n                \"@container\": \"@index\",\n                \"@index\": \"http://example.org/ns/name\"\n              }\n            },\n            \"prop\": {\n              \"foo\": { \"@id\": \"ex:foo\"},\n              \"bar\": { \"@id\": \"ex:bar\"}\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n\n      context \"@index: property\" do\n        {\n          'property-valued index indexes property value, instead of property (value)': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\"},\n                \"guest\": [{\"@id\": \"person/2\"}, {\"@id\": \"person/3\"}]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@value\": \"regular\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@value\": \"guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@value\": \"guest\"}]}\n              ]\n            }])\n          },\n          'property-valued index indexes property value, instead of @index (multiple values)': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\", \"prop\": \"foo\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\", \"prop\": \"foo\"},\n                  {\"@id\": \"person/3\", \"prop\": \"foo\"}\n                ]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@value\": \"regular\"}, {\"@value\": \"foo\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@value\": \"guest\"}, {\"@value\": \"foo\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@value\": \"guest\"}, {\"@value\": \"foo\"}]}\n              ]\n            }])\n          },\n          'property-valued index extracts property value, instead of @index (node)': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@vocab\", \"@container\": \"@index\", \"@index\": \"prop\"},\n                \"prop\": {\"@type\": \"@id\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\"},\n                  {\"@id\": \"person/3\"}\n                ]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/regular\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]}\n              ]\n            }])\n          },\n          'property-valued index indexes property value, instead of property (multimple nodes)': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@vocab\", \"@container\": \"@index\", \"@index\": \"prop\"},\n                \"prop\": {\"@type\": \"@id\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\", \"prop\": \"foo\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\", \"prop\": \"foo\"},\n                  {\"@id\": \"person/3\", \"prop\": \"foo\"}\n                ]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/regular\"}, {\"@id\": \"http://example.com/foo\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}, {\"@id\": \"http://example.com/foo\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}, {\"@id\": \"http://example.com/foo\"}]}\n              ]\n            }])\n          },\n          'property-valued index indexes using @none if no property value exists': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"@none\": [\"person/1\", \"person/2\", \"person/3\"]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\"},\n                {\"@id\": \"http://example.com/person/2\"},\n                {\"@id\": \"http://example.com/person/3\"}\n              ]\n            }])\n          },\n          'property-valued index indexes using @none if no property value does not compact to string': {\n            output: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"@none\": [\n                  {\"@id\": \"person/1\", \"prop\": {\"@id\": \"regular\"}},\n                  {\"@id\": \"person/2\", \"prop\": {\"@id\": \"guest\"}},\n                  {\"@id\": \"person/3\", \"prop\": {\"@id\": \"guest\"}}\n                ]\n              }\n            }),\n            input: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/regular\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]}\n              ]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_compact(**params) }\n        end\n      end\n    end\n\n    context \"@container: @language\" do\n      {\n        \"compact-0024\" => {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"The Queen\", \"@language\": \"en\"},\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"vocab\": \"http://example.com/vocab/\",\n            \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"}\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [\"Die Königin\", \"Ihre Majestät\"]\n            }\n          })\n        },\n        \"with no @language\" => {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"The Queen\", \"@language\": \"en\"},\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"vocab\": \"http://example.com/vocab/\",\n            \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"}\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": \"Die Königin\",\n              \"@none\": \"Ihre Majestät\"\n            }\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        \"with no @language using alias of @none\" => {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"The Queen\", \"@language\": \"en\"},\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"vocab\": \"http://example.com/vocab/\",\n            \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"},\n            \"none\": \"@none\"\n          }),\n          output: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\"@id\": \"vocab:label\", \"@container\": \"@language\"},\n              \"none\": \"@none\"\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": \"Die Königin\",\n              \"none\": \"Ihre Majestät\"\n            }\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        'simple map with term direction': {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"ltr\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        'simple map with overriding term direction': {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"ltr\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@direction\": \"rtl\",\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@direction\": \"rtl\",\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        'simple map with overriding null direction': {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@direction\": \"rtl\",\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": null,\n                \"@container\": \"@language\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@direction\": \"rtl\",\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": null,\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        'simple map with mismatching term direction': {\n          input: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"rtl\"}\n              ]\n            }\n          ]),\n          context: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"rtl\",\n                \"@container\": \"@language\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"rtl\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\"\n            },\n            \"vocab:label\": [\n              {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n              {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"}\n            ]\n          }),\n          processingMode: \"json-ld-1.1\"\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"@container: @id\" do\n      {\n        \"Indexes to object not having an @id\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}], \"@id\": \"_:bar\"},\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"idmap\": {\"@container\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n            }\n          })\n        },\n        \"Indexes to object already having an @id\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"@id\": \"_:foo\", \"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}]},\n              {\"@id\": \"http://example.org/bar\", \"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"idmap\": {\"@container\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"_:foo\": {\"label\": \"Object with @id _:bar\"},\n              \"http://example.org/bar\": {\"label\": \"Object with @id <foo>\"}\n            }\n          })\n        },\n        \"Indexes to object using compact IRI @id\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"ex\": \"http://example.org/\",\n            \"idmap\": {\"@container\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"ex\": \"http://example.org/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"ex:foo\": {\"label\": \"Object with @id <foo>\"}\n            }\n          })\n        },\n        \"Indexes using @none\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @id\"}]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"ex\": \"http://example.org/\",\n            \"idmap\": {\"@container\": \"@id\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"ex\": \"http://example.org/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"@none\": {\"label\": \"Object with no @id\"}\n            }\n          })\n        },\n        \"Indexes using @none with alias\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @id\"}]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"ex\": \"http://example.org/\",\n            \"idmap\": {\"@container\": \"@id\"},\n            \"none\": \"@none\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"ex\": \"http://example.org/\",\n              \"idmap\": {\"@container\": \"@id\"},\n              \"none\": \"@none\"\n            },\n            \"idmap\": {\n              \"none\": {\"label\": \"Object with no @id\"}\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@container: @type\" do\n      {\n        \"Indexes to object not having an @type\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}], \"@type\": [\"_:bar\"]},\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example.org/foo\"]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @type _:bar\"}\n            }\n          })\n        },\n        \"Indexes to object already having an @type\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\n                \"@type\": [\"_:bar\", \"_:foo\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}]\n              },\n              {\n                \"@type\": [\"http://example.org/foo\", \"http://example.org/bar\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}]\n              }\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"@type\": \"http://example.org/bar\", \"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"@type\": \"_:foo\", \"label\": \"Object with @type _:bar\"}\n            }\n          })\n        },\n        \"Indexes to object already having multiple @type values\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\n                \"@type\": [\"_:bar\", \"_:foo\", \"_:baz\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}]\n              },\n              {\n                \"@type\": [\"http://example.org/foo\", \"http://example.org/bar\", \"http://example.org/baz\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}]\n              }\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"@type\": [\"http://example.org/bar\", \"http://example.org/baz\"], \"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"@type\": [\"_:foo\", \"_:baz\"], \"label\": \"Object with @type _:bar\"}\n            }\n          })\n        },\n        \"Indexes using compacted @type\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example/Foo\"]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"Foo\": {\"label\": \"Object with @type <foo>\"}\n            }\n          })\n        },\n        \"Indexes using @none\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @type\"}]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"ex\": \"http://example.org/\",\n            \"typemap\": {\"@container\": \"@type\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"ex\": \"http://example.org/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"@none\": {\"label\": \"Object with no @type\"}\n            }\n          })\n        },\n        \"Indexes using @none with alias\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @id\"}]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"ex\": \"http://example.org/\",\n            \"typemap\": {\"@container\": \"@type\"},\n            \"none\": \"@none\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"ex\": \"http://example.org/\",\n              \"typemap\": {\"@container\": \"@type\"},\n              \"none\": \"@none\"\n            },\n            \"typemap\": {\n              \"none\": {\"label\": \"Object with no @id\"}\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@container: @graph\" do\n      {\n        \"Compacts simple graph\" => {\n          input: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }]\n            }]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"input\": {\"@container\": \"@graph\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"value\": \"x\"\n            }\n          })\n        },\n        \"Compacts simple graph with @set\" => {\n          input: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }]\n            }]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"input\": {\"@container\": [\"@graph\", \"@set\"]}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@set\"]}\n            },\n            \"input\": [{\n              \"value\": \"x\"\n            }]\n          })\n        },\n        \"Compacts simple graph with @index\" => {\n          input: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }],\n              \"@index\": \"ndx\"\n            }]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"input\": {\"@container\": \"@graph\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"value\": \"x\"\n            }\n          })\n        },\n        \"Compacts simple graph with @index and multiple nodes\" => {\n          input: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }, {\n                \"http://example.org/value\": [{\"@value\": \"y\"}]\n              }],\n              \"@index\": \"ndx\"\n            }]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"input\": {\"@container\": \"@graph\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"@included\": [{\n                \"value\": \"x\"\n              }, {\n                \"value\": \"y\"\n              }]\n            }\n          })\n        },\n        \"Does not compact graph with @id\" => {\n          input: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }],\n              \"@id\": \"http://example.org/id\"\n            }]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"input\": {\"@container\": \"@graph\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"@id\": \"http://example.org/id\",\n              \"@graph\": {\"value\": \"x\"}\n            }\n          })\n        },\n        \"Odd framing test\" => {\n          input: %([\n            {\n              \"http://example.org/claim\": [\n                {\n                  \"@graph\": [\n                    {\n                      \"@id\": \"http://example.org/1\",\n                      \"https://example.com#test\": [\n                        {\n                          \"@value\": \"foo\"\n                        }\n                      ]\n                    }\n                  ]\n                }\n              ]\n            }\n          ]\n          ),\n          context: %( {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://example.com#\",\n            \"ex\": \"http://example.org/\",\n            \"claim\": {\n              \"@id\": \"ex:claim\",\n              \"@container\": \"@graph\"\n            },\n            \"id\": \"@id\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"https://example.com#\",\n              \"ex\": \"http://example.org/\",\n              \"claim\": {\n                \"@id\": \"ex:claim\",\n                \"@container\": \"@graph\"\n              },\n              \"id\": \"@id\"\n            },\n            \"claim\": {\n              \"id\": \"ex:1\",\n              \"test\": \"foo\"\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n\n      context \"+ @index\" do\n        {\n          \"Compacts simple graph\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@index\": \"g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n              },\n              \"input\": {\n                \"g1\": {\"value\": \"x\"}\n              }\n            })\n          },\n          \"Compacts simple graph with @set\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@index\": \"g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@index\", \"@set\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\", \"@set\"]}\n              },\n              \"input\": {\n                \"g1\": [{\"value\": \"x\"}]\n              }\n            })\n          },\n          \"Compacts simple graph with no @index\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@index\", \"@set\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\", \"@set\"]}\n              },\n              \"input\": {\n                \"@none\": [{\"value\": \"x\"}]\n              }\n            })\n          },\n          \"Does not compact graph with @id\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }],\n                \"@index\": \"g1\",\n                \"@id\": \"http://example.org/id\"\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n              },\n              \"input\": {\n                \"@id\": \"http://example.org/id\",\n                \"@index\": \"g1\",\n                \"@graph\": {\"value\": \"x\"}\n              }\n            })\n          }\n        }.each_pair do |title, params|\n          it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n        end\n      end\n\n      context \"+ @id\" do\n        {\n          \"Compacts simple graph\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"@none\": {\"value\": \"x\"}\n              }\n            })\n          },\n          \"Compacts simple graph with @set\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\", \"@set\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\", \"@set\"]}\n              },\n              \"input\": {\"@none\": [{\"value\": \"x\"}]}\n            })\n          },\n          \"Compacts simple graph with @index\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }],\n                \"@index\": \"ndx\"\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"@none\": {\"value\": \"x\"}\n              }\n            })\n          },\n          \"Compacts graph with @id\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }],\n                \"@id\": \"http://example.org/id\"\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"http://example.org/id\" : {\"value\": \"x\"}\n              }\n            })\n          },\n          \"Compacts graph with @id and @set\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }],\n                \"@id\": \"http://example.org/id\"\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\", \"@set\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\", \"@set\"]}\n              },\n              \"input\": {\n                \"http://example.org/id\" : [{\"value\": \"x\"}]\n              }\n            })\n          },\n          \"Compacts graph without @id\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"@none\" : {\"value\": \"x\"}\n              }\n            })\n          },\n          \"Compacts graph without @id using alias of @none\" => {\n            input: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]),\n            context: %({\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@id\"]},\n              \"none\": \"@none\"\n            }),\n            output: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]},\n                 \"none\": \"@none\"\n              },\n              \"input\": {\n                \"none\" : {\"value\": \"x\"}\n              }\n            })\n          }\n        }.each_pair do |title, params|\n          it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n        end\n      end\n    end\n\n    context \"@included\" do\n      {\n        'Basic Included array': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included\": {\"@id\": \"@included\", \"@container\": \"@set\"}\n            },\n            \"prop\": \"value\",\n            \"included\": [{\n              \"prop\": \"value2\"\n            }]\n          }),\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'Basic Included object': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\"\n            }\n          }),\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'Multiple properties mapping to @included are folded together': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included1\": \"@included\",\n              \"included2\": \"@included\"\n            },\n            \"included1\": [\n              {\"prop\": \"value1\"},\n              {\"prop\": \"value2\"}\n            ]\n          }),\n          input: %([{\n            \"@included\": [\n              {\"http://example.org/prop\": [{\"@value\": \"value1\"}]},\n              {\"http://example.org/prop\": [{\"@value\": \"value2\"}]}\n            ]\n          }])\n        },\n        'Included containing @included': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\",\n              \"@included\": {\n                \"prop\": \"value3\"\n              }\n            }\n          }),\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}],\n              \"@included\": [{\n                \"http://example.org/prop\": [{\"@value\": \"value3\"}]\n              }]\n            }]\n          }])\n        },\n        'Property value with @included': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": {\n              \"@type\": \"Foo\",\n              \"@included\": {\n                \"@type\": \"Bar\"\n              }\n            }\n          }),\n          input: %([{\n            \"http://example.org/prop\": [{\n              \"@type\": [\"http://example.org/Foo\"],\n              \"@included\": [{\n                \"@type\": [\"http://example.org/Bar\"]\n              }]\n            }]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"@nest\" do\n      {\n        \"Indexes to @nest for property with @nest\" => {\n          input: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"p2\": {\"@nest\": \"@nest\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"p2\": {\"@nest\": \"@nest\"}\n            },\n            \"p1\": \"v1\",\n            \"@nest\": {\n              \"p2\": \"v2\"\n            }\n          })\n        },\n        \"Indexes to @nest for all properties with @nest\" => {\n          input: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"p1\": {\"@nest\": \"@nest\"},\n            \"p2\": {\"@nest\": \"@nest\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"p1\": {\"@nest\": \"@nest\"},\n              \"p2\": {\"@nest\": \"@nest\"}\n            },\n            \"@nest\": {\n              \"p1\": \"v1\",\n              \"p2\": \"v2\"\n            }\n          })\n        },\n        \"Nests using alias of @nest\" => {\n          input: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"nest\": \"@nest\",\n            \"p2\": {\"@nest\": \"nest\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": \"@nest\",\n              \"p2\": {\"@nest\": \"nest\"}\n            },\n            \"p1\": \"v1\",\n            \"nest\": {\n              \"p2\": \"v2\"\n            }\n          })\n        },\n        \"Arrays of nested values\" => {\n          input: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}, {\"@value\": \"v3\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"p2\": {\"@nest\": \"@nest\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"p2\": {\"@nest\": \"@nest\"}\n            },\n            \"p1\": \"v1\",\n            \"@nest\": {\n              \"p2\": [\"v2\", \"v3\"]\n            }\n          })\n        },\n        \"Nested @container: @list\" => {\n          input: %([{\n            \"http://example.org/list\": [{\"@list\": [\n              {\"@value\": \"a\"},\n              {\"@value\": \"b\"}\n            ]}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"list\": {\"@container\": \"@list\", \"@nest\": \"nestedlist\"},\n            \"nestedlist\": \"@nest\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"list\": {\"@container\": \"@list\", \"@nest\": \"nestedlist\"},\n              \"nestedlist\": \"@nest\"\n            },\n            \"nestedlist\": {\n              \"list\": [\"a\", \"b\"]\n            }\n          })\n        },\n        \"Nested @container: @index\" => {\n          input: %([{\n            \"http://example.org/index\": [\n              {\"@value\": \"a\", \"@index\": \"A\"},\n              {\"@value\": \"b\", \"@index\": \"B\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"index\": {\"@container\": \"@index\", \"@nest\": \"nestedindex\"},\n            \"nestedindex\": \"@nest\"\n            }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"index\": {\"@container\": \"@index\", \"@nest\": \"nestedindex\"},\n              \"nestedindex\": \"@nest\"\n            },\n            \"nestedindex\": {\n              \"index\": {\n                \"A\": \"a\",\n                \"B\": \"b\"\n              }\n            }\n          })\n        },\n        \"Nested @container: @language\" => {\n          input: %([{\n            \"http://example.org/container\": [\n              {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n              {\"@value\": \"The Queen\", \"@language\": \"en\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"container\": {\"@container\": \"@language\", \"@nest\": \"nestedlanguage\"},\n            \"nestedlanguage\": \"@nest\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"container\": {\"@container\": \"@language\", \"@nest\": \"nestedlanguage\"},\n              \"nestedlanguage\": \"@nest\"\n            },\n            \"nestedlanguage\": {\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": \"Die Königin\"\n              }\n            }\n          })\n        },\n        \"Nested @container: @type\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}], \"@type\": [\"_:bar\"]},\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example.org/foo\"]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\", \"@nest\": \"nestedtypemap\"},\n            \"nestedtypemap\": \"@nest\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\", \"@nest\": \"nestedtypemap\"},\n              \"nestedtypemap\": \"@nest\"\n            },\n            \"nestedtypemap\": {\n              \"typemap\": {\n                \"_:bar\": {\"label\": \"Object with @type _:bar\"},\n                \"http://example.org/foo\": {\"label\": \"Object with @type <foo>\"}\n              }\n            }\n          })\n        },\n        \"Nested @container: @id\" => {\n          input: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}], \"@id\": \"_:bar\"},\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"idmap\": {\"@container\": \"@id\", \"@nest\": \"nestedidmap\"},\n            \"nestedidmap\": \"@nest\"\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\", \"@nest\": \"nestedidmap\"},\n              \"nestedidmap\": \"@nest\"\n            },\n            \"nestedidmap\": {\n              \"idmap\": {\n                \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n                \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n              }\n            }\n          })\n        },\n        \"Multiple nest aliases\" => {\n          input: %({\n            \"http://example.org/foo\": \"bar\",\n            \"http://example.org/bar\": \"foo\"\n          }),\n          context: %({\n            \"@vocab\": \"http://example.org/\",\n            \"foonest\": \"@nest\",\n            \"barnest\": \"@nest\",\n            \"foo\": {\"@nest\": \"foonest\"},\n            \"bar\": {\"@nest\": \"barnest\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"foonest\": \"@nest\",\n              \"barnest\": \"@nest\",\n              \"foo\": {\"@nest\": \"foonest\"},\n              \"bar\": {\"@nest\": \"barnest\"}\n            },\n            \"barnest\": {\"bar\": \"foo\"},\n            \"foonest\": {\"foo\": \"bar\"}\n          })\n        },\n        \"Nest term not defined\" => {\n          input: %({\n            \"http://example/foo\": \"bar\"\n          }),\n          context: %({\n            \"term\": {\"@id\": \"http://example/foo\", \"@nest\": \"unknown\"}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@graph\" do\n      {\n        \"Uses @graph given mutliple inputs\" => {\n          input: %([\n            {\"http://example.com/foo\": [\"foo\"]},\n            {\"http://example.com/bar\": [\"bar\"]}\n          ]),\n          context: %({\"ex\": \"http://example.com/\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.com/\"},\n            \"@graph\": [\n              {\"ex:foo\": \"foo\"},\n              {\"ex:bar\": \"bar\"}\n            ]\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n\n    context \"scoped context\" do\n      {\n        \"adding new term\" => {\n          input: %([{\n            \"http://example/foo\": [{\"http://example.org/bar\": [{\"@value\": \"baz\"}]}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"foo\": {\n              \"bar\": \"baz\"\n            }\n          })\n        },\n        \"overriding a term\" => {\n          input: %([\n            {\n              \"http://example/foo\": [{\"http://example/bar\": [{\"@id\": \"http://example/baz\"}]}]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n            \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n              \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n            },\n            \"foo\": {\n              \"bar\": \"http://example/baz\"\n            }\n          })\n        },\n        \"property and value with different terms mapping to the same expanded property\" => {\n          input: %([\n            {\n              \"http://example/foo\": [{\n                \"http://example/bar\": [\n                  {\"@value\": \"baz\"}\n                ]}\n              ]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"foo\": {\"@context\": {\"Bar\": {\"@id\": \"bar\"}}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"Bar\": {\"@id\": \"bar\"}}}\n            },\n            \"foo\": {\n              \"Bar\": \"baz\"\n            }\n          })\n        },\n        \"deep @context affects nested nodes\" => {\n          input: %([\n            {\n              \"http://example/foo\": [{\n                \"http://example/bar\": [{\n                  \"http://example/baz\": [{\"@id\": \"http://example/buzz\"}]\n                }]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n            },\n            \"foo\": {\n              \"bar\": {\n                \"baz\": \"buzz\"\n              }\n            }\n          })\n        },\n        \"scoped context layers on intemediate contexts\" => {\n          input: %([{\n            \"http://example/a\": [{\n              \"http://example.com/c\": [{\"@value\": \"C in example.com\"}],\n              \"http://example/b\": [{\n                \"http://example.com/a\": [{\"@value\": \"A in example.com\"}],\n                \"http://example.org/c\": [{\"@value\": \"C in example.org\"}]\n              }]\n            }],\n            \"http://example/c\": [{\"@value\": \"C in example\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"b\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"b\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n            },\n            \"a\": {\n              \"b\": {\n                \"c\": \"C in example.org\",\n                \"http://example.com/a\": \"A in example.com\"\n              },\n              \"http://example.com/c\": \"C in example.com\"\n            },\n            \"c\": \"C in example\"\n          })\n        },\n        \"Raises InvalidTermDefinition if processingMode is 1.0\" => {\n          input: %([{\n            \"http://example/foo\": [{\"http://example.org/bar\": [{\"@value\": \"baz\"}]}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n          }),\n          processingMode: 'json-ld-1.0',\n          validate: true,\n          exception: JSON::LD::JsonLdError::InvalidTermDefinition\n        },\n        'Scoped on id map': {\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"schema\": \"http://schema.org/\",\n              \"name\": \"schema:name\",\n              \"body\": \"schema:articleBody\",\n              \"words\": \"schema:wordCount\",\n              \"post\": {\n                \"@id\": \"schema:blogPost\",\n                \"@container\": \"@id\",\n                \"@context\": {\n                  \"@base\": \"http://example.com/posts/\"\n                }\n              }\n            },\n            \"@id\": \"http://example.com/\",\n            \"@type\": \"schema:Blog\",\n            \"name\": \"World Financial News\",\n            \"post\": {\n              \"1/en\": {\n                \"body\": \"World commodities were up today with heavy trading of crude oil...\",\n                \"words\": 1539\n              },\n              \"1/de\": {\n                \"body\": \"Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...\",\n                \"words\": 1204\n              }\n            }\n          }),\n          input: %([{\n            \"@id\": \"http://example.com/\",\n            \"@type\": [\"http://schema.org/Blog\"],\n            \"http://schema.org/name\": [{\"@value\": \"World Financial News\"}],\n            \"http://schema.org/blogPost\": [{\n              \"@id\": \"http://example.com/posts/1/en\",\n              \"http://schema.org/articleBody\": [\n                {\"@value\": \"World commodities were up today with heavy trading of crude oil...\"}\n              ],\n              \"http://schema.org/wordCount\": [{\"@value\": 1539}]\n            }, {\n              \"@id\": \"http://example.com/posts/1/de\",\n              \"http://schema.org/articleBody\": [\n                {\"@value\": \"Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...\"}\n              ],\n              \"http://schema.org/wordCount\": [{\"@value\": 1204}]\n            }]\n          }])\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"scoped context on @type\" do\n      {\n        \"adding new term\" => {\n          input: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example.org/bar\": [{\"@value\": \"baz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"a\": {\"@type\": \"Foo\", \"bar\": \"baz\"}\n          })\n        },\n        \"overriding a term\" => {\n          input: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example/bar\": [{\"@id\": \"http://example/baz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"Foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n            \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n              \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n            },\n            \"a\": {\"@type\": \"Foo\", \"bar\": \"http://example/baz\"}\n          })\n        },\n        \"alias of @type\" => {\n          input: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example.org/bar\": [{\"@value\": \"baz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"type\": \"@type\",\n            \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"type\": \"@type\",\n              \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"a\": {\"type\": \"Foo\", \"bar\": \"baz\"}\n          })\n        },\n        \"deep @context does not affect nested nodes\" => {\n          input: %([\n            {\n              \"@type\": [\"http://example/Foo\"],\n              \"http://example/bar\": [{\n                \"http://example/baz\": [{\"@id\": \"http://example/buzz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"Foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n            },\n            \"@type\": \"Foo\",\n            \"bar\": {\"baz\": {\"@id\": \"http://example/buzz\"}}\n          })\n        },\n        \"scoped context layers on intemediate contexts\" => {\n          input: %([{\n            \"http://example/a\": [{\n              \"@type\": [\"http://example/B\"],\n              \"http://example.com/a\": [{\"@value\": \"A in example.com\"}],\n              \"http://example.org/c\": [{\"@value\": \"C in example.org\"}]\n            }],\n            \"http://example/c\": [{\"@value\": \"C in example\"}]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"B\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"B\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n            },\n            \"a\": {\n              \"@type\": \"B\",\n              \"c\": \"C in example.org\",\n              \"http://example.com/a\": \"A in example.com\"\n            },\n            \"c\": \"C in example\"\n          })\n        },\n        \"orders lexicographically\" => {\n          input: %([{\n            \"@type\": [\"http://example/t2\", \"http://example/t1\"],\n            \"http://example.org/foo\": [\n              {\"@id\": \"urn:bar\"}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"t1\": {\"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\"}}},\n            \"t2\": {\"@context\": {\"foo\": {\"@id\": \"http://example.org/foo\", \"@type\": \"@id\"}}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"t1\": {\"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\"}}},\n              \"t2\": {\"@context\": {\"foo\": {\"@id\": \"http://example.org/foo\", \"@type\": \"@id\"}}}\n            },\n            \"@type\": [\"t2\", \"t1\"],\n            \"foo\": \"urn:bar\"\n          })\n        },\n        \"with @container: @type\" => {\n          input: %([{\n            \"http://example/typemap\": [\n              {\"http://example.org/a\": [{\"@value\": \"Object with @type <Type>\"}], \"@type\": [\"http://example/Type\"]}\n            ]\n          }]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"typemap\": {\"@container\": \"@type\"},\n            \"Type\": {\"@context\": {\"a\": \"http://example.org/a\"}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"},\n              \"Type\": {\"@context\": {\"a\": \"http://example.org/a\"}}\n            },\n            \"typemap\": {\n              \"Type\": {\"a\": \"Object with @type <Type>\"}\n            }\n          })\n        },\n        \"Raises InvalidTermDefinition if processingMode is 1.0\" => {\n          input: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example.org/bar\": [{\"@value\": \"baz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n          }),\n          processingMode: 'json-ld-1.0',\n          validate: true,\n          exception: JSON::LD::JsonLdError::InvalidTermDefinition\n        },\n        \"applies context for all values\" => {\n          input: %([\n            {\n              \"@id\": \"http://example.org/id\",\n              \"@type\": [\"http://example/type\"],\n              \"http://example/a\": [{\n                \"@id\": \"http://example.org/Foo\",\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example/bar\": [{\"@id\": \"http://example.org/baz\"}]\n              }]\n            }\n          ]),\n          context: %({\n            \"@vocab\": \"http://example/\",\n            \"id\": \"@id\",\n            \"type\": \"@type\",\n            \"Foo\": {\"@context\": {\"id\": null, \"type\": null}}\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"Foo\": {\"@context\": {\"id\": null, \"type\": null}}\n            },\n            \"id\": \"http://example.org/id\",\n            \"type\": \"http://example/type\",\n            \"a\": {\n              \"@id\": \"http://example.org/Foo\",\n              \"@type\": \"Foo\",\n              \"bar\": {\"@id\": \"http://example.org/baz\"}\n            }\n          })\n        }\n      }.each_pair do |title, params|\n        it(title) { run_compact({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"compact IRI selection\" do\n      {\n        \"does not compact using expanded term in 1.0\" => {\n          input: %({\"http://example.org/foo\": \"term\"}),\n          context: %({\"ex\": {\"@id\": \"http://example.org/\"}}),\n          output: %({\n            \"@context\": {\"ex\": {\"@id\": \"http://example.org/\"}},\n            \"http://example.org/foo\": \"term\"\n          }),\n          processingMode: \"json-ld-1.0\"\n        },\n        \"does not compact using expanded term in 1.1\" => {\n          input: %({\"http://example.org/foo\": \"term\"}),\n          context: %({\"ex\": {\"@id\": \"http://example.org/\"}}),\n          output: %({\n            \"@context\": {\"ex\": {\"@id\": \"http://example.org/\"}},\n            \"http://example.org/foo\": \"term\"\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        \"does not compact using simple term not ending in gen-delim\" => {\n          input: %({\"http://example.org/foo\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/f\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/f\"},\n            \"http://example.org/foo\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim ('/')\" => {\n          input: %({\"http://example.org/foo\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:foo\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim (':')\" => {\n          input: %({\"http://example.org/foo:bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo:\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo:\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim ('?')\" => {\n          input: %({\"http://example.org/foo?bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo?\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo?\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim ('#')\" => {\n          input: %({\"http://example.org/foo#bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo#\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo#\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim ('[')\" => {\n          input: %({\"http://example.org/foo[bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo[\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo[\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim (']')\" => {\n          input: %({\"http://example.org/foo]bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo]\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo]\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using simple term ending in gen-delim ('@')\" => {\n          input: %({\"http://example.org/foo@bar\": \"term\"}),\n          context: %({\"ex\": \"http://example.org/foo@\"}),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/foo@\"},\n            \"ex:bar\": \"term\"\n          })\n        },\n        \"compacts using base if @vocab: relative\" => {\n          input: %({\"http://example.org/foo/bar\": \"term\"}),\n          context: %({\"@base\": \"http://example.org/foo/\", \"@vocab\": \"\"}),\n          output: %({\n            \"@context\": {\"@base\": \"http://example.org/foo/\", \"@vocab\": \"\"},\n            \"bar\": \"term\"\n          })\n        }\n      }.each do |title, params|\n        it(title) { run_compact(params) }\n      end\n    end\n  end\n\n  context \"html\" do\n    {\n      'Compacts embedded JSON-LD script element': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"foo\": [\"bar\"]\n        })\n      },\n      'Compacts first script element': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"foo\": [\"bar\"]\n        })\n      },\n      'Compacts targeted script element': {\n        input: %(\n        <html>\n          <head>\n            <script id=\"first\" type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script id=\"second\" type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"ex\": \"http://example.com/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@graph\": [\n            {\"ex:foo\": \"foo\"},\n            {\"ex:bar\": \"bar\"}\n          ]\n        }),\n        base: \"http://example.org/doc#second\"\n      },\n      'Compacts all script elements with extractAllScripts option': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\n          \"ex\": \"http://example.com/\",\n          \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.com/\",\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [\n            {\"foo\": [\"bar\"]},\n            {\n              \"@graph\": [\n                {\"ex:foo\": \"foo\"},\n                {\"ex:bar\": \"bar\"}\n              ]\n            }\n          ]\n        }),\n        extractAllScripts: true\n      }\n    }.each do |title, params|\n      it(title) do\n        params[:input] = StringIO.new(params[:input])\n        params[:input].send(:define_singleton_method, :content_type) { \"text/html\" }\n        run_compact params.merge(validate: true)\n      end\n    end\n  end\n\n  context \"JSON-LD-star\" do\n    {\n      'subject-iii': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"http://example/s1\",\n            \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n         \"@context\": {\"ex\": \"http://example/\"},\n         \"@id\": {\n           \"@id\": \"ex:s1\",\n           \"ex:p1\": {\"@id\": \"ex:o1\"}\n         },\n         \"ex:p\": {\"@id\": \"ex:o\"}\n       })\n      },\n      'subject-iib': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"http://example/s1\",\n            \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"ex:s1\",\n            \"ex:p1\": {\"@id\": \"_:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-iil': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"http://example/s1\",\n            \"http://example/p1\": [{\"@value\": \"o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"ex:s1\",\n            \"ex:p1\": \"o1\"\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bii': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": {\"@id\": \"ex:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bib': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": {\"@id\": \"_:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bil': {\n        input: %([{\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"http://example/p1\": [{\"@value\": \"o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": \"o1\"\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'object-iii': {\n        input: %([{\n          \"@id\": \"http://example/s\",\n          \"http://example/p\": [{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n            }\n          }]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": {\"@id\": \"ex:o1\"}\n            }\n          }\n        })\n      },\n      'object-iib': {\n        input: %([{\n          \"@id\": \"http://example/s\",\n          \"http://example/p\": [{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n            }\n          }]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": {\"@id\": \"_:o1\"}\n            }\n          }\n        })\n      },\n      'object-iil': {\n        input: %([{\n          \"@id\": \"http://example/s\",\n          \"http://example/p\": [{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@value\": \"o1\"}]\n            }\n          }]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": \"o1\"\n            }\n          }\n        })\n      },\n      'recursive-subject': {\n        input: %([{\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"http://example/s2\",\n              \"http://example/p2\": [{\"@id\": \"http://example/o2\"}]\n            },\n            \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n          },\n          \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n        }]),\n        context: %({\"ex\": \"http://example/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:s2\",\n              \"ex:p2\": {\"@id\": \"ex:o2\"}\n            },\n            \"ex:p1\": {\"@id\": \"ex:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      }\n    }.each do |name, params|\n      it(name) { run_compact(params.merge(rdfstar: true)) }\n    end\n  end\n\n  context \"problem cases\" do\n    {\n      'issue json-ld-framing#64': {\n        input: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\"\n          },\n          \"@id\": \"http://example.org/1\",\n          \"@type\": \"HumanMadeObject\",\n          \"produced_by\": {\n            \"@type\": \"Production\",\n            \"_label\": \"Top Production\",\n            \"part\": {\n              \"@type\": \"Production\",\n              \"_label\": \"Test Part\"\n            }\n          }\n        }),\n        context: %({\n          \"@version\": 1.1,\n          \"@vocab\": \"http://example.org/vocab#\",\n          \"Production\": {\n            \"@context\": {\n              \"part\": {\n                \"@type\": \"@id\",\n                \"@container\": \"@set\"\n              }\n            }\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\",\n            \"Production\": {\n              \"@context\": {\n                \"part\": {\n                  \"@type\": \"@id\",\n                  \"@container\": \"@set\"\n                }\n              }\n            }\n          },\n          \"@id\": \"http://example.org/1\",\n          \"@type\": \"HumanMadeObject\",\n          \"produced_by\": {\n            \"@type\": \"Production\",\n            \"part\": [{\n              \"@type\": \"Production\",\n              \"_label\": \"Test Part\"\n            }],\n            \"_label\": \"Top Production\"\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      \"ruby-rdf/json-ld#62\": {\n        input: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\"\n          },\n          \"@type\": \"Event\",\n          \"location\": {\n            \"@id\": \"http://kg.artsdata.ca/resource/K11-200\"\n          }\n        }),\n        context: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\",\n            \"location\": {\n              \"@type\": \"@id\",\n              \"@container\": \"@type\"\n            }\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\",\n            \"location\": {\n              \"@type\": \"@id\",\n              \"@container\": \"@type\"\n            }\n          },\n          \"@type\": \"Event\",\n          \"location\": {\n            \"@none\": \"http://kg.artsdata.ca/resource/K11-200\"\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      }\n    }.each do |title, params|\n      it title do\n        run_compact(params)\n      end\n    end\n  end\n\n  def run_compact(params)\n    input = params[:input]\n    output = params[:output]\n    context = params[:context]\n    params[:base] ||= nil\n    context ||= output # Since it will have the context\n    input = JSON.parse(input) if input.is_a?(String)\n    output = JSON.parse(output) if output.is_a?(String)\n    context = JSON.parse(context) if context.is_a?(String)\n    context = context['@context'] if context.key?('@context')\n    pending params.fetch(:pending, \"test implementation\") unless input\n    if params[:exception]\n      expect { JSON::LD::API.compact(input, context, logger: logger, **params) }.to raise_error(params[:exception])\n    else\n      jld = nil\n      if params[:write]\n        expect do\n          jld = JSON::LD::API.compact(input, context, logger: logger, **params)\n        end.to write(params[:write]).to(:error)\n      else\n        expect { jld = JSON::LD::API.compact(input, context, logger: logger, **params) }.not_to write.to(:error)\n      end\n\n      expect(jld).to produce_jsonld(output, logger)\n\n      # Compare expanded jld/output too to make sure list values remain ordered\n      exp_jld = JSON::LD::API.expand(jld, processingMode: 'json-ld-1.1', rdfstar: params[:rdfstar])\n      exp_output = JSON::LD::API.expand(output, processingMode: 'json-ld-1.1', rdfstar: params[:rdfstar])\n      expect(exp_jld).to produce_jsonld(exp_output, logger)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/conneg_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rack/test'\n\ndescribe JSON::LD::ContentNegotiation do\n  include Rack::Test::Methods\n  let(:logger) { RDF::Spec.logger }\n\n  let(:app) do\n    described_class.new(double(\"Target Rack Application\", :call => [200, {}, @results || \"A String\"]))\n  end\n\n  let(:example_context) do\n    JSON::LD::API::RemoteDocument.new('{\n      \"@context\": {\n        \"@vocab\": \"http://example.com/\",\n        \"id\": \"@id\",\n        \"type\": \"@type\"\n      }\n    }', documentUrl: \"http://example.com\")\n  end\n\n  before do\n    JSON::LD::Writer.default_context = 'http://example.com/context'\n    allow(JSON::LD::API).to receive(:documentLoader).with('http://example.com/context', any_args).and_yield(example_context)\n  end\n\n  after do\n    JSON::LD::Writer.default_context = nil\n  end\n\n  describe \"#parse_accept_header\" do\n    {\n      \"application/n-triples, application/ld+json;q=0.5\" => %w[application/ld+json],\n      \"application/ld+json, application/ld+json;profile=http://www.w3.org/ns/json-ld#compacted\" =>\n        %w[application/ld+json;profile=http://www.w3.org/ns/json-ld#compacted application/ld+json]\n    }.each do |accept, content_types|\n      it \"returns #{content_types.inspect} given #{accept.inspect}\" do\n        expect(app.send(:parse_accept_header, accept)).to eq content_types\n      end\n    end\n  end\n\n  describe \"#find_content_type_for_media_range\" do\n    {\n      \"*/*\" => \"application/ld+json\",\n      \"application/*\" => \"application/ld+json\",\n      \"application/json\" => \"application/ld+json\",\n      \"application/json;profile=http://www.w3.org/ns/json-ld#compacted\" =>\n        \"application/ld+json;profile=http://www.w3.org/ns/json-ld#compacted\",\n      \"text/plain\" => nil\n    }.each do |media_range, content_type|\n      it \"returns #{content_type.inspect} for #{media_range.inspect}\" do\n        expect(app.send(:find_content_type_for_media_range, media_range)).to eq content_type\n      end\n    end\n  end\n\n  describe \"#call\" do\n    let(:frame) do\n      JSON::LD::API::RemoteDocument.new('{\n        \"@context\": {\n          \"dc\": \"http://purl.org/dc/elements/1.1/\",\n          \"ex\": \"http://example.org/vocab#\"\n        },\n        \"@type\": \"ex:Library\",\n        \"ex:contains\": {\n          \"@type\": \"ex:Book\",\n          \"ex:contains\": {\n            \"@type\": \"ex:Chapter\"\n          }\n        }\n      }', documentUrl: \"http://conneg.example.com/frame\")\n    end\n    let(:context) do\n      JSON::LD::API::RemoteDocument.new('{\n        \"@context\": {\n          \"dc\": \"http://purl.org/dc/elements/1.1/\",\n          \"ex\": \"http://example.org/vocab#\"\n        }\n      }', documentUrl: \"http://conneg.example.com/context\")\n    end\n\n    before do\n      allow(JSON::LD::API).to receive(:documentLoader).with(\"http://conneg.example.com/context\",\n        any_args).and_yield(context)\n      allow(JSON::LD::API).to receive(:documentLoader).with(\"http://conneg.example.com/frame\",\n        any_args).and_yield(frame)\n    end\n\n    context \"with text result\" do\n      it \"returns text unchanged\" do\n        get '/'\n        expect(last_response.body).to eq 'A String'\n      end\n    end\n\n    context \"with object result\" do\n      before do\n        @results = LIBRARY_INPUT\n      end\n\n      it \"returns expanded result\" do\n        get '/'\n        expect(JSON.parse(last_response.body)).to produce_jsonld(LIBRARY_INPUT, logger)\n      end\n\n      context \"with Accept\" do\n        {\n          \"application/n-triples\" => \"406 Not Acceptable (No appropriate combinaion of media-type and parameters found)\\n\",\n          \"application/json\" => LIBRARY_INPUT,\n          \"application/ld+json\" => LIBRARY_INPUT,\n          %(application/ld+json;profile=http://www.w3.org/ns/json-ld#expanded) =>\n                                                               LIBRARY_EXPANDED,\n\n          %(application/ld+json;profile=http://www.w3.org/ns/json-ld#compacted) =>\n                                                               LIBRARY_COMPACTED_DEFAULT,\n\n          %(application/ld+json;profile=http://www.w3.org/ns/json-ld#flattened) =>\n                                                               LIBRARY_FLATTENED_EXPANDED,\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#flattened http://www.w3.org/ns/json-ld#expanded\") =>\n                                                               LIBRARY_FLATTENED_EXPANDED,\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#expanded http://www.w3.org/ns/json-ld#flattened\") =>\n                                                               LIBRARY_FLATTENED_EXPANDED,\n\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#flattened http://www.w3.org/ns/json-ld#compacted\") =>\n                                                               LIBRARY_FLATTENED_COMPACTED_DEFAULT,\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#compacted http://www.w3.org/ns/json-ld#flattened\") =>\n                                                               LIBRARY_FLATTENED_COMPACTED_DEFAULT,\n\n          %(application/ld+json;profile=http://www.w3.org/ns/json-ld#framed) =>\n                                                               \"406 Not Acceptable (framed profile without a frame)\\n\",\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#framed http://www.w3.org/ns/json-ld#expanded\") =>\n                                                               \"406 Not Acceptable (framed profile without a frame)\\n\",\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#expanded http://www.w3.org/ns/json-ld#framed\") =>\n                                                               \"406 Not Acceptable (framed profile without a frame)\\n\",\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#framed http://www.w3.org/ns/json-ld#compacted\") =>\n                                                               \"406 Not Acceptable (framed profile without a frame)\\n\",\n          %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#compacted http://www.w3.org/ns/json-ld#framed\") =>\n                                                               \"406 Not Acceptable (framed profile without a frame)\\n\"\n        }.each do |accepts, result|\n          context accepts do\n            before do\n              get '/', {}, { \"HTTP_ACCEPT\" => accepts }\n            end\n\n            it \"status\" do\n              expect(last_response.status).to satisfy(\"be 200 or 406\") { |x| [200, 406].include?(x) }\n            end\n\n            it \"sets content type\" do\n              expect(last_response.content_type).to eq(last_response.status == 406 ? 'text/plain' : 'application/ld+json')\n            end\n\n            it \"returns serialization\" do\n              if last_response.status == 406\n                expect(last_response.body).to eq result\n              else\n                expect(JSON.parse(last_response.body)).to produce_jsonld(result, logger)\n              end\n            end\n          end\n        end\n      end\n\n      context \"with Link\" do\n        {\n          \"compacted with context\" => {\n            accept: %(application/ld+json;profile=http://www.w3.org/ns/json-ld#compacted),\n            link: %(<http://conneg.example.com/context> rel=\"http://www.w3.org/ns/json-ld#context\"),\n            result: LIBRARY_COMPACTED\n          },\n          \"flattened with context\" => {\n            accept: %(application/ld+json;profile=http://www.w3.org/ns/json-ld#flattened),\n            link: %(<http://conneg.example.com/context> rel=\"http://www.w3.org/ns/json-ld#context\"),\n            result: LIBRARY_FLATTENED_COMPACTED\n          },\n          \"flattened and compacted with context\" => {\n            accept: %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#flattened http://www.w3.org/ns/json-ld#compacted\"),\n            link: %(<http://conneg.example.com/context> rel=\"http://www.w3.org/ns/json-ld#context\"),\n            result: LIBRARY_FLATTENED_COMPACTED\n          },\n          \"compacted and flattened with context\" => {\n            accept: %(application/ld+json;profile=\"http://www.w3.org/ns/json-ld#compacted http://www.w3.org/ns/json-ld#flattened\"),\n            link: %(<http://conneg.example.com/context> rel=\"http://www.w3.org/ns/json-ld#context\"),\n            result: LIBRARY_FLATTENED_COMPACTED\n          },\n          \"framed with frame\" => {\n            accept: %(application/ld+json;profile=http://www.w3.org/ns/json-ld#framed),\n            link: %(<http://conneg.example.com/frame> rel=\"http://www.w3.org/ns/json-ld#frame\"),\n            result: LIBRARY_FRAMED\n          },\n\n          \"framed with context\" => {\n            accept: %(application/ld+json;profile=http://www.w3.org/ns/json-ld#framed),\n            link: %(<http://conneg.example.com/context> rel=\"http://www.w3.org/ns/json-ld#context\"),\n            result: \"406 Not Acceptable (framed profile without a frame)\\n\"\n          }\n        }.each do |name, params|\n          context name do\n            before do\n              get '/', {}, { \"HTTP_ACCEPT\" => params[:accept], \"HTTP_LINK\" => params[:link] }\n            end\n\n            it \"status\" do\n              expect(last_response.status).to satisfy(\"be 200 or 406\") { |x| [200, 406].include?(x) }\n            end\n\n            it \"sets content type\" do\n              expect(last_response.content_type).to eq(last_response.status == 406 ? 'text/plain' : 'application/ld+json')\n            end\n\n            it \"returns serialization\" do\n              if last_response.status == 406\n                expect(last_response.body).to eq params[:result]\n              else\n                expect(JSON.parse(last_response.body)).to produce_jsonld(params[:result], logger)\n              end\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/context_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/xsd'\nrequire 'rdf/spec/reader'\n\n# Add for testing\nmodule JSON\n  module LD\n    class Context\n      # Retrieve type mappings\n      def coercions\n        term_definitions.transform_values(&:type_mapping)\n      end\n\n      def containers\n        term_definitions.transform_values(&:container_mapping)\n      end\n    end\n  end\nend\n\ndescribe JSON::LD::Context do\n  subject { context }\n\n  let(:logger) { RDF::Spec.logger }\n  let(:context) do\n    described_class.new(logger: logger, validate: true, processingMode: \"json-ld-1.1\", compactToRelative: true)\n  end\n  let(:remote_doc) do\n    JSON::LD::API::RemoteDocument.new('{\n      \"@context\": {\n        \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n        \"name\": \"http://xmlns.com/foaf/0.1/name\",\n        \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n        \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n      }\n    }',\n      documentUrl: \"http://example.com/context\",\n      contentType: \"application/ld+json\")\n  end\n\n  describe \".parse\" do\n    let(:ctx) do\n      [\n        { \"foo\" => \"http://example.com/foo\" },\n        { \"bar\" => \"foo\" }\n      ]\n    end\n\n    it \"merges definitions from each context\" do\n      ec = described_class.parse(ctx)\n      expect(ec.send(:mappings)).to produce({\n        \"foo\" => \"http://example.com/foo\",\n        \"bar\" => \"http://example.com/foo\"\n      }, logger)\n    end\n  end\n\n  describe \"#parse\" do\n    context \"remote\" do\n      it \"fails given a missing remote @context\" do\n        described_class.instance_variable_set(:@cache, nil)\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_raise(IOError)\n        expect do\n          subject.parse(\"http://example.com/context\")\n        end.to raise_error(JSON::LD::JsonLdError::LoadingRemoteContextFailed, %r{http://example.com/context})\n      end\n\n      it \"creates mappings\" do\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        ec = subject.parse(\"http://example.com/context\")\n        expect(ec.send(:mappings)).to produce({\n          \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n          \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n          \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\"\n        }, logger)\n      end\n\n      it \"retrieves and parses a remote context document in HTML using the context profile\" do\n        remote_doc =\n          JSON::LD::API::RemoteDocument.new(+'\n            <html><head>\n            <script>Not This</script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"homepage\": {\"@id\": \"http://example.com/this-would-be-wrong\", \"@type\": \"@id\"},\n                \"avatar\": {\"@id\": \"http://example.com/this-would-be-wrong\", \"@type\": \"@id\"}\n              }\n            }\n            </script>\n            <script type=\"application/ld+json;profile=http://www.w3.org/ns/json-ld#context\">\n            {\n              \"@context\": {\n                \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n                \"name\": \"http://xmlns.com/foaf/0.1/name\",\n                \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n                \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n              }\n            }\n            </script>\n            <script type=\"application/ld+json;profile=http://www.w3.org/ns/json-ld#context\">\n            {\n              \"@context\": {\n                \"homepage\": {\"@id\": \"http://example.com/this-would-also-be-wrong\", \"@type\": \"@id\"},\n                \"avatar\": {\"@id\": \"http://example.com/this-would-also-be-wrong\", \"@type\": \"@id\"}\n              }\n            }\n            </script>\n            </head></html>\n            ',\n            documentUrl: \"http://example.com/context\",\n            contentType: \"text/html\")\n\n        described_class.instance_variable_set(:@cache, nil)\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        ec = subject.parse(\"http://example.com/context\")\n        expect(ec.send(:mappings)).to produce({\n          \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n          \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n          \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\"\n        }, logger)\n      end\n\n      it \"retrieves and parses a remote context document in HTML\" do\n        remote_doc =\n          JSON::LD::API::RemoteDocument.new(+'\n            <html><head>\n            <script>Not This</script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n                \"name\": \"http://xmlns.com/foaf/0.1/name\",\n                \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"},\n                \"avatar\": {\"@id\": \"http://xmlns.com/foaf/0.1/avatar\", \"@type\": \"@id\"}\n              }\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"homepage\": {\"@id\": \"http://example.com/this-would-also-be-wrong\", \"@type\": \"@id\"},\n                \"avatar\": {\"@id\": \"http://example.com/this-would-also-be-wrong\", \"@type\": \"@id\"}\n              }\n            }\n            </script>\n            </head></html>\n            ',\n            documentUrl: \"http://example.com/context\",\n            contentType: \"text/html\")\n        described_class.instance_variable_set(:@cache, nil)\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        ec = subject.parse(\"http://example.com/context\")\n        expect(ec.send(:mappings)).to produce({\n          \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n          \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n          \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\"\n        }, logger)\n      end\n\n      it \"notes non-existing @context\" do\n        expect { subject.parse(StringIO.new(\"{}\")) }.to raise_error(JSON::LD::JsonLdError::InvalidRemoteContext)\n      end\n\n      it \"parses a referenced context at a relative URI\" do\n        described_class.instance_variable_set(:@cache, nil)\n        rd1 = JSON::LD::API::RemoteDocument.new(%({\"@context\": \"context\"}), base_uri: \"http://example.com/c1\")\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/c1\", anything).and_yield(rd1)\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        ec = subject.parse(\"http://example.com/c1\")\n        expect(ec.send(:mappings)).to produce({\n          \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n          \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n          \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\"\n        }, logger)\n      end\n\n      context \"remote with local mappings\" do\n        let(:ctx) { [\"http://example.com/context\", { \"integer\" => \"xsd:integer\" }] }\n\n        before { described_class.instance_variable_set(:@cache, nil) }\n\n        it \"retrieves and parses a remote context document\" do\n          expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n            anything).and_yield(remote_doc)\n          ec = subject.parse(ctx)\n          expect(ec.send(:mappings)).to produce({\n            \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n            \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n            \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n            \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\",\n            \"integer\" => \"http://www.w3.org/2001/XMLSchema#integer\"\n          }, logger)\n        end\n      end\n\n      context \"pre-loaded remote\" do\n        let(:ctx) { \"http://example.com/preloaded\" }\n\n        before(:all) do\n          described_class.add_preloaded(\"http://example.com/preloaded\",\n            described_class.parse({ 'foo' => \"http://example.com/\" }))\n          described_class.alias_preloaded(\"https://example.com/preloaded\", \"http://example.com/preloaded\")\n        end\n\n        after(:all) { described_class.instance_variable_set(:@cache, nil) }\n\n        it \"does not load referenced context\" do\n          expect(JSON::LD::API).not_to receive(:documentLoader).with(ctx, anything)\n          subject.parse(ctx)\n        end\n\n        it \"does not load aliased context\" do\n          expect(JSON::LD::API).not_to receive(:documentLoader).with(ctx.sub('http', 'https'), anything)\n          subject.parse(ctx.sub('http', 'https'))\n        end\n\n        it \"uses loaded context\" do\n          ec = subject.parse(ctx)\n          expect(ec.send(:mappings)).to produce({\n            \"foo\" => \"http://example.com/\"\n          }, logger)\n        end\n\n        it \"uses aliased context\" do\n          ec = subject.parse(ctx.sub('http', 'https'))\n          expect(ec.send(:mappings)).to produce({\n            \"foo\" => \"http://example.com/\"\n          }, logger)\n        end\n      end\n    end\n\n    context \"Array\" do\n      let(:ctx) do\n        [\n          { \"foo\" => \"http://example.com/foo\" },\n          { \"bar\" => \"foo\" }\n        ]\n      end\n\n      it \"merges definitions from each context\" do\n        ec = subject.parse(ctx)\n        expect(ec.send(:mappings)).to produce({\n          \"foo\" => \"http://example.com/foo\",\n          \"bar\" => \"http://example.com/foo\"\n        }, logger)\n      end\n\n      it \"merges definitions from remote contexts\" do\n        described_class.instance_variable_set(:@cache, nil)\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n          anything).and_yield(remote_doc)\n        rd2 = JSON::LD::API::RemoteDocument.new('{\n          \"@context\": {\n            \"title\": {\"@id\": \"http://purl.org/dc/terms/title\"}\n          }\n        }', base_uri: \"http://example.com/c2\")\n        expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/c2\", anything).and_yield(rd2)\n        ec = subject.parse(%w[http://example.com/context http://example.com/c2])\n        expect(ec.send(:mappings)).to produce({\n          \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n          \"name\" => \"http://xmlns.com/foaf/0.1/name\",\n          \"homepage\" => \"http://xmlns.com/foaf/0.1/homepage\",\n          \"avatar\" => \"http://xmlns.com/foaf/0.1/avatar\",\n          \"title\" => \"http://purl.org/dc/terms/title\"\n        }, logger)\n      end\n    end\n\n    context \"Hash\" do\n      it \"extracts @language\" do\n        expect(subject.parse({\n          \"@language\" => \"en\"\n        }).default_language).to produce(\"en\", logger)\n      end\n\n      it \"extracts @vocab\" do\n        expect(subject.parse({\n          \"@vocab\" => \"http://schema.org/\"\n        }).vocab).to produce(\"http://schema.org/\", logger)\n      end\n\n      it \"maps term with IRI value\" do\n        expect(subject.parse({\n          \"foo\" => \"http://example.com/\"\n        }).send(:mappings)).to produce({\n          \"foo\" => \"http://example.com/\"\n        }, logger)\n      end\n\n      it \"maps term with blank node value (with deprecation)\" do\n        expect do\n          expect(subject.parse({\n            \"foo\" => \"_:bn\"\n          }).send(:mappings)).to produce({\n            \"foo\" => RDF::Node(\"bn\")\n          }, logger)\n        end.to write(\"[DEPRECATION]\").to(:error)\n      end\n\n      it \"maps term with @id\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\" }\n        }).send(:mappings)).to produce({\n          \"foo\" => \"http://example.com/\"\n        }, logger)\n      end\n\n      it \"maps term with blank node @id (with deprecation)\" do\n        expect do\n          expect(subject.parse({\n            \"foo\" => { \"@id\" => \"_:bn\" }\n          }).send(:mappings)).to produce({\n            \"foo\" => RDF::Node(\"bn\")\n          }, logger)\n        end.to write(\"[DEPRECATION]\").to(:error)\n      end\n\n      it \"warns and ignores keyword-like term\" do\n        expect do\n          expect(subject.parse({\n            \"@foo\" => { \"@id\" => \"http://example.org/foo\" }\n          }).send(:mappings)).to produce({}, logger)\n        end.to write(\"Terms beginning with '@' are reserved\").to(:error)\n      end\n\n      it \"maps '@' as a term\" do\n        expect do\n          expect(subject.parse({\n            \"@\" => { \"@id\" => \"http://example.org/@\" }\n          }).send(:mappings)).to produce({\n            \"@\" => \"http://example.org/@\"\n          }, logger)\n        end.not_to write.to(:error)\n      end\n\n      it \"maps '@foo.bar' as a term\" do\n        expect do\n          expect(subject.parse({\n            \"@foo.bar\" => { \"@id\" => \"http://example.org/foo.bar\" }\n          }).send(:mappings)).to produce({\n            \"@foo.bar\" => \"http://example.org/foo.bar\"\n          }, logger)\n        end.not_to write.to(:error)\n      end\n\n      it \"associates @list container mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@container\" => \"@list\" }\n        }).containers).to produce({\n          \"foo\" => Set[\"@list\"]\n        }, logger)\n      end\n\n      it \"associates @type container mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@container\" => \"@type\" }\n        }).containers).to produce({\n          \"foo\" => Set[\"@type\"]\n        }, logger)\n      end\n\n      it \"associates @id container mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@container\" => \"@id\" }\n        }).containers).to produce({\n          \"foo\" => Set[\"@id\"]\n        }, logger)\n      end\n\n      it \"associates @id type mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@type\" => \"@id\" }\n        }).coercions).to produce({\n          \"foo\" => \"@id\"\n        }, logger)\n      end\n\n      it \"associates @json type mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@type\" => \"@json\" }\n        }).coercions).to produce({\n          \"foo\" => \"@json\"\n        }, logger)\n      end\n\n      it \"associates type mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@type\" => RDF::XSD.string.to_s }\n        }).coercions).to produce({\n          \"foo\" => RDF::XSD.string\n        }, logger)\n      end\n\n      it \"associates language mapping with term\" do\n        expect(subject.parse({\n          \"foo\" => { \"@id\" => \"http://example.com/\", \"@language\" => \"en\" }\n        }).send(:languages)).to produce({\n          \"foo\" => \"en\"\n        }, logger)\n      end\n\n      it \"expands chains of term definition/use with string values\" do\n        expect(subject.parse({\n          \"foo\" => \"bar\",\n          \"bar\" => \"baz\",\n          \"baz\" => \"http://example.com/\"\n        }).send(:mappings)).to produce({\n          \"foo\" => \"http://example.com/\",\n          \"bar\" => \"http://example.com/\",\n          \"baz\" => \"http://example.com/\"\n        }, logger)\n      end\n\n      it \"expands terms using @vocab\" do\n        expect(subject.parse({\n          \"foo\" => \"bar\",\n          \"@vocab\" => \"http://example.com/\"\n        }).send(:mappings)).to produce({\n          \"foo\" => \"http://example.com/bar\"\n        }, logger)\n      end\n\n      context \"with null\" do\n        it \"removes @language if set to null\" do\n          expect(subject.parse([\n                                 {\n                                   \"@language\" => \"en\"\n                                 },\n                                 {\n                                   \"@language\" => nil\n                                 }\n                               ]).default_language).to produce(nil, logger)\n        end\n\n        it \"removes @vocab if set to null\" do\n          expect(subject.parse([\n                                 {\n                                   \"@vocab\" => \"http://schema.org/\"\n                                 },\n                                 {\n                                   \"@vocab\" => nil\n                                 }\n                               ]).vocab).to produce(nil, logger)\n        end\n\n        it \"removes term if set to null with @vocab\" do\n          expect(subject.parse([\n                                 {\n                                   \"@vocab\" => \"http://schema.org/\",\n                                   \"term\" => nil\n                                 }\n                               ]).send(:mappings)).to produce({ \"term\" => nil }, logger)\n        end\n\n        it \"loads initial context\" do\n          init_ec = described_class.new\n          nil_ec = subject.parse(nil)\n          expect(nil_ec.default_language).to eq init_ec.default_language\n          expect(nil_ec.send(:languages)).to eq init_ec.send(:languages)\n          expect(nil_ec.send(:mappings)).to eq init_ec.send(:mappings)\n          expect(nil_ec.coercions).to eq init_ec.coercions\n          expect(nil_ec.containers).to eq init_ec.containers\n        end\n\n        it \"removes a term definition\" do\n          expect(subject.parse({ \"name\" => nil }).send(:mapping, \"name\")).to be_nil\n        end\n      end\n\n      context \"@propagate\" do\n        it \"generates an InvalidPropagateValue error if not a boolean\" do\n          expect do\n            subject.parse({ '@version' => 1.1,\n            '@propagate' => \"String\" })\n          end.to raise_error(JSON::LD::JsonLdError::InvalidPropagateValue)\n        end\n      end\n\n      context \"@import\" do\n        before { described_class.instance_variable_set(:@cache, nil) }\n\n        it \"generates an InvalidImportValue error if not a string\" do\n          expect do\n            subject.parse({ '@version' => 1.1, '@import' => true })\n          end.to raise_error(JSON::LD::JsonLdError::InvalidImportValue)\n        end\n\n        it \"retrieves remote context\" do\n          expect(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n            anything).and_yield(remote_doc)\n          ec = subject.parse(JSON.parse(%({\n            \"@version\": 1.1,\n            \"@import\": \"http://example.com/context\"\n          })))\n          expect(ec.term_definitions).to include(\"avatar\")\n        end\n      end\n    end\n\n    describe \"Syntax Errors\" do\n      {\n        \"malformed JSON\" => StringIO.new('{\"@context\": {\"foo\" \"http://malformed/\"}'),\n        \"no @id, @type, or @container\" => { \"foo\" => {} },\n        \"value as array\" => { \"foo\" => [] },\n        \"@id as object\" => { \"foo\" => { \"@id\" => {} } },\n        \"@id as array of object\" => { \"foo\" => { \"@id\" => [{}] } },\n        \"@id as array of null\" => { \"foo\" => { \"@id\" => [nil] } },\n        \"@type as object\" => { \"foo\" => { \"@type\" => {} } },\n        \"@type as array\" => { \"foo\" => { \"@type\" => [] } },\n        \"@type as @list\" => { \"foo\" => { \"@type\" => \"@list\" } },\n        \"@type as @none\" => { \"@version\" => 1.1, \"foo\" => { \"@type\" => \"@none\" } },\n        \"@type as @set\" => { \"foo\" => { \"@type\" => \"@set\" } },\n        \"@container as object\" => { \"foo\" => { \"@container\" => {} } },\n        \"@container as empty array\" => { \"foo\" => { \"@container\" => [] } },\n        \"@container as string\" => { \"foo\" => { \"@container\" => \"true\" } },\n        \"@context which is invalid\" => { \"foo\" => { \"@context\" => { \"bar\" => [] } } },\n        \"@language as @id\" => { \"@language\" => { \"@id\" => \"http://example.com/\" } },\n        \"@direction as foo\" => { \"@direction\" => \"foo\" },\n        \"@vocab as @id\" => { \"@vocab\" => { \"@id\" => \"http://example.com/\" } },\n        \"@prefix string\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@prefix\" => \"str\" } },\n        \"@prefix array\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@prefix\" => [] } },\n        \"@prefix object\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@prefix\" => {} } },\n        \"IRI term expands to different IRI\" => {\n          \"ex\" => \"http://example.com/\",\n          \"ex2\" => \"http://example.com/2/\",\n          \"ex:foo\" => \"ex2:foo\"\n        },\n        \"IRI term expands to different IRI (reverse)\" => {\n          \"ex\" => \"http://example.com/\",\n          \"ex2\" => \"http://example.com/2/\",\n          \"ex:foo\" => { \"@reverse\" => \"ex2:foo\" }\n        }\n      }.each do |title, context|\n        it title do\n          expect do\n            ec = subject.parse(context)\n            expect(ec.serialize).to produce({}, logger)\n          end.to raise_error(JSON::LD::JsonLdError)\n        end\n      end\n\n      context \"1.0\" do\n        let(:context) { described_class.new(logger: logger, validate: true, processingMode: 'json-ld-1.0') }\n\n        {\n          \"@context\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@context\" => {} } },\n          \"@container @id\" => { \"foo\" => { \"@container\" => \"@id\" } },\n          \"@container @type\" => { \"foo\" => { \"@container\" => \"@type\" } },\n          \"@nest\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@nest\" => \"@nest\" } },\n          \"@type as @none\" => { \"foo\" => { \"@type\" => \"@none\" } },\n          \"@type as @json\" => { \"foo\" => { \"@type\" => \"@json\" } },\n          \"@prefix\" => { \"foo\" => { \"@id\" => 'http://example.org/', \"@prefix\" => true } }\n        }.each do |title, context|\n          it title do\n            expect do\n              ec = subject.parse(context)\n              expect(ec.serialize).to produce({}, logger)\n            end.to raise_error(JSON::LD::JsonLdError)\n          end\n        end\n\n        it \"generates InvalidContextEntry if using @propagate\" do\n          expect { context.parse({ '@propagate' => true }) }.to raise_error(JSON::LD::JsonLdError::InvalidContextEntry)\n        end\n\n        it \"generates InvalidContextEntry if using @import\" do\n          expect do\n            context.parse({ '@import' => \"location\" })\n          end.to raise_error(JSON::LD::JsonLdError::InvalidContextEntry)\n        end\n\n        (JSON::LD::KEYWORDS - %w[@base @language @version @protected @propagate @vocab]).each do |kw|\n          it \"does not redefine #{kw} with an @container\" do\n            expect do\n              ec = subject.parse({ kw => { \"@container\" => \"@set\" } })\n              expect(ec.serialize).to produce({}, logger)\n            end.to raise_error(JSON::LD::JsonLdError)\n          end\n        end\n      end\n\n      (JSON::LD::KEYWORDS - %w[@base @direction @language @protected @propagate @import @version @vocab]).each do |kw|\n        it \"does not redefine #{kw} as a string\" do\n          expect do\n            ec = subject.parse({ kw => \"http://example.com/\" })\n            expect(ec.serialize).to produce({}, logger)\n          end.to raise_error(JSON::LD::JsonLdError)\n        end\n\n        it \"does not redefine #{kw} with an @id\" do\n          expect do\n            ec = subject.parse({ kw => { \"@id\" => \"http://example.com/\" } })\n            expect(ec.serialize).to produce({}, logger)\n          end.to raise_error(JSON::LD::JsonLdError)\n        end\n\n        unless kw == '@type'\n          it \"does not redefine #{kw} with an @container\" do\n            expect do\n              ec = subject.parse({ \"@version\" => 1.1, kw => { \"@container\" => \"@set\" } })\n              expect(ec.serialize).to produce({}, logger)\n            end.to raise_error(JSON::LD::JsonLdError)\n          end\n        end\n\n        next unless kw == '@type'\n\n        it \"redefines #{kw} with an @container\" do\n          ec = subject.parse({ kw => { \"@container\" => \"@set\" } })\n          expect(ec.as_array('@type')).to be_truthy\n        end\n      end\n    end\n  end\n\n  describe \"#processingMode\" do\n    it \"sets to json-ld-1.1 if @version: 1.1\" do\n      [\n        %({\"@version\": 1.1}),\n        %([{\"@version\": 1.1}])\n      ].each do |str|\n        ctx = described_class.parse(JSON.parse(str))\n        expect(ctx.processingMode).to eql \"json-ld-1.1\"\n      end\n    end\n\n    it \"raises InvalidVersionValue if @version out of scope\" do\n      [\n        \"1.1\",\n        \"1.0\",\n        1.0,\n        \"foo\"\n      ].each do |vers|\n        expect do\n          described_class.parse({ \"@version\" => vers })\n        end.to raise_error(JSON::LD::JsonLdError::InvalidVersionValue)\n      end\n    end\n\n    it \"raises ProcessingModeConflict if provided processing mode conflicts with context\" do\n      expect do\n        described_class.parse({ \"@version\" => 1.1 },\n          processingMode: \"json-ld-1.0\")\n      end.to raise_error(JSON::LD::JsonLdError::ProcessingModeConflict)\n    end\n\n    it \"does not raise ProcessingModeConflict nested context is different from starting context\" do\n      expect { described_class.parse([{}, { \"@version\" => 1.1 }]) }.not_to raise_error\n    end\n  end\n\n  describe \"#merge\" do\n    it \"creates a new context with components of each\" do\n      c2 = described_class.parse({ 'foo' => \"http://example.com/\" })\n      cm = context.merge(c2)\n      expect(cm).not_to equal context\n      expect(cm).not_to equal c2\n      expect(cm.term_definitions).to eq c2.term_definitions\n    end\n  end\n\n  describe \"#serialize\" do\n    before { described_class.instance_variable_set(:@cache, nil) }\n\n    it \"context hash\" do\n      ctx = { \"foo\" => \"http://example.com/\" }\n\n      ec = subject.parse(ctx)\n      expect(ec.serialize).to produce({\n        \"@context\" => ctx\n      }, logger)\n    end\n\n    it \"@language\" do\n      subject.default_language = \"en\"\n      expect(subject.serialize).to produce({\n        \"@context\" => {\n          \"@language\" => \"en\"\n        }\n      }, logger)\n    end\n\n    it \"@vocab\" do\n      subject.vocab = \"http://example.com/\"\n      expect(subject.serialize).to produce({\n        \"@context\" => {\n          \"@vocab\" => \"http://example.com/\"\n        }\n      }, logger)\n    end\n\n    it \"term mappings\" do\n      c = subject\n        .parse({ 'foo' => \"http://example.com/\" })\n      expect(c.serialize).to produce({\n        \"@context\" => {\n          \"foo\" => \"http://example.com/\"\n        }\n      }, logger)\n    end\n\n    it \"@context\" do\n      expect(subject.parse({\n        \"foo\" => { \"@id\" => \"http://example.com/\", \"@context\" => { \"bar\" => \"http://example.com/baz\" } }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"foo\" => {\n            \"@id\" => \"http://example.com/\",\n            \"@context\" => { \"bar\" => \"http://example.com/baz\" }\n          }\n        }\n      }, logger)\n    end\n\n    it \"@type with dependent prefixes in a single context\" do\n      expect(subject.parse({\n        'xsd' => \"http://www.w3.org/2001/XMLSchema#\",\n        'homepage' => { '@id' => RDF::Vocab::FOAF.homepage.to_s, '@type' => '@id' }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"xsd\" => RDF::XSD.to_uri.to_s,\n          \"homepage\" => { \"@id\" => RDF::Vocab::FOAF.homepage.to_s, \"@type\" => \"@id\" }\n        }\n      }, logger)\n    end\n\n    it \"@list with @id definition in a single context\" do\n      expect(subject.parse({\n        'knows' => { '@id' => RDF::Vocab::FOAF.knows.to_s, '@container' => '@list' }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@list\" }\n        }\n      }, logger)\n    end\n\n    it \"@set with @id definition in a single context\" do\n      expect(subject.parse({\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@set\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@set\" }\n        }\n      }, logger)\n    end\n\n    it \"@language with @id definition in a single context\" do\n      expect(subject.parse({\n        \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => \"en\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => \"en\" }\n        }\n      }, logger)\n    end\n\n    it \"@language with @id definition in a single context and equivalent default\" do\n      expect(subject.parse({\n        \"@language\" => 'en',\n        \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => 'en' }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"@language\" => 'en',\n          \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => 'en' }\n        }\n      }, logger)\n    end\n\n    it \"@language with @id definition in a single context and different default\" do\n      expect(subject.parse({\n        \"@language\" => 'en',\n        \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => \"de\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"@language\" => 'en',\n          \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => \"de\" }\n        }\n      }, logger)\n    end\n\n    it \"null @language with @id definition in a single context and default\" do\n      expect(subject.parse({\n        \"@language\" => 'en',\n        \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => nil }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"@language\" => 'en',\n          \"name\" => { \"@id\" => RDF::Vocab::FOAF.name.to_s, \"@language\" => nil }\n        }\n      }, logger)\n    end\n\n    it \"prefix with @type and @list\" do\n      expect(subject.parse({\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@id\", \"@container\" => \"@list\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@id\", \"@container\" => \"@list\" }\n        }\n      }, logger)\n    end\n\n    it \"prefix with @type and @set\" do\n      expect(subject.parse({\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@id\", \"@container\" => \"@set\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@id\", \"@container\" => \"@set\" }\n        }\n      }, logger)\n    end\n\n    it \"prefix with @type @json\" do\n      expect(subject.parse({\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@json\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@type\" => \"@json\" }\n        }\n      }, logger)\n    end\n\n    it \"Compact IRI with @type\" do\n      expect(subject.parse({\n        \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n        \"foaf:knows\" => {\n          \"@container\" => \"@list\"\n        }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n          \"foaf:knows\" => {\n            \"@container\" => \"@list\"\n          }\n        }\n      }, logger)\n    end\n\n    it \"does not use aliased @id in key position\" do\n      expect(subject.parse({\n        \"id\" => \"@id\",\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@list\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"id\" => \"@id\",\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@list\" }\n        }\n      }, logger)\n    end\n\n    it \"does not use aliased @id in value position\" do\n      expect(subject.parse({\n        \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n        \"id\" => \"@id\",\n        \"foaf:homepage\" => {\n          \"@type\" => \"@id\"\n        }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n          \"id\" => \"@id\",\n          \"foaf:homepage\" => {\n            \"@type\" => \"@id\"\n          }\n        }\n      }, logger)\n    end\n\n    it \"does not use aliased @type\" do\n      expect(subject.parse({\n        \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n        \"type\" => \"@type\",\n        \"foaf:homepage\" => { \"@type\" => \"@id\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n          \"type\" => \"@type\",\n          \"foaf:homepage\" => { \"@type\" => \"@id\" }\n        }\n      }, logger)\n    end\n\n    it \"does not use aliased @container\" do\n      expect(subject.parse({\n        \"container\" => \"@container\",\n        \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@list\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"container\" => \"@container\",\n          \"knows\" => { \"@id\" => RDF::Vocab::FOAF.knows.to_s, \"@container\" => \"@list\" }\n        }\n      }, logger)\n    end\n\n    it \"compacts IRIs to Compact IRIs\" do\n      expect(subject.parse({\n        \"ex\" => 'http://example.org/',\n        \"term\" => { \"@id\" => \"ex:term\", \"@type\" => \"ex:datatype\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"ex\" => 'http://example.org/',\n          \"term\" => { \"@id\" => \"ex:term\", \"@type\" => \"ex:datatype\" }\n        }\n      }, logger)\n    end\n\n    it \"compacts IRIs using @vocab\" do\n      expect(subject.parse({\n        \"@vocab\" => 'http://example.org/',\n        \"term\" => { \"@id\" => \"http://example.org/term\", \"@type\" => \"datatype\" }\n      })\n      .serialize).to produce({\n        \"@context\" => {\n          \"@vocab\" => 'http://example.org/',\n          \"term\" => { \"@type\" => \"datatype\" }\n        }\n      }, logger)\n    end\n\n    context \"invalid term definitions\" do\n      {\n        'empty term': {\n          input: { \"\" => \"http://blank-term/\" }\n        },\n        'extra key': {\n          input: { \"foo\" => { \"@id\" => \"http://example.com/foo\", \"@baz\" => \"foobar\" } }\n        }\n      }.each do |title, params|\n        it title do\n          expect { subject.parse(params[:input]) }.to raise_error(JSON::LD::JsonLdError::InvalidTermDefinition)\n        end\n      end\n    end\n  end\n\n  describe \"#to_rb\" do\n    subject do\n      allow(JSON::LD::API).to receive(:documentLoader).with(\"http://example.com/context\",\n        anything).and_yield(remote_doc)\n      context.parse(\"http://example.com/context\")\n    end\n\n    before(:all) { described_class.instance_variable_set(:@cache, nil) }\n\n    it \"encodes as utf-8\" do\n      expect(subject.to_rb).to match(/encoding: utf-8/)\n    end\n\n    it \"marked as auto-generated\" do\n      expect(subject.to_rb).to match(/This file generated automatically from/)\n    end\n\n    it \"includes URL in preloaded\" do\n      expect(subject.to_rb).to include(%(add_preloaded(\"http://example.com/context\")))\n    end\n\n    it \"includes processingMode\" do\n      expect(subject.to_rb).to include(%(processingMode: \"json-ld-1.1\"))\n    end\n\n    it \"term mappings\" do\n      expect(subject.to_rb).to include(%(\"avatar\" => TermDefinition.new(\"avatar\", id: \"http://xmlns.com/foaf/0.1/avatar\", type_mapping: \"@id\")))\n      expect(subject.to_rb).to include(%(\"homepage\" => TermDefinition.new(\"homepage\", id: \"http://xmlns.com/foaf/0.1/homepage\", type_mapping: \"@id\")))\n      expect(subject.to_rb).to include(%(\"name\" => TermDefinition.new(\"name\", id: \"http://xmlns.com/foaf/0.1/name\", simple: true)))\n      expect(subject.to_rb).to include(%(\"xsd\" => TermDefinition.new(\"xsd\", id: \"http://www.w3.org/2001/XMLSchema#\", simple: true, prefix: true)))\n    end\n  end\n\n  describe \"#base=\" do\n    subject do\n      context.parse({\n        '@base' => 'http://base/',\n        '@vocab' => 'http://vocab/',\n        'ex' => 'http://example.org/',\n        '_' => 'http://underscore/'\n      })\n    end\n\n    it \"sets new base uri given an absolute uri\" do\n      subject.base = \"http://example.org/\"\n      expect(subject.base).to eql RDF::URI(\"http://example.org/\")\n    end\n\n    it \"sets relative URI\" do\n      subject.base = \"foo/bar\"\n      expect(subject.base).to eql RDF::URI(\"http://base/foo/bar\")\n    end\n  end\n\n  describe \"#vocab=\" do\n    subject do\n      context.parse({\n        '@base' => 'http://base/resource'\n      })\n    end\n\n    it \"sets vocab from absolute iri\" do\n      subject.vocab = \"http://example.org/\"\n      expect(subject.vocab).to eql RDF::URI(\"http://example.org/\")\n    end\n\n    it \"sets vocab from empty string\" do\n      subject.vocab = \"\"\n      expect(subject.vocab).to eql RDF::URI(\"http://base/resource\")\n    end\n\n    it \"sets vocab to blank node (with deprecation)\" do\n      expect do\n        subject.vocab = \"_:bn\"\n      end.to write(\"[DEPRECATION]\").to(:error)\n      expect(subject.vocab).to eql \"_:bn\"\n    end\n\n    it \"sets vocab from relative IRI\" do\n      subject.vocab = \"relative#\"\n      expect(subject.vocab).to eql RDF::URI(\"http://base/relative#\")\n    end\n\n    it \"sets vocab from relative IRI given an existing vocab\" do\n      subject.vocab = \"http://example.org/.\"\n      subject.vocab = \"relative#\"\n      expect(subject.vocab).to eql RDF::URI(\"http://example.org/.relative#\")\n    end\n\n    it \"sets vocab from relative IRI given an existing vocab which is also relative\" do\n      subject.vocab = \"/rel1\"\n      subject.vocab = \"rel2#\"\n      expect(subject.vocab).to eql RDF::URI(\"http://base/rel1rel2#\")\n    end\n  end\n\n  describe \"#expand_iri\" do\n    subject do\n      context.parse({\n        '@base' => 'http://base/base',\n        '@vocab' => 'http://vocab/',\n        'ex' => 'http://example.org/',\n        '_' => 'http://underscore/'\n      })\n    end\n\n    it \"bnode\" do\n      expect(subject.expand_iri(\"_:a\")).to be_a(RDF::Node)\n    end\n\n    context \"keywords\" do\n      %w[id type].each do |kw|\n        it \"expands #{kw} to @#{kw}\" do\n          subject.set_mapping(kw, \"@#{kw}\")\n          expect(subject.expand_iri(kw, vocab: true)).to produce(\"@#{kw}\", logger)\n        end\n      end\n    end\n\n    context \"relative IRI\" do\n      context \"with no options\" do\n        {\n          \"absolute IRI\" => [\"http://example.org/\", RDF::URI(\"http://example.org/\")],\n          \"term\" => [\"ex\", RDF::URI(\"ex\")],\n          \"prefix:suffix\" => [\"ex:suffix\", RDF::URI(\"http://example.org/suffix\")],\n          \"#frag\" => [\"#frag\", RDF::URI(\"#frag\")],\n          \"#frag:2\" => [\"#frag:2\",             RDF::URI(\"#frag:2\")],\n          \"keyword\" => [\"@type\",               \"@type\"],\n          \"unmapped\" => [\"foo\",                 RDF::URI(\"foo\")],\n          \"relative\" => [\"foo/bar\",             RDF::URI(\"foo/bar\")],\n          \"dotseg\" => [\"../foo/bar\", RDF::URI(\"../foo/bar\")],\n          \"empty term\" => [\"\", RDF::URI(\"\")],\n          \"another abs IRI\" => [\"ex://foo\", RDF::URI(\"ex://foo\")],\n          \"absolute IRI looking like a Compact IRI\" =>\n                             [\"foo:bar\",             RDF::URI(\"foo:bar\")],\n          \"bnode\" => [\"_:t0\", RDF::Node(\"t0\")],\n          \"_\" => [\"_\",                   RDF::URI(\"_\")],\n          \"@\" => [\"@\",                   RDF::URI(\"@\")]\n        }.each do |title, (input, result)|\n          it title do\n            expect(subject.expand_iri(input)).to produce(result, logger)\n          end\n        end\n      end\n\n      context \"with base IRI\" do\n        {\n          \"absolute IRI\" => [\"http://example.org/\", RDF::URI(\"http://example.org/\")],\n          \"term\" => [\"ex\", RDF::URI(\"http://base/ex\")],\n          \"prefix:suffix\" => [\"ex:suffix\", RDF::URI(\"http://example.org/suffix\")],\n          \"#frag\" => [\"#frag\", RDF::URI(\"http://base/base#frag\")],\n          \"#frag:2\" => [\"#frag:2\",             RDF::URI(\"http://base/base#frag:2\")],\n          \"keyword\" => [\"@type\",               \"@type\"],\n          \"unmapped\" => [\"foo\",                 RDF::URI(\"http://base/foo\")],\n          \"relative\" => [\"foo/bar\",             RDF::URI(\"http://base/foo/bar\")],\n          \"dotseg\" => [\"../foo/bar\", RDF::URI(\"http://base/foo/bar\")],\n          \"empty term\" => [\"\", RDF::URI(\"http://base/base\")],\n          \"another abs IRI\" => [\"ex://foo\", RDF::URI(\"ex://foo\")],\n          \"absolute IRI looking like a compact IRI\" =>\n                             [\"foo:bar\",             RDF::URI(\"foo:bar\")],\n          \"bnode\" => [\"_:t0\", RDF::Node(\"t0\")],\n          \"_\" => [\"_\",                   RDF::URI(\"http://base/_\")],\n          \"@\" => [\"@\",                   RDF::URI(\"http://base/@\")]\n        }.each do |title, (input, result)|\n          it title do\n            expect(subject.expand_iri(input, documentRelative: true)).to produce(result, logger)\n          end\n        end\n      end\n\n      context \"@vocab\" do\n        {\n          \"absolute IRI\" => [\"http://example.org/\", RDF::URI(\"http://example.org/\")],\n          \"term\" => [\"ex\", RDF::URI(\"http://example.org/\")],\n          \"prefix:suffix\" => [\"ex:suffix\", RDF::URI(\"http://example.org/suffix\")],\n          \"#frag\" => [\"#frag\", RDF::URI(\"http://vocab/#frag\")],\n          \"#frag:2\" => [\"#frag:2\",             RDF::URI(\"http://vocab/#frag:2\")],\n          \"keyword\" => [\"@type\",               \"@type\"],\n          \"unmapped\" => [\"foo\",                 RDF::URI(\"http://vocab/foo\")],\n          \"relative\" => [\"foo/bar\",             RDF::URI(\"http://vocab/foo/bar\")],\n          \"dotseg\" => [\"../foo/bar\", RDF::URI(\"http://vocab/../foo/bar\")],\n          \"another abs IRI\" => [\"ex://foo\", RDF::URI(\"ex://foo\")],\n          \"absolute IRI looking like a compact IRI\" =>\n                             [\"foo:bar\",             RDF::URI(\"foo:bar\")],\n          \"bnode\" => [\"_:t0\", RDF::Node(\"t0\")],\n          \"_\" => [\"_\",                   RDF::URI(\"http://underscore/\")],\n          \"@\" => [\"@\",                   RDF::URI(\"http://vocab/@\")]\n        }.each do |title, (input, result)|\n          it title do\n            expect(subject.expand_iri(input, vocab: true)).to produce(result, logger)\n          end\n        end\n\n        context \"set to ''\" do\n          subject do\n            context.parse({\n              '@base' => 'http://base/base',\n              '@vocab' => '',\n              'ex' => 'http://example.org/',\n              '_' => 'http://underscore/'\n            })\n          end\n\n          {\n            \"absolute IRI\" => [\"http://example.org/\", RDF::URI(\"http://example.org/\")],\n            \"term\" => [\"ex\", RDF::URI(\"http://example.org/\")],\n            \"prefix:suffix\" => [\"ex:suffix\", RDF::URI(\"http://example.org/suffix\")],\n            \"#frag\" => [\"#frag\", RDF::URI(\"http://base/base#frag\")],\n            \"#frag:2\" => [\"#frag:2\",             RDF::URI(\"http://base/base#frag:2\")],\n            \"keyword\" => [\"@type\",               \"@type\"],\n            \"unmapped\" => [\"foo\",                 RDF::URI(\"http://base/basefoo\")],\n            \"relative\" => [\"foo/bar\",             RDF::URI(\"http://base/basefoo/bar\")],\n            \"dotseg\" => [\"../foo/bar\", RDF::URI(\"http://base/base../foo/bar\")],\n            \"another abs IRI\" => [\"ex://foo\", RDF::URI(\"ex://foo\")],\n            \"absolute IRI looking like a compact IRI\" =>\n                               [\"foo:bar\", RDF::URI(\"foo:bar\")],\n            \"bnode\" => [\"_:t0\", RDF::Node(\"t0\")],\n            \"_\" => [\"_\", RDF::URI(\"http://underscore/\")]\n          }.each do |title, (input, result)|\n            it title do\n              expect(subject.expand_iri(input, vocab: true)).to produce(result, logger)\n            end\n          end\n        end\n\n        it \"expand-0110\" do\n          ctx = described_class.parse({\n            \"@base\" => \"http://example.com/some/deep/directory/and/file/\",\n            \"@vocab\" => \"/relative\"\n          })\n          expect(ctx.expand_iri(\"#fragment-works\",\n            vocab: true)).to produce(\"http://example.com/relative#fragment-works\", logger)\n        end\n      end\n    end\n  end\n\n  describe \"#compact_iri\" do\n    subject do\n      c = context.parse({\n        '@base' => 'http://base/',\n        \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n        'ex' => 'http://example.org/',\n        '_' => 'http://underscore/',\n        'rex' => { '@reverse' => \"ex\" },\n        'lex' => { '@id' => 'ex', '@language' => 'en' },\n        'tex' => { '@id' => 'ex', '@type' => 'xsd:string' },\n        'exp' => { '@id' => 'ex:pert' },\n        'experts' => { '@id' => 'ex:perts' }\n      })\n      logger.clear\n      c\n    end\n\n    {\n      \"nil\" => [nil, nil],\n      \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n      \"prefix:suffix\" => [\"ex:suffix\", \"http://example.org/suffix\"],\n      \"unmapped\" => %w[foo foo],\n      \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n      \"relative\" => [\"foo/bar\", \"http://base/foo/bar\"],\n      \"odd Compact IRI\" => [\"ex:perts\", \"http://example.org/perts\"]\n    }.each do |title, (result, input)|\n      it title do\n        if result.is_a?(Class)\n          expect { subject.compact_iri(input) }.to raise_error(result)\n        else\n          expect(subject.compact_iri(input)).to produce(result, logger)\n        end\n      end\n    end\n\n    context \"with :vocab option\" do\n      {\n        \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n        \"prefix:suffix\" => [\"ex:suffix\", \"http://example.org/suffix\"],\n        \"keyword\" => [\"@type\", \"@type\"],\n        \"unmapped\" => %w[foo foo],\n        \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n        \"relative\" => [\"http://base/foo/bar\", \"http://base/foo/bar\"],\n        \"odd Compact IRI\" => [\"experts\", \"http://example.org/perts\"]\n      }.each do |title, (result, input)|\n        it title do\n          if result.is_a?(Class)\n            expect { subject.compact_iri(input, vocab: true) }.to raise_error(result)\n          else\n            expect(subject.compact_iri(input, vocab: true)).to produce(result, logger)\n          end\n        end\n      end\n    end\n\n    context \"with @vocab\" do\n      before { subject.vocab = \"http://example.org/\" }\n\n      {\n        \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n        \"prefix:suffix\" => [\"suffix\", \"http://example.org/suffix\"],\n        \"keyword\" => [\"@type\", \"@type\"],\n        \"unmapped\" => %w[foo foo],\n        \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n        \"relative\" => [\"http://base/foo/bar\", \"http://base/foo/bar\"],\n        \"odd Compact IRI\" => [\"experts\", \"http://example.org/perts\"]\n      }.each do |title, (result, input)|\n        it title do\n          if result.is_a?(Class)\n            expect { subject.compact_iri(input, vocab: true) }.to raise_error(result)\n          else\n            expect(subject.compact_iri(input, vocab: true)).to produce(result, logger)\n          end\n        end\n      end\n\n      it \"does not use @vocab if it would collide with a term\" do\n        subject.set_mapping(\"name\", \"http://xmlns.com/foaf/0.1/name\")\n        subject.set_mapping(\"ex\", nil)\n        expect(subject.compact_iri(\"http://example.org/name\", vocab: true))\n          .not_to produce(\"name\", logger)\n      end\n\n      context \"with @vocab: relative\" do\n        before do\n          subject.vocab = nil\n          subject.base = 'http://base/base'\n        end\n\n        {\n          \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n          \"prefix:suffix\" => [\"ex:suffix\", \"http://example.org/suffix\"],\n          \"keyword\" => [\"@type\", \"@type\"],\n          \"unmapped\" => %w[foo foo],\n          \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n          \"relative\" => [\"http://base/foo/bar\", \"http://base/foo/bar\"],\n          \"odd Compact IRI\" => [\"experts\", \"http://example.org/perts\"]\n        }.each do |title, (result, input)|\n          it title do\n            if result.is_a?(Class)\n              expect { subject.compact_iri(input, vocab: true) }.to raise_error(result)\n            else\n              expect(subject.compact_iri(input, vocab: true)).to produce(result, logger)\n            end\n          end\n        end\n      end\n    end\n\n    context \"with value\" do\n      let(:ctx) do\n        c = subject.parse({\n          \"xsd\" => RDF::XSD.to_s,\n          \"plain\" => \"http://example.com/plain\",\n          \"lang\" => { \"@id\" => \"http://example.com/lang\", \"@language\" => \"en\" },\n          \"dir\" => { \"@id\" => \"http://example.com/dir\", \"@direction\" => \"ltr\" },\n          \"langdir\" => { \"@id\" => \"http://example.com/langdir\", \"@language\" => \"en\", \"@direction\" => \"ltr\" },\n          \"bool\" => { \"@id\" => \"http://example.com/bool\", \"@type\" => \"xsd:boolean\" },\n          \"integer\" => { \"@id\" => \"http://example.com/integer\", \"@type\" => \"xsd:integer\" },\n          \"double\" => { \"@id\" => \"http://example.com/double\", \"@type\" => \"xsd:double\" },\n          \"date\" => { \"@id\" => \"http://example.com/date\", \"@type\" => \"xsd:date\" },\n          \"id\" => { \"@id\" => \"http://example.com/id\", \"@type\" => \"@id\" },\n          'graph' => { '@id' => 'http://example.com/graph', '@container' => '@graph' },\n          'json' => { '@id' => 'http://example.com/json', '@type' => '@json' },\n\n          \"list_plain\" => { \"@id\" => \"http://example.com/plain\", \"@container\" => \"@list\" },\n          \"list_lang\" => { \"@id\" => \"http://example.com/lang\", \"@language\" => \"en\", \"@container\" => \"@list\" },\n          \"list_bool\" => { \"@id\" => \"http://example.com/bool\", \"@type\" => \"xsd:boolean\", \"@container\" => \"@list\" },\n          \"list_integer\" => { \"@id\" => \"http://example.com/integer\", \"@type\" => \"xsd:integer\",\n                              \"@container\" => \"@list\" },\n          \"list_double\" => { \"@id\" => \"http://example.com/double\", \"@type\" => \"xsd:double\", \"@container\" => \"@list\" },\n          \"list_date\" => { \"@id\" => \"http://example.com/date\", \"@type\" => \"xsd:date\", \"@container\" => \"@list\" },\n          \"list_id\" => { \"@id\" => \"http://example.com/id\", \"@type\" => \"@id\", \"@container\" => \"@list\" },\n          \"list_graph\" => { \"@id\" => \"http://example.com/graph\", \"@type\" => \"@id\", \"@container\" => \"@list\" },\n\n          \"set_plain\" => { \"@id\" => \"http://example.com/plain\", \"@container\" => \"@set\" },\n          \"set_lang\" => { \"@id\" => \"http://example.com/lang\", \"@language\" => \"en\", \"@container\" => \"@set\" },\n          \"set_bool\" => { \"@id\" => \"http://example.com/bool\", \"@type\" => \"xsd:boolean\", \"@container\" => \"@set\" },\n          \"set_integer\" => { \"@id\" => \"http://example.com/integer\", \"@type\" => \"xsd:integer\", \"@container\" => \"@set\" },\n          \"set_double\" => { \"@id\" => \"http://example.com/double\", \"@type\" => \"xsd:double\", \"@container\" => \"@set\" },\n          \"set_date\" => { \"@id\" => \"http://example.com/date\", \"@type\" => \"xsd:date\", \"@container\" => \"@set\" },\n          \"set_id\" => { \"@id\" => \"http://example.com/id\", \"@type\" => \"@id\", \"@container\" => \"@set\" },\n          'set_graph' => { '@id' => 'http://example.com/graph', '@container' => ['@graph', '@set'] },\n\n          \"map_lang\" => { \"@id\" => \"http://example.com/lang\", \"@container\" => \"@language\" },\n\n          \"set_map_lang\" => { \"@id\" => \"http://example.com/lang\", \"@container\" => [\"@language\", \"@set\"] }\n        })\n        logger.clear\n        c\n      end\n\n      # Prefered sets and maps over non sets or maps\n      {\n        \"set_plain\" => [{ \"@value\" => \"foo\" }],\n        \"map_lang\" => [{ \"@value\" => \"en\", \"@language\" => \"en\" }],\n        \"set_bool\" => [{ \"@value\" => \"true\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#boolean\" }],\n        \"set_integer\" => [{ \"@value\" => \"1\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#integer\" }],\n        \"set_id\" => [{ \"@id\" => \"http://example.org/id\" }],\n        \"graph\" => [{ \"@graph\" => [{ \"@id\" => \"http://example.org/id\" }] }],\n        'json' => [{ \"@value\" => { \"some\" => \"json\" }, \"@type\" => \"@json\" }],\n        'dir' => [{ \"@value\" => \"dir\", \"@direction\" => \"ltr\" }],\n        'langdir' => [{ \"@value\" => \"lang dir\", \"@language\" => \"en\", \"@direction\" => \"ltr\" }]\n      }.each do |prop, values|\n        context \"uses #{prop}\" do\n          values.each do |value|\n            it \"for #{value.inspect}\" do\n              expect(ctx.compact_iri(\"http://example.com/#{prop.sub(/^\\w+_/, '')}\", value: value, vocab: true))\n                .to produce(prop, logger)\n            end\n          end\n        end\n      end\n\n      # @language and @type with @list\n      context \"for @list\" do\n        {\n          \"list_plain\" => [\n            [{ \"@value\" => \"foo\" }],\n            [{ \"@value\" => \"foo\" }, { \"@value\" => \"bar\" }, { \"@value\" => \"baz\" }],\n            [{ \"@value\" => \"foo\" }, { \"@value\" => \"bar\" }, { \"@value\" => 1 }],\n            [{ \"@value\" => \"foo\" }, { \"@value\" => \"bar\" }, { \"@value\" => 1.1 }],\n            [{ \"@value\" => \"foo\" }, { \"@value\" => \"bar\" }, { \"@value\" => true }],\n            [{ \"@value\" => \"foo\" }, { \"@value\" => \"bar\" }, { \"@value\" => 1 }],\n            [{ \"@value\" => \"de\", \"@language\" => \"de\" }, { \"@value\" => \"jp\", \"@language\" => \"jp\" }],\n            [{ \"@value\" => true }], [{ \"@value\" => false }],\n            [{ \"@value\" => 1 }], [{ \"@value\" => 1.1 }]\n          ],\n          \"list_lang\" => [[{ \"@value\" => \"en\", \"@language\" => \"en\" }]],\n          \"list_bool\" => [[{ \"@value\" => \"true\", \"@type\" => RDF::XSD.boolean.to_s }]],\n          \"list_integer\" => [[{ \"@value\" => \"1\", \"@type\" => RDF::XSD.integer.to_s }]],\n          \"list_double\" => [[{ \"@value\" => \"1\", \"@type\" => RDF::XSD.double.to_s }]],\n          \"list_date\" => [[{ \"@value\" => \"2012-04-17\", \"@type\" => RDF::XSD.date.to_s }]]\n        }.each do |prop, values|\n          context \"uses #{prop}\" do\n            values.each do |value|\n              it \"for #{{ '@list' => value }.inspect}\" do\n                expect(ctx.compact_iri(\"http://example.com/#{prop.sub(/^\\w+_/, '')}\", value: { \"@list\" => value },\n                  vocab: true))\n                  .to produce(prop, logger)\n              end\n            end\n          end\n        end\n      end\n    end\n\n    context \"Compact IRI compaction\" do\n      {\n        \"nil\" => [nil, nil],\n        \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n        \"prefix:suffix\" => [\"ex:suffix\", \"http://example.org/suffix\"],\n        \"unmapped\" => %w[foo foo],\n        \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n        \"relative\" => [\"foo/bar\", \"http://base/foo/bar\"],\n        \"odd Compact IRI\" => [\"ex:perts\", \"http://example.org/perts\"]\n      }.each do |title, (result, input)|\n        it title do\n          if result.is_a?(Class)\n            expect { subject.compact_iri(input) }.to raise_error(result)\n          else\n            expect(subject.compact_iri(input)).to produce(result, logger)\n          end\n        end\n      end\n\n      context \"and @vocab\" do\n        before { subject.vocab = \"http://example.org/\" }\n\n        {\n          \"absolute IRI\" => [\"http://example.com/\", \"http://example.com/\"],\n          \"prefix:suffix\" => [\"suffix\", \"http://example.org/suffix\"],\n          \"keyword\" => [\"@type\", \"@type\"],\n          \"unmapped\" => %w[foo foo],\n          \"bnode\" => [JSON::LD::JsonLdError::IRIConfusedWithPrefix, RDF::Node(\"a\")],\n          \"relative\" => [\"http://base/foo/bar\", \"http://base/foo/bar\"],\n          \"odd Compact IRI\" => [\"experts\", \"http://example.org/perts\"]\n        }.each do |title, (result, input)|\n          it title do\n            if result.is_a?(Class)\n              expect { subject.compact_iri(input, vocab: true) }.to raise_error(result)\n            else\n              expect(subject.compact_iri(input, vocab: true)).to produce(result, logger)\n            end\n          end\n        end\n      end\n    end\n\n    context \"compact-0018\" do\n      let(:ctx) do\n        subject.parse(JSON.parse(%({\n          \"id1\": \"http://example.com/id1\",\n          \"type1\": \"http://example.com/t1\",\n          \"type2\": \"http://example.com/t2\",\n          \"@language\": \"de\",\n          \"term\": {\n            \"@id\": \"http://example.com/term\"\n          },\n          \"term1\": {\n            \"@id\": \"http://example.com/term\",\n            \"@container\": \"@list\"\n          },\n          \"term2\": {\n            \"@id\": \"http://example.com/term\",\n            \"@container\": \"@list\",\n            \"@language\": \"en\"\n          },\n          \"term3\": {\n            \"@id\": \"http://example.com/term\",\n            \"@container\": \"@list\",\n            \"@language\": null\n          },\n          \"term4\": {\n            \"@id\": \"http://example.com/term\",\n            \"@container\": \"@list\",\n            \"@type\": \"type1\"\n          },\n          \"term5\": {\n            \"@id\": \"http://example.com/term\",\n            \"@container\": \"@list\",\n            \"@type\": \"type2\"\n          }\n        })))\n      end\n\n      {\n        \"term\" => [\n          '{ \"@value\": \"v0.1\", \"@language\": \"de\" }',\n          '{ \"@value\": \"v0.2\", \"@language\": \"en\" }',\n          '{ \"@value\": \"v0.3\"}',\n          '{ \"@value\": 4}',\n          '{ \"@value\": true}',\n          '{ \"@value\": false}'\n        ],\n        \"term1\" => '{\n          \"@list\": [\n            { \"@value\": \"v1.1\", \"@language\": \"de\" },\n            { \"@value\": \"v1.2\", \"@language\": \"en\" },\n            { \"@value\": \"v1.3\"},\n            { \"@value\": 14},\n            { \"@value\": true},\n            { \"@value\": false}\n          ]\n        }',\n        \"term2\" => '{\n          \"@list\": [\n            { \"@value\": \"v2.1\", \"@language\": \"en\" },\n            { \"@value\": \"v2.2\", \"@language\": \"en\" },\n            { \"@value\": \"v2.3\", \"@language\": \"en\" },\n            { \"@value\": \"v2.4\", \"@language\": \"en\" },\n            { \"@value\": \"v2.5\", \"@language\": \"en\" },\n            { \"@value\": \"v2.6\", \"@language\": \"en\" }\n          ]\n        }',\n        \"term3\" => '{\n          \"@list\": [\n            { \"@value\": \"v3.1\"},\n            { \"@value\": \"v3.2\"},\n            { \"@value\": \"v3.3\"},\n            { \"@value\": \"v3.4\"},\n            { \"@value\": \"v3.5\"},\n            { \"@value\": \"v3.6\"}\n          ]\n        }',\n        \"term4\" => '{\n          \"@list\": [\n            { \"@value\": \"v4.1\", \"@type\": \"http://example.com/t1\" },\n            { \"@value\": \"v4.2\", \"@type\": \"http://example.com/t1\" },\n            { \"@value\": \"v4.3\", \"@type\": \"http://example.com/t1\" },\n            { \"@value\": \"v4.4\", \"@type\": \"http://example.com/t1\" },\n            { \"@value\": \"v4.5\", \"@type\": \"http://example.com/t1\" },\n            { \"@value\": \"v4.6\", \"@type\": \"http://example.com/t1\" }\n          ]\n        }',\n        \"term5\" => '{\n          \"@list\": [\n            { \"@value\": \"v5.1\", \"@type\": \"http://example.com/t2\" },\n            { \"@value\": \"v5.2\", \"@type\": \"http://example.com/t2\" },\n            { \"@value\": \"v5.3\", \"@type\": \"http://example.com/t2\" },\n            { \"@value\": \"v5.4\", \"@type\": \"http://example.com/t2\" },\n            { \"@value\": \"v5.5\", \"@type\": \"http://example.com/t2\" },\n            { \"@value\": \"v5.6\", \"@type\": \"http://example.com/t2\" }\n          ]\n        }'\n      }.each do |term, value|\n        [value].flatten.each do |v|\n          it \"Uses #{term} for #{v}\" do\n            expect(ctx.compact_iri(\"http://example.com/term\", value: JSON.parse(v), vocab: true))\n              .to produce(term, logger)\n          end\n        end\n      end\n    end\n\n    context \"compact-0020\" do\n      let(:ctx) do\n        subject.parse({\n          \"ex\" => \"http://example.org/ns#\",\n          \"ex:property\" => { \"@container\" => \"@list\" }\n        })\n      end\n\n      it \"Compact @id that is a property IRI when @container is @list\" do\n        expect(ctx.compact_iri(\"http://example.org/ns#property\", vocab: false))\n          .to produce(\"ex:property\", logger)\n      end\n    end\n\n    context \"compact-0041\" do\n      let(:ctx) do\n        subject.parse({ \"name\" => { \"@id\" => \"http://example.com/property\", \"@container\" => \"@list\" } })\n      end\n\n      it \"Does not use @list with @index\" do\n        expect(ctx.compact_iri(\"http://example.com/property\", value: {\n          \"@list\" => [\"one item\"],\n          \"@index\" => \"an annotation\"\n        })).to produce(\"http://example.com/property\", logger)\n      end\n    end\n  end\n\n  describe \"#expand_value\" do\n    subject do\n      ctx = context.parse({\n        \"dc\" => RDF::Vocab::DC.to_uri.to_s,\n        \"ex\" => \"http://example.org/\",\n        \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n        \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\",\n        \"foaf:age\" => { \"@type\" => \"xsd:integer\" },\n        \"foaf:knows\" => { \"@type\" => \"@id\" },\n        \"dc:created\" => { \"@type\" => \"xsd:date\" },\n        \"ex:integer\" => { \"@type\" => \"xsd:integer\" },\n        \"ex:double\" => { \"@type\" => \"xsd:double\" },\n        \"ex:boolean\" => { \"@type\" => \"xsd:boolean\" },\n        \"ex:none\" => { \"@type\" => \"@none\" },\n        \"ex:json\" => { \"@type\" => \"@json\" }\n      })\n      logger.clear\n      ctx\n    end\n\n    %w[boolean integer string dateTime date time].each do |dt|\n      it \"expands datatype xsd:#{dt}\" do\n        expect(subject.expand_value(\"foo\",\n          RDF::XSD[dt])).to produce({ \"@id\" => \"http://www.w3.org/2001/XMLSchema##{dt}\" }, logger)\n      end\n    end\n\n    {\n      \"absolute IRI\" => [\"foaf:knows\", \"http://example.com/\", { \"@id\" => \"http://example.com/\" }],\n      \"term\" => [\"foaf:knows\", \"ex\", { \"@id\" => \"ex\" }],\n      \"prefix:suffix\" => [\"foaf:knows\", \"ex:suffix\", { \"@id\" => \"http://example.org/suffix\" }],\n      \"no IRI\" => [\"foo\", \"http://example.com/\", { \"@value\" => \"http://example.com/\" }],\n      \"no term\" => [\"foo\", \"ex\", { \"@value\" => \"ex\" }],\n      \"no prefix\" => [\"foo\", \"ex:suffix\", { \"@value\" => \"ex:suffix\" }],\n      \"integer\" => [\"foaf:age\", \"54\", { \"@value\" => \"54\", \"@type\" => RDF::XSD.integer.to_s }],\n      \"date \" => [\"dc:created\", \"2011-12-27Z\",\n                  { \"@value\" => \"2011-12-27Z\", \"@type\" => RDF::XSD.date.to_s }],\n      \"native boolean\" => [\"foo\", true,                           { \"@value\" => true }],\n      \"native integer\" => [\"foo\", 1,                              { \"@value\" => 1 }],\n      \"native double\" => [\"foo\", 1.1e1, { \"@value\" => 1.1E1 }],\n      \"native date\" => [\"foo\", Date.parse(\"2011-12-27\"),\n                        { \"@value\" => \"2011-12-27\", \"@type\" => RDF::XSD.date.to_s }],\n      \"native dateTime\" => [\"foo\", DateTime.parse(\"2011-12-27T10:11:12Z\"),\n                            { \"@value\" => \"2011-12-27T10:11:12Z\", \"@type\" => RDF::XSD.dateTime.to_s }],\n      \"ex:none string\" => [\"ex:none\", \"foo\", { \"@value\" => \"foo\" }],\n      \"ex:none boolean\" => [\"ex:none\", true,                       { \"@value\" => true }],\n      \"ex:none integer\" => [\"ex:none\", 1,                          { \"@value\" => 1 }],\n      \"ex:none double\" => [\"ex:none\", 1.1e1,                      { \"@value\" => 1.1E1 }],\n      \"ex:json string\" => [\"ex:json\", \"foo\",                      { \"@value\" => \"foo\", \"@type\" => \"@json\" }],\n      \"ex:json boolean\" => [\"ex:json\", true,                       { \"@value\" => true, \"@type\" => \"@json\" }],\n      \"ex:json integer\" => [\"ex:json\", 1,                          { \"@value\" => 1, \"@type\" => \"@json\" }],\n      \"ex:json double\" => [\"ex:json\", 1.1e1, { \"@value\" => 1.1e1, \"@type\" => \"@json\" }],\n      \"ex:json object\" => [\"ex:json\", { \"foo\" => \"bar\" },\n                           { \"@value\" => { \"foo\" => \"bar\" }, \"@type\" => \"@json\" }],\n      \"ex:json array\" => [\"ex:json\", [{ \"foo\" => \"bar\" }],\n                          { \"@value\" => [{ \"foo\" => \"bar\" }], \"@type\" => \"@json\" }]\n    }.each do |title, (key, compacted, expanded)|\n      it title do\n        expect(subject.expand_value(key, compacted)).to produce(expanded, logger)\n      end\n    end\n\n    context \"@language\" do\n      before { subject.default_language = \"en\" }\n\n      {\n        \"no IRI\" => [\"foo\", \"http://example.com/\",\n                     { \"@value\" => \"http://example.com/\", \"@language\" => \"en\" }],\n        \"no term\" => [\"foo\", \"ex\", { \"@value\" => \"ex\", \"@language\" => \"en\" }],\n        \"no prefix\" => [\"foo\", \"ex:suffix\", { \"@value\" => \"ex:suffix\", \"@language\" => \"en\" }],\n        \"native boolean\" => [\"foo\",         true,                   { \"@value\" => true }],\n        \"native integer\" => [\"foo\",         1,                      { \"@value\" => 1 }],\n        \"native double\" => [\"foo\", 1.1, { \"@value\" => 1.1 }]\n      }.each do |title, (key, compacted, expanded)|\n        it title do\n          expect(subject.expand_value(key, compacted)).to produce(expanded, logger)\n        end\n      end\n    end\n\n    context \"coercion\" do\n      before { subject.default_language = \"en\" }\n\n      {\n        \"boolean-boolean\" => [\"ex:boolean\", true,   { \"@value\" => true, \"@type\" => RDF::XSD.boolean.to_s }],\n        \"boolean-integer\" => [\"ex:integer\", true,   { \"@value\" => true, \"@type\" => RDF::XSD.integer.to_s }],\n        \"boolean-double\" => [\"ex:double\", true, { \"@value\" => true, \"@type\" => RDF::XSD.double.to_s }],\n        \"boolean-json\" => [\"ex:json\", true, { \"@value\" => true, \"@type\" => '@json' }],\n        \"double-boolean\" => [\"ex:boolean\", 1.1, { \"@value\" => 1.1, \"@type\" => RDF::XSD.boolean.to_s }],\n        \"double-double\" => [\"ex:double\", 1.1, { \"@value\" => 1.1, \"@type\" => RDF::XSD.double.to_s }],\n        \"double-integer\" => [\"foaf:age\", 1.1, { \"@value\" => 1.1, \"@type\" => RDF::XSD.integer.to_s }],\n        \"double-json\" => [\"ex:json\", 1.1,     { \"@value\" => 1.1, \"@type\" => '@json' }],\n        \"json-json\" => [\"ex:json\", { \"foo\" => \"bar\" }, { \"@value\" => { \"foo\" => \"bar\" }, \"@type\" => '@json' }],\n        \"integer-boolean\" => [\"ex:boolean\", 1, { \"@value\" => 1, \"@type\" => RDF::XSD.boolean.to_s }],\n        \"integer-double\" => [\"ex:double\", 1, { \"@value\" => 1, \"@type\" => RDF::XSD.double.to_s }],\n        \"integer-integer\" => [\"foaf:age\", 1, { \"@value\" => 1, \"@type\" => RDF::XSD.integer.to_s }],\n        \"integer-json\" => [\"ex:json\", 1, { \"@value\" => 1, \"@type\" => '@json' }],\n        \"string-boolean\" => [\"ex:boolean\", \"foo\", { \"@value\" => \"foo\", \"@type\" => RDF::XSD.boolean.to_s }],\n        \"string-double\" => [\"ex:double\", \"foo\", { \"@value\" => \"foo\", \"@type\" => RDF::XSD.double.to_s }],\n        \"string-integer\" => [\"foaf:age\", \"foo\", { \"@value\" => \"foo\", \"@type\" => RDF::XSD.integer.to_s }],\n        \"string-json\" => [\"ex:json\", \"foo\", { \"@value\" => \"foo\", \"@type\" => '@json' }]\n      }.each do |title, (key, compacted, expanded)|\n        it title do\n          expect(subject.expand_value(key, compacted)).to produce(expanded, logger)\n        end\n      end\n    end\n  end\n\n  describe \"#compact_value\" do\n    subject { ctx }\n\n    let(:ctx) do\n      c = context.parse({\n        \"dc\" => RDF::Vocab::DC.to_uri.to_s,\n        \"ex\" => \"http://example.org/\",\n        \"foaf\" => RDF::Vocab::FOAF.to_uri.to_s,\n        \"xsd\" => RDF::XSD.to_s,\n        \"langmap\" => { \"@id\" => \"http://example.com/langmap\", \"@container\" => \"@language\" },\n        \"list\" => { \"@id\" => \"http://example.org/list\", \"@container\" => \"@list\" },\n        \"nolang\" => { \"@id\" => \"http://example.org/nolang\", \"@language\" => nil },\n        \"dc:created\" => { \"@type\" => RDF::XSD.date.to_s },\n        \"foaf:age\" => { \"@type\" => RDF::XSD.integer.to_s },\n        \"foaf:knows\" => { \"@type\" => \"@id\" },\n        \"ex:none\" => { \"@type\" => \"@none\" }\n      })\n      logger.clear\n      c\n    end\n\n    {\n      \"absolute IRI\" => [\"foaf:knows\", \"http://example.com/\", { \"@id\" => \"http://example.com/\" }],\n      \"prefix:suffix\" => [\"foaf:knows\", \"ex:suffix\", { \"@id\" => \"http://example.org/suffix\" }],\n      \"integer\" => [\"foaf:age\", \"54\", { \"@value\" => \"54\", \"@type\" => RDF::XSD.integer.to_s }],\n      \"date \" => [\"dc:created\", \"2011-12-27Z\",\n                  { \"@value\" => \"2011-12-27Z\", \"@type\" => RDF::XSD.date.to_s }],\n      \"no IRI\" => [\"foo\", { \"@id\" => \"http://example.com/\" }, { \"@id\" => \"http://example.com/\" }],\n      \"no IRI (Compact IRI)\" => [\"foo\", { \"@id\" => RDF::Vocab::FOAF.Person.to_s },\n                                 { \"@id\" => RDF::Vocab::FOAF.Person.to_s }],\n      \"no boolean\" => [\"foo\", { \"@value\" => \"true\", \"@type\" => \"xsd:boolean\" },\n                       { \"@value\" => \"true\", \"@type\" => RDF::XSD.boolean.to_s }],\n      \"no integer\" => [\"foo\", { \"@value\" => \"54\", \"@type\" => \"xsd:integer\" },\n                       { \"@value\" => \"54\", \"@type\" => RDF::XSD.integer.to_s }],\n      \"no date \" => [\"foo\", { \"@value\" => \"2011-12-27Z\", \"@type\" => \"xsd:date\" },\n                     { \"@value\" => \"2011-12-27Z\", \"@type\" => RDF::XSD.date.to_s }],\n      \"no string \" => [\"foo\", \"string\", { \"@value\" => \"string\" }],\n      \"no lang \" => [\"nolang\", \"string\", { \"@value\" => \"string\" }],\n      \"native boolean\" => [\"foo\", true,                           { \"@value\" => true }],\n      \"native integer\" => [\"foo\", 1,                              { \"@value\" => 1 }],\n      \"native integer(list)\" => [\"list\", 1,                         { \"@value\" => 1 }],\n      \"native double\" => [\"foo\", 1.1e1, { \"@value\" => 1.1E1 }],\n      \"ex:none IRI\" => [\"ex:none\", { \"@id\" => \"http://example.com/\" }, { \"@id\" => \"http://example.com/\" }],\n      \"ex:none string\" => [\"ex:none\", { \"@value\" => \"string\" }, { \"@value\" => \"string\" }],\n      \"ex:none integer\" => [\"ex:none\", { \"@value\" => \"54\", \"@type\" => \"xsd:integer\" },\n                            { \"@value\" => \"54\", \"@type\" => RDF::XSD.integer.to_s }]\n    }.each do |title, (key, compacted, expanded)|\n      it title do\n        expect(subject.compact_value(key, expanded)).to produce(compacted, logger)\n      end\n    end\n\n    context \"@language\" do\n      {\n        \"@id\" => [\"foo\", { \"@id\" => \"foo\" }, { \"@id\" => \"foo\" }],\n        \"integer\" => [\"foo\", { \"@value\" => \"54\", \"@type\" => \"xsd:integer\" },\n                      { \"@value\" => \"54\", \"@type\" => RDF::XSD.integer.to_s }],\n        \"date\" => [\"foo\", { \"@value\" => \"2011-12-27Z\", \"@type\" => \"xsd:date\" },\n                   { \"@value\" => \"2011-12-27Z\", \"@type\" => RDF::XSD.date.to_s }],\n        \"no lang\" => [\"foo\", { \"@value\" => \"foo\" },\n                      { \"@value\" => \"foo\" }],\n        \"same lang\" => [\"foo\", \"foo\",\n                        { \"@value\" => \"foo\", \"@language\" => \"en\" }],\n        \"other lang\" => [\"foo\", { \"@value\" => \"foo\", \"@language\" => \"bar\" },\n                         { \"@value\" => \"foo\", \"@language\" => \"bar\" }],\n        \"langmap\" => [\"langmap\", \"en\",\n                      { \"@value\" => \"en\", \"@language\" => \"en\" }],\n        \"no lang with @type coercion\" => [\"dc:created\", { \"@value\" => \"foo\" },\n                                          { \"@value\" => \"foo\" }],\n        \"no lang with @id coercion\" => [\"foaf:knows\", { \"@value\" => \"foo\" },\n                                        { \"@value\" => \"foo\" }],\n        \"no lang with @language=null\" => [\"nolang\", \"string\",\n                                          { \"@value\" => \"string\" }],\n        \"same lang with @type coercion\" => [\"dc:created\", { \"@value\" => \"foo\" },\n                                            { \"@value\" => \"foo\" }],\n        \"same lang with @id coercion\" => [\"foaf:knows\", { \"@value\" => \"foo\" },\n                                          { \"@value\" => \"foo\" }],\n        \"other lang with @type coercion\" => [\"dc:created\", { \"@value\" => \"foo\", \"@language\" => \"bar\" },\n                                             { \"@value\" => \"foo\", \"@language\" => \"bar\" }],\n        \"other lang with @id coercion\" => [\"foaf:knows\", { \"@value\" => \"foo\", \"@language\" => \"bar\" },\n                                           { \"@value\" => \"foo\", \"@language\" => \"bar\" }],\n        \"native boolean\" => [\"foo\", true,\n                             { \"@value\" => true }],\n        \"native integer\" => [\"foo\", 1, { \"@value\" => 1 }],\n        \"native integer(list)\" => [\"list\", 1, { \"@value\" => 1 }],\n        \"native double\" => [\"foo\", 1.1e1,\n                            { \"@value\" => 1.1E1 }]\n      }.each do |title, (key, compacted, expanded)|\n        it title do\n          subject.default_language = \"en\"\n          expect(subject.compact_value(key, expanded)).to produce(compacted, logger)\n        end\n      end\n    end\n\n    context \"keywords\" do\n      before do\n        subject.set_mapping(\"id\", \"@id\")\n        subject.set_mapping(\"type\", \"@type\")\n        subject.set_mapping(\"list\", \"@list\")\n        subject.set_mapping(\"set\", \"@set\")\n        subject.set_mapping(\"language\", \"@language\")\n        subject.set_mapping(\"literal\", \"@value\")\n      end\n\n      {\n        \"@id\" => [{ \"id\" => \"http://example.com/\" }, { \"@id\" => \"http://example.com/\" }],\n        \"@type\" => [{ \"literal\" => \"foo\", \"type\" => \"http://example.com/\" },\n                    { \"@value\" => \"foo\", \"@type\" => \"http://example.com/\" }],\n        \"@value\" => [{ \"literal\" => \"foo\", \"language\" => \"bar\" }, { \"@value\" => \"foo\", \"@language\" => \"bar\" }]\n      }.each do |title, (compacted, expanded)|\n        it title do\n          expect(subject.compact_value(\"foo\", expanded)).to produce(compacted, logger)\n        end\n      end\n    end\n  end\n\n  describe \"#from_vocabulary\" do\n    it \"must be described\"\n  end\n\n  describe \"#container\" do\n    subject do\n      ctx = context.parse({\n        \"ex\" => \"http://example.org/\",\n        \"graph\" => { \"@id\" => \"ex:graph\", \"@container\" => \"@graph\" },\n        \"graphSet\" => { \"@id\" => \"ex:graphSet\", \"@container\" => [\"@graph\", \"@set\"] },\n        \"graphId\" => { \"@id\" => \"ex:graphSet\", \"@container\" => [\"@graph\", \"@id\"] },\n        \"graphIdSet\" => { \"@id\" => \"ex:graphSet\", \"@container\" => [\"@graph\", \"@id\", \"@set\"] },\n        \"graphNdx\" => { \"@id\" => \"ex:graphSet\", \"@container\" => [\"@graph\", \"@index\"] },\n        \"graphNdxSet\" => { \"@id\" => \"ex:graphSet\", \"@container\" => [\"@graph\", \"@index\", \"@set\"] },\n        \"id\" => { \"@id\" => \"ex:idSet\", \"@container\" => \"@id\" },\n        \"idSet\" => { \"@id\" => \"ex:id\", \"@container\" => [\"@id\", \"@set\"] },\n        \"language\" => { \"@id\" => \"ex:language\", \"@container\" => \"@language\" },\n        \"langSet\" => { \"@id\" => \"ex:languageSet\", \"@container\" => [\"@language\", \"@set\"] },\n        \"list\" => { \"@id\" => \"ex:list\", \"@container\" => \"@list\" },\n        \"ndx\" => { \"@id\" => \"ex:ndx\", \"@container\" => \"@index\" },\n        \"ndxSet\" => { \"@id\" => \"ex:ndxSet\", \"@container\" => [\"@index\", \"@set\"] },\n        \"set\" => { \"@id\" => \"ex:set\", \"@container\" => \"@set\" },\n        \"type\" => { \"@id\" => \"ex:type\", \"@container\" => \"@type\" },\n        \"typeSet\" => { \"@id\" => \"ex:typeSet\", \"@container\" => [\"@type\", \"@set\"] }\n      })\n      logger.clear\n      ctx\n    end\n\n    it \"uses TermDefinition\" do\n      {\n        \"ex\" => Set.new,\n        \"graph\" => Set[\"@graph\"],\n        \"graphSet\" => Set[\"@graph\"],\n        \"graphId\" => Set[\"@graph\", \"@id\"],\n        \"graphIdSet\" => Set[\"@graph\", \"@id\"],\n        \"graphNdx\" => Set[\"@graph\", \"@index\"],\n        \"graphNdxSet\" => Set[\"@graph\", \"@index\"],\n        \"id\" => Set['@id'],\n        \"idSet\" => Set['@id'],\n        \"language\" => Set['@language'],\n        \"langSet\" => Set['@language'],\n        \"list\" => Set['@list'],\n        \"ndx\" => Set['@index'],\n        \"ndxSet\" => Set['@index'],\n        \"set\" => Set.new,\n        \"type\" => Set['@type'],\n        \"typeSet\" => Set['@type']\n      }.each do |defn, container|\n        expect(subject.container(subject.term_definitions[defn])).to eq container\n      end\n    end\n\n    it \"#as_array\" do\n      {\n        \"ex\" => false,\n        \"graph\" => false,\n        \"graphSet\" => true,\n        \"graphId\" => false,\n        \"graphIdSet\" => true,\n        \"graphNdx\" => false,\n        \"graphNdxSet\" => true,\n        \"id\" => false,\n        \"idSet\" => true,\n        \"language\" => false,\n        \"langSet\" => true,\n        \"list\" => true,\n        \"ndx\" => false,\n        \"ndxSet\" => true,\n        \"set\" => true,\n        \"type\" => false,\n        \"typeSet\" => true\n      }.each do |defn, as_array|\n        expect(subject.as_array?(subject.term_definitions[defn])).to eq as_array\n      end\n    end\n\n    it \"uses array\" do\n      {\n        \"ex\" => Set.new,\n        \"graph\" => Set[\"@graph\"],\n        \"graphSet\" => Set[\"@graph\"],\n        \"graphId\" => Set[\"@graph\", \"@id\"],\n        \"graphIdSet\" => Set[\"@graph\", \"@id\"],\n        \"graphNdx\" => Set[\"@graph\", \"@index\"],\n        \"graphNdxSet\" => Set[\"@graph\", \"@index\"],\n        \"id\" => Set['@id'],\n        \"idSet\" => Set['@id'],\n        \"language\" => Set['@language'],\n        \"langSet\" => Set['@language'],\n        \"list\" => Set['@list'],\n        \"ndx\" => Set['@index'],\n        \"ndxSet\" => Set['@index'],\n        \"set\" => Set.new,\n        \"type\" => Set['@type'],\n        \"typeSet\" => Set['@type']\n      }.each do |defn, container|\n        expect(subject.container(defn)).to eq container\n      end\n    end\n  end\n\n  describe \"#language\" do\n    subject do\n      ctx = context.parse({\n        \"ex\" => \"http://example.org/\",\n        \"nil\" => { \"@id\" => \"ex:nil\", \"@language\" => nil },\n        \"en\" => { \"@id\" => \"ex:en\", \"@language\" => \"en\" }\n      })\n      logger.clear\n      ctx\n    end\n\n    it \"uses TermDefinition\" do\n      expect(subject.language(subject.term_definitions['ex'])).to be_falsey\n      expect(subject.language(subject.term_definitions['nil'])).to be_falsey\n      expect(subject.language(subject.term_definitions['en'])).to eq 'en'\n    end\n\n    it \"uses string\" do\n      expect(subject.language('ex')).to be_falsey\n      expect(subject.language('nil')).to be_falsey\n      expect(subject.language('en')).to eq 'en'\n    end\n  end\n\n  describe \"#reverse?\" do\n    subject do\n      ctx = context.parse({\n        \"ex\" => \"http://example.org/\",\n        \"reverse\" => { \"@reverse\" => \"ex:reverse\" }\n      })\n      logger.clear\n      ctx\n    end\n\n    it \"uses TermDefinition\" do\n      expect(subject).not_to be_reverse(subject.term_definitions['ex'])\n      expect(subject).to be_reverse(subject.term_definitions['reverse'])\n    end\n\n    it \"uses string\" do\n      expect(subject).not_to be_reverse('ex')\n      expect(subject).to be_reverse('reverse')\n    end\n  end\n\n  describe \"#nest\" do\n    subject do\n      ctx = context.parse({\n        \"ex\" => \"http://example.org/\",\n        \"nest\" => { \"@id\" => \"ex:nest\", \"@nest\" => \"@nest\" },\n        \"nest2\" => { \"@id\" => \"ex:nest2\", \"@nest\" => \"nest-alias\" },\n        \"nest-alias\" => \"@nest\"\n      })\n      logger.clear\n      ctx\n    end\n\n    it \"uses term\" do\n      {\n        \"ex\" => nil,\n        \"nest\" => \"@nest\",\n        \"nest2\" => \"nest-alias\",\n        \"nest-alias\" => nil\n      }.each do |defn, nest|\n        expect(subject.nest(defn)).to eq nest\n      end\n    end\n\n    context \"detects error\" do\n      it \"does not allow a keyword other than @nest for the value of @nest\" do\n        expect do\n          context.parse({ \"no-keyword-nest\" => { \"@id\" => \"http://example/f\", \"@nest\" => \"@id\" } })\n        end.to raise_error JSON::LD::JsonLdError::InvalidNestValue\n      end\n\n      it \"does not allow @nest with @reverse\" do\n        expect do\n          context.parse({ \"no-reverse-nest\" => { \"@reverse\" => \"http://example/f\", \"@nest\" => \"@nest\" } })\n        end.to raise_error JSON::LD::JsonLdError::InvalidReverseProperty\n      end\n    end\n  end\n\n  describe \"#reverse_term\" do\n    subject do\n      ctx = context.parse({\n        \"ex\" => \"http://example.org/\",\n        \"reverse\" => { \"@reverse\" => \"ex\" }\n      })\n      logger.clear\n      ctx\n    end\n\n    it \"uses TermDefinition\" do\n      expect(subject.reverse_term(subject.term_definitions['ex'])).to eql subject.term_definitions['reverse']\n      expect(subject.reverse_term(subject.term_definitions['reverse'])).to eql subject.term_definitions['ex']\n    end\n\n    it \"uses string\" do\n      expect(subject.reverse_term('ex')).to eql subject.term_definitions['reverse']\n      expect(subject.reverse_term('reverse')).to eql subject.term_definitions['ex']\n    end\n  end\n\n  describe \"protected contexts\" do\n    it \"seals a term with @protected true\" do\n      ctx = context.parse({\n        \"protected\" => { \"@id\" => \"http://example.com/protected\", \"@protected\" => true },\n        \"unprotected\" => { \"@id\" => \"http://example.com/unprotected\" }\n      })\n      expect(ctx.term_definitions[\"protected\"]).to be_protected\n      expect(ctx.term_definitions[\"unprotected\"]).not_to be_protected\n    end\n\n    it \"seals all term with @protected true in context\" do\n      ctx = context.parse({\n        \"@protected\" => true,\n        \"protected\" => { \"@id\" => \"http://example.com/protected\" },\n        \"protected2\" => { \"@id\" => \"http://example.com/protected2\" }\n      })\n      expect(ctx.term_definitions[\"protected\"]).to be_protected\n      expect(ctx.term_definitions[\"protected2\"]).to be_protected\n    end\n\n    it \"does not seal term with @protected: false when context is protected\" do\n      ctx = context.parse({\n        \"@protected\" => true,\n        \"protected\" => { \"@id\" => \"http://example.com/protected\" },\n        \"unprotected\" => { \"@id\" => \"http://example.com/unprotected\", \"@protected\" => false }\n      })\n      expect(ctx.term_definitions[\"protected\"]).to be_protected\n      expect(ctx.term_definitions[\"unprotected\"]).not_to be_protected\n    end\n\n    it \"does not error when redefining an identical term\" do\n      c = {\n        \"protected\" => { \"@id\" => \"http://example.com/protected\", \"@protected\" => true }\n      }\n      ctx = context.parse(c)\n\n      expect { ctx.parse(c) }.not_to raise_error\n    end\n\n    it \"errors when redefining a protected term\" do\n      ctx = context.parse({\n        \"protected\" => { \"@id\" => \"http://example.com/protected\", \"@protected\" => true }\n      })\n\n      expect do\n        ctx.parse({ \"protected\" => \"http://example.com/different\" })\n      end.to raise_error(JSON::LD::JsonLdError::ProtectedTermRedefinition)\n    end\n\n    it \"errors when clearing a context having protected terms\" do\n      ctx = context.parse({\n        \"protected\" => { \"@id\" => \"http://example.com/protected\", \"@protected\" => true }\n      })\n\n      expect { ctx.parse(nil) }.to raise_error(JSON::LD::JsonLdError::InvalidContextNullification)\n    end\n  end\n\n  describe JSON::LD::Context::TermDefinition do\n    context \"with nothing\" do\n      subject { described_class.new(\"term\") }\n\n      its(:term) { is_expected.to eq \"term\" }\n      its(:id) { is_expected.to be_nil }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\")) }\n    end\n\n    context \"with id\" do\n      subject { described_class.new(\"term\", id: \"http://example.org/term\") }\n\n      its(:term) { is_expected.to eq \"term\" }\n      its(:id) { is_expected.to eq \"http://example.org/term\" }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", id: \"http://example.org/term\")) }\n    end\n\n    context \"with type_mapping\" do\n      subject { described_class.new(\"term\", type_mapping: \"http://example.org/type\") }\n\n      its(:type_mapping) { is_expected.to eq \"http://example.org/type\" }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", type_mapping: \"http://example.org/type\")) }\n    end\n\n    context \"with container_mapping @set\" do\n      subject { described_class.new(\"term\", container_mapping: \"@set\") }\n\n      its(:container_mapping) { is_expected.to be_empty }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", container_mapping: \"@set\")) }\n    end\n\n    context \"with container_mapping @id @set\" do\n      subject { described_class.new(\"term\", container_mapping: %w[@id @set]) }\n\n      its(:container_mapping) { is_expected.to eq Set['@id'] }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", container_mapping: [\"@id\", \"@set\"])) }\n    end\n\n    context \"with container_mapping @list\" do\n      subject { described_class.new(\"term\", container_mapping: \"@list\") }\n\n      its(:container_mapping) { is_expected.to eq Set['@list'] }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", container_mapping: \"@list\")) }\n    end\n\n    context \"with language_mapping\" do\n      subject { described_class.new(\"term\", language_mapping: \"en\") }\n\n      its(:language_mapping) { is_expected.to eq \"en\" }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", language_mapping: \"en\")) }\n    end\n\n    context \"with reverse_property\" do\n      subject { described_class.new(\"term\", reverse_property: true) }\n\n      its(:reverse_property) { is_expected.to be_truthy }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", reverse_property: true)) }\n    end\n\n    context \"with simple\" do\n      subject { described_class.new(\"term\", simple: true) }\n\n      its(:simple) { is_expected.to be_truthy }\n      its(:to_rb) { is_expected.to eq %(TermDefinition.new(\"term\", simple: true)) }\n    end\n  end\nend\n"
  },
  {
    "path": "spec/expand_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".expand\" do\n    {\n      'empty doc': {\n        input: {},\n        output: []\n      },\n      '@list coercion': {\n        input: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"foo\": [{\"@value\": \"bar\"}]\n        }),\n        output: %([{\n          \"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]\n        }])\n      },\n      'native values in list': {\n        input: %({\n          \"http://example.com/foo\": {\"@list\": [1, 2]}\n        }),\n        output: %([{\n          \"http://example.com/foo\": [{\"@list\": [{\"@value\": 1}, {\"@value\": 2}]}]\n        }])\n      },\n      '@graph': {\n        input: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@graph\": [\n            {\"ex:foo\": {\"@value\": \"foo\"}},\n            {\"ex:bar\": {\"@value\": \"bar\"}}\n          ]\n        }),\n        output: %([\n          {\"http://example.com/foo\": [{\"@value\": \"foo\"}]},\n          {\"http://example.com/bar\": [{\"@value\": \"bar\"}]}\n        ])\n      },\n      '@graph value (expands to array form)': {\n        input: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"ex:p\": {\n            \"@id\": \"ex:Sub1\",\n            \"@graph\": {\n              \"ex:q\": \"foo\"\n            }\n          }\n        }),\n        output: %([{\n          \"http://example.com/p\": [{\n            \"@id\": \"http://example.com/Sub1\",\n            \"@graph\": [{\n              \"http://example.com/q\": [{\"@value\": \"foo\"}]\n            }]\n          }]\n        }])\n      },\n      '@type with CURIE': {\n        input: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@type\": \"ex:type\"\n        }),\n        output: %([\n          {\"@type\": [\"http://example.com/type\"]}\n        ])\n      },\n      '@type with CURIE and muliple values': {\n        input: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@type\": [\"ex:type1\", \"ex:type2\"]\n        }),\n        output: %([\n          {\"@type\": [\"http://example.com/type1\", \"http://example.com/type2\"]}\n        ])\n      },\n      '@value with false': {\n        input: %({\"http://example.com/ex\": {\"@value\": false}}),\n        output: %([{\"http://example.com/ex\": [{\"@value\": false}]}])\n      },\n      'compact IRI': {\n        input: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"ex:p\": {\"@id\": \"ex:Sub1\"}\n        }),\n        output: %([{\n          \"http://example.com/p\": [{\"@id\": \"http://example.com/Sub1\"}]\n        }])\n      }\n    }.each_pair do |title, params|\n      it(title) { run_expand params }\n    end\n\n    context \"default language\" do\n      {\n        base: {\n          input: %({\n            \"http://example/foo\": \"bar\"\n          }),\n          output: %([{\n            \"http://example/foo\": [{\"@value\": \"bar\", \"@language\": \"en\"}]\n          }]),\n          language: \"en\"\n        },\n        override: {\n          input: %({\n            \"@context\": {\"@language\": null},\n            \"http://example/foo\": \"bar\"\n          }),\n          output: %([{\n            \"http://example/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          language: \"en\"\n        }\n      }.each_pair do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"with relative IRIs\" do\n      {\n        base: {\n          input: %({\n            \"@id\": \"\",\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\"\n          }),\n          output: %([{\n            \"@id\": \"http://example.org/\",\n            \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"]\n          }])\n        },\n        relative: {\n          input: %({\n            \"@id\": \"a/b\",\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\"\n          }),\n          output: %([{\n            \"@id\": \"http://example.org/a/b\",\n            \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"]\n          }])\n        },\n        hash: {\n          input: %({\n            \"@id\": \"#a\",\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\"\n          }),\n          output: %([{\n            \"@id\": \"http://example.org/#a\",\n            \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"]\n          }])\n        },\n        'unmapped @id': {\n          input: %({\n            \"http://example.com/foo\": {\"@id\": \"bar\"}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@id\": \"http://example.org/bar\"}]\n          }])\n        },\n        'json-ld-syntax#66': {\n          input: %({\n            \"@context\": {\n              \"@base\": \"https://ex.org/\",\n              \"u\": {\"@id\": \"urn:u:\", \"@type\": \"@id\"}\n            },\n            \"u\": [\"#Test\", \"#Test:2\"]\n          }),\n          output: %([{\n            \"urn:u:\": [\n              {\"@id\": \"https://ex.org/#Test\"},\n              {\"@id\": \"https://ex.org/#Test:2\"}\n            ]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params.merge(base: \"http://example.org/\") }\n      end\n    end\n\n    context \"with relative property IRIs\" do\n      {\n        base: {\n          input: %({\n            \"http://a/b\": \"foo\"\n          }),\n          output: %([{\n            \"http://a/b\": [{\"@value\": \"foo\"}]\n          }])\n        },\n        relative: {\n          input: %({\n            \"a/b\": \"foo\"\n          }),\n          output: %([])\n        },\n        hash: {\n          input: %({\n            \"#a\": \"foo\"\n          }),\n          output: %([])\n        },\n        dotseg: {\n          input: %({\n            \"../a\": \"foo\"\n          }),\n          output: %([])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params.merge(base: \"http://example.org/\") }\n      end\n\n      context \"with @vocab\" do\n        {\n          base: {\n            input: %({\n              \"@context\": {\"@vocab\": \"http://vocab/\"},\n              \"http://a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          relative: {\n            input: %({\n              \"@context\": {\"@vocab\": \"http://vocab/\"},\n              \"a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://vocab/a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          hash: {\n            input: %({\n              \"@context\": {\"@vocab\": \"http://vocab/\"},\n              \"#a\": \"foo\"\n            }),\n            output: %([{\n              \"http://vocab/#a\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          dotseg: {\n            input: %({\n              \"@context\": {\"@vocab\": \"http://vocab/\"},\n              \"../a\": \"foo\"\n            }),\n            output: %([{\n              \"http://vocab/../a\": [{\"@value\": \"foo\"}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand params.merge(base: \"http://example.org/\") }\n        end\n      end\n\n      context \"with @vocab: ''\" do\n        {\n          base: {\n            input: %({\n              \"@context\": {\"@vocab\": \"\"},\n              \"http://a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          relative: {\n            input: %({\n              \"@context\": {\"@vocab\": \"\"},\n              \"a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          hash: {\n            input: %({\n              \"@context\": {\"@vocab\": \"\"},\n              \"#a\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/#a\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          dotseg: {\n            input: %({\n              \"@context\": {\"@vocab\": \"\"},\n              \"../a\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/../a\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          example: {\n            input: %({\n              \"@context\": {\n                \"@base\": \"http://example/document\",\n                \"@vocab\": \"\"\n              },\n              \"@id\": \"http://example.org/places#BrewEats\",\n              \"@type\": \"#Restaurant\",\n              \"#name\": \"Brew Eats\"\n            }),\n            output: %([{\n              \"@id\": \"http://example.org/places#BrewEats\",\n              \"@type\": [\"http://example/document#Restaurant\"],\n              \"http://example/document#name\": [{\"@value\": \"Brew Eats\"}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand params.merge(base: \"http://example.org/\") }\n        end\n      end\n\n      context \"with @vocab: '/relative#'\" do\n        {\n          base: {\n            input: %({\n              \"@context\": {\"@vocab\": \"/relative#\"},\n              \"http://a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          relative: {\n            input: %({\n              \"@context\": {\"@vocab\": \"/relative#\"},\n              \"a/b\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/relative#a/b\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          hash: {\n            input: %({\n              \"@context\": {\"@vocab\": \"/relative#\"},\n              \"#a\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/relative##a\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          dotseg: {\n            input: %({\n              \"@context\": {\"@vocab\": \"/relative#\"},\n              \"../a\": \"foo\"\n            }),\n            output: %([{\n              \"http://example.org/relative#../a\": [{\"@value\": \"foo\"}]\n            }])\n          },\n          example: {\n            input: %({\n              \"@context\": {\n                \"@base\": \"http://example/document\",\n                \"@vocab\": \"/relative#\"\n              },\n              \"@id\": \"http://example.org/places#BrewEats\",\n              \"@type\": \"Restaurant\",\n              \"name\": \"Brew Eats\"\n            }),\n            output: %([{\n              \"@id\": \"http://example.org/places#BrewEats\",\n              \"@type\": [\"http://example/relative#Restaurant\"],\n              \"http://example/relative#name\": [{\"@value\": \"Brew Eats\"}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand params.merge(base: \"http://example.org/\") }\n        end\n      end\n    end\n\n    context \"keyword aliasing\" do\n      {\n        '@id': {\n          input: %({\n            \"@context\": {\"id\": \"@id\"},\n            \"id\": \"\",\n            \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\"\n          }),\n          output: %([{\n            \"@id\": \"\",\n            \"@type\":[ \"http://www.w3.org/2000/01/rdf-schema#Resource\"]\n          }])\n        },\n        '@type': {\n          input: %({\n            \"@context\": {\"type\": \"@type\"},\n            \"type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\",\n            \"http://example.com/foo\": {\"@value\": \"bar\", \"type\": \"http://example.com/baz\"}\n          }),\n          output: %([{\n            \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\n            \"http://example.com/foo\": [{\"@value\": \"bar\", \"@type\": \"http://example.com/baz\"}]\n          }])\n        },\n        '@language': {\n          input: %({\n            \"@context\": {\"language\": \"@language\"},\n            \"http://example.com/foo\": {\"@value\": \"bar\", \"language\": \"baz\"}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@value\": \"bar\", \"@language\": \"baz\"}]\n          }])\n        },\n        '@value': {\n          input: %({\n            \"@context\": {\"literal\": \"@value\"},\n            \"http://example.com/foo\": {\"literal\": \"bar\"}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@value\": \"bar\"}]\n          }])\n        },\n        '@list': {\n          input: %({\n            \"@context\": {\"list\": \"@list\"},\n            \"http://example.com/foo\": {\"list\": [\"bar\"]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"native types\" do\n      {\n        true => {\n          input: %({\n            \"@context\": {\"e\": \"http://example.org/vocab#\"},\n            \"e:bool\": true\n          }),\n          output: %([{\n            \"http://example.org/vocab#bool\": [{\"@value\": true}]\n          }])\n        },\n        false => {\n          input: %({\n            \"@context\": {\"e\": \"http://example.org/vocab#\"},\n            \"e:bool\": false\n          }),\n          output: %([{\n            \"http://example.org/vocab#bool\": [{\"@value\": false}]\n          }])\n        },\n        double: {\n          input: %({\n            \"@context\": {\"e\": \"http://example.org/vocab#\"},\n            \"e:double\": 1.23\n          }),\n          output: %([{\n            \"http://example.org/vocab#double\": [{\"@value\": 1.23}]\n          }])\n        },\n        'double-zero': {\n          input: %({\n            \"@context\": {\"e\": \"http://example.org/vocab#\"},\n            \"e:double-zero\": 0.0e0\n          }),\n          output: %([{\n            \"http://example.org/vocab#double-zero\": [{\"@value\": 0.0e0}]\n          }])\n        },\n        integer: {\n          input: %({\n            \"@context\": {\"e\": \"http://example.org/vocab#\"},\n            \"e:integer\": 123\n          }),\n          output: %([{\n            \"http://example.org/vocab#integer\": [{\"@value\": 123}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n\n      context \"with @type: @none\" do\n        {\n          true => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@none\"}},\n              \"e\": true\n            }),\n            output: %( [{\n              \"http://example.org/vocab#bool\": [{\"@value\": true}]\n            }])\n          },\n          false => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@none\"}},\n              \"e\": false\n            }),\n            output: %([{\n              \"http://example.org/vocab#bool\": [{\"@value\": false}]\n            }])\n          },\n          double: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@none\"}},\n              \"e\": 1.23\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 1.23}]\n            }])\n          },\n          'double-zero': {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@none\"}},\n              \"e\": 0.0e0\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 0.0e0}]\n            }])\n          },\n          integer: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@none\"}},\n              \"e\": 123\n            }),\n            output: %([{\n              \"http://example.org/vocab#integer\": [{\"@value\": 123}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand(processingMode: \"json-ld-1.1\", **params) }\n        end\n      end\n\n      context \"with @type: @id\" do\n        {\n          true => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@id\"}},\n              \"e\": true\n            }),\n            output: %( [{\n              \"http://example.org/vocab#bool\": [{\"@value\": true}]\n            }])\n          },\n          false => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@id\"}},\n              \"e\": false\n            }),\n            output: %([{\n              \"http://example.org/vocab#bool\": [{\"@value\": false}]\n            }])\n          },\n          double: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@id\"}},\n              \"e\": 1.23\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 1.23}]\n            }])\n          },\n          'double-zero': {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@id\"}},\n              \"e\": 0.0e0\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 0.0e0}]\n            }])\n          },\n          integer: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@id\"}},\n              \"e\": 123\n            }),\n            output: %([{\n              \"http://example.org/vocab#integer\": [{\"@value\": 123}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand params }\n        end\n      end\n\n      context \"with @type: @vocab\" do\n        {\n          true => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@vocab\"}},\n              \"e\": true\n            }),\n            output: %( [{\n              \"http://example.org/vocab#bool\": [{\"@value\": true}]\n            }])\n          },\n          false => {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@vocab\"}},\n              \"e\": false\n            }),\n            output: %([{\n              \"http://example.org/vocab#bool\": [{\"@value\": false}]\n            }])\n          },\n          double: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@vocab\"}},\n              \"e\": 1.23\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 1.23}]\n            }])\n          },\n          'double-zero': {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@vocab\"}},\n              \"e\": 0.0e0\n            }),\n            output: %([{\n              \"http://example.org/vocab#double\": [{\"@value\": 0.0e0}]\n            }])\n          },\n          integer: {\n            input: %({\n              \"@context\": {\"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@vocab\"}},\n              \"e\": 123\n            }),\n            output: %([{\n              \"http://example.org/vocab#integer\": [{\"@value\": 123}]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand params }\n        end\n      end\n    end\n\n    context \"with @type: @json\" do\n      {\n        true => {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n            },\n            \"e\": true\n          }),\n          output: %( [{\n            \"http://example.org/vocab#bool\": [{\"@value\": true, \"@type\": \"@json\"}]\n          }])\n        },\n        false => {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n            },\n            \"e\": false\n          }),\n          output: %([{\n            \"http://example.org/vocab#bool\": [{\"@value\": false, \"@type\": \"@json\"}]\n          }])\n        },\n        double: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n            },\n            \"e\": 1.23\n          }),\n          output: %([{\n            \"http://example.org/vocab#double\": [{\"@value\": 1.23, \"@type\": \"@json\"}]\n          }])\n        },\n        'double-zero': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n            },\n            \"e\": 0.0e0\n          }),\n          output: %([{\n            \"http://example.org/vocab#double\": [{\"@value\": 0.0e0, \"@type\": \"@json\"}]\n          }])\n        },\n        integer: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@json\"}\n            },\n            \"e\": 123\n          }),\n          output: %([{\n            \"http://example.org/vocab#integer\": [{\"@value\": 123, \"@type\": \"@json\"}]\n          }])\n        },\n        string: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#string\", \"@type\": \"@json\"}\n            },\n            \"e\": \"string\"\n          }),\n          output: %([{\n            \"http://example.org/vocab#string\": [{\n              \"@value\": \"string\",\n              \"@type\": \"@json\"\n            }]\n          }])\n        },\n        null: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#null\", \"@type\": \"@json\"}\n            },\n            \"e\": null\n          }),\n          output: %([{\n            \"http://example.org/vocab#null\": [{\n              \"@value\": null,\n              \"@type\": \"@json\"\n            }]\n          }])\n        },\n        object: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#object\", \"@type\": \"@json\"}\n            },\n            \"e\": {\"foo\": \"bar\"}\n          }),\n          output: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }])\n        },\n        array: {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#array\", \"@type\": \"@json\"}\n            },\n            \"e\": [{\"foo\": \"bar\"}]\n          }),\n          output: %([{\n            \"http://example.org/vocab#array\": [{\"@value\": [{\"foo\": \"bar\"}], \"@type\": \"@json\"}]\n          }])\n        },\n        'Does not expand terms inside json': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"e\": {\"@id\": \"http://example.org/vocab#array\", \"@type\": \"@json\"}\n            },\n            \"e\": [{\"e\": \"bar\"}]\n          }),\n          output: %([{\n            \"http://example.org/vocab#array\": [{\"@value\": [{\"e\": \"bar\"}], \"@type\": \"@json\"}]\n          }])\n        },\n        'Already expanded object': {\n          input: %({\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }),\n          output: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }]),\n          processingMode: 'json-ld-1.1'\n        },\n        'Already expanded object with aliased keys': {\n          input: %({\n            \"@context\": {\"@version\": 1.1, \"value\": \"@value\", \"type\": \"@type\", \"json\": \"@json\"},\n            \"http://example.org/vocab#object\": [{\"value\": {\"foo\": \"bar\"}, \"type\": \"json\"}]\n          }),\n          output: %([{\n            \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"coerced typed values\" do\n      {\n        boolean: {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.org/foo\", \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"}},\n            \"foo\": \"true\"\n          }),\n          output: %([{\n            \"http://example.org/foo\": [{\"@value\": \"true\", \"@type\": \"http://www.w3.org/2001/XMLSchema#boolean\"}]\n          }])\n        },\n        date: {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.org/foo\", \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}},\n            \"foo\": \"2011-03-26\"\n          }),\n          output: %([{\n            \"http://example.org/foo\": [{\"@value\": \"2011-03-26\", \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"null\" do\n      {\n        value: {\n          input: %({\"http://example.com/foo\": null}),\n          output: []\n        },\n        '@value': {\n          input: %({\"http://example.com/foo\": {\"@value\": null}}),\n          output: []\n        },\n        '@value and non-null @type': {\n          input: %({\"http://example.com/foo\": {\"@value\": null, \"@type\": \"http://type\"}}),\n          output: []\n        },\n        '@value and non-null @language': {\n          input: %({\"http://example.com/foo\": {\"@value\": null, \"@language\": \"en\"}}),\n          output: []\n        },\n        'array with null elements': {\n          input: %({\"http://example.com/foo\": [null]}),\n          output: %([{\"http://example.com/foo\": []}])\n        },\n        '@set with null @value': {\n          input: %({\n            \"http://example.com/foo\": [\n              {\"@value\": null, \"@type\": \"http://example.org/Type\"}\n            ]\n          }),\n          output: %([{\n            \"http://example.com/foo\": []\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"@direction\" do\n      {\n        'value with coerced null direction': {\n          input: %({\n            \"@context\": {\n              \"@direction\": \"rtl\",\n              \"ex\": \"http://example.org/vocab#\",\n              \"ex:ltr\": { \"@direction\": \"ltr\" },\n              \"ex:none\": { \"@direction\": null }\n            },\n            \"ex:rtl\": \"rtl\",\n            \"ex:ltr\": \"ltr\",\n            \"ex:none\": \"no direction\"\n          }),\n          output: %([\n            {\n              \"http://example.org/vocab#rtl\": [{\"@value\": \"rtl\", \"@direction\": \"rtl\"}],\n              \"http://example.org/vocab#ltr\": [{\"@value\": \"ltr\", \"@direction\": \"ltr\"}],\n              \"http://example.org/vocab#none\": [{\"@value\": \"no direction\"}]\n            }\n          ])\n        }\n      }.each_pair do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"default language\" do\n      {\n        'value with coerced null language': {\n          input: %({\n            \"@context\": {\n              \"@language\": \"en\",\n              \"ex\": \"http://example.org/vocab#\",\n              \"ex:german\": { \"@language\": \"de\" },\n              \"ex:nolang\": { \"@language\": null }\n            },\n            \"ex:german\": \"german\",\n            \"ex:nolang\": \"no language\"\n          }),\n          output: %([\n            {\n              \"http://example.org/vocab#german\": [{\"@value\": \"german\", \"@language\": \"de\"}],\n              \"http://example.org/vocab#nolang\": [{\"@value\": \"no language\"}]\n            }\n          ])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n\n      context \"and default direction\" do\n        {\n          'value with coerced null direction': {\n            input: %({\n              \"@context\": {\n                \"@language\": \"en\",\n                \"@direction\": \"rtl\",\n                \"ex\": \"http://example.org/vocab#\",\n                \"ex:ltr\": { \"@direction\": \"ltr\" },\n                \"ex:none\": { \"@direction\": null },\n                \"ex:german\": { \"@language\": \"de\" },\n                \"ex:nolang\": { \"@language\": null },\n                \"ex:german_ltr\": { \"@language\": \"de\", \"@direction\": \"ltr\" },\n                \"ex:nolang_ltr\": { \"@language\": null, \"@direction\": \"ltr\" },\n                \"ex:none_none\": { \"@language\": null, \"@direction\": null },\n                \"ex:german_none\": { \"@language\": \"de\", \"@direction\": null }\n              },\n              \"ex:rtl\": \"rtl en\",\n              \"ex:ltr\": \"ltr en\",\n              \"ex:none\": \"no direction en\",\n              \"ex:german\": \"german rtl\",\n              \"ex:nolang\": \"no language rtl\",\n              \"ex:german_ltr\": \"german ltr\",\n              \"ex:nolang_ltr\": \"no language ltr\",\n              \"ex:none_none\": \"no language or direction\",\n              \"ex:german_none\": \"german no direction\"\n            }),\n            output: %([\n              {\n                \"http://example.org/vocab#rtl\": [{\"@value\": \"rtl en\", \"@language\": \"en\", \"@direction\": \"rtl\"}],\n                \"http://example.org/vocab#ltr\": [{\"@value\": \"ltr en\", \"@language\": \"en\", \"@direction\": \"ltr\"}],\n                \"http://example.org/vocab#none\": [{\"@value\": \"no direction en\", \"@language\": \"en\"}],\n                \"http://example.org/vocab#german\": [{\"@value\": \"german rtl\", \"@language\": \"de\", \"@direction\": \"rtl\"}],\n                \"http://example.org/vocab#nolang\": [{\"@value\": \"no language rtl\", \"@direction\": \"rtl\"}],\n                \"http://example.org/vocab#german_ltr\": [{\"@value\": \"german ltr\", \"@language\": \"de\", \"@direction\": \"ltr\"}],\n                \"http://example.org/vocab#nolang_ltr\": [{\"@value\": \"no language ltr\", \"@direction\": \"ltr\"}],\n                \"http://example.org/vocab#none_none\": [{\"@value\": \"no language or direction\"}],\n                \"http://example.org/vocab#german_none\": [{\"@value\": \"german no direction\", \"@language\": \"de\"}]\n              }\n            ])\n          }\n        }.each_pair do |title, params|\n          it(title) { run_expand params }\n        end\n      end\n    end\n\n    context \"default vocabulary\" do\n      {\n        property: {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.com/\"},\n            \"verb\": {\"@value\": \"foo\"}\n          }),\n          output: %([{\n            \"http://example.com/verb\": [{\"@value\": \"foo\"}]\n          }])\n        },\n        datatype: {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.com/\"},\n            \"http://example.org/verb\": {\"@value\": \"foo\", \"@type\": \"string\"}\n          }),\n          output: %([{\n            \"http://example.org/verb\": [{\"@value\": \"foo\", \"@type\": \"http://example.com/string\"}]\n          }])\n        },\n        'expand-0028': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"date\": { \"@type\": \"dateTime\" }\n            },\n            \"@id\": \"example1\",\n            \"@type\": \"test\",\n            \"date\": \"2011-01-25T00:00:00Z\",\n            \"embed\": {\n              \"@id\": \"example2\",\n              \"expandedDate\": { \"@value\": \"2012-08-01T00:00:00Z\", \"@type\": \"dateTime\" }\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://foo/bar/example1\",\n              \"@type\": [\"http://example.org/vocab#test\"],\n              \"http://example.org/vocab#date\": [\n                {\n                  \"@value\": \"2011-01-25T00:00:00Z\",\n                  \"@type\": \"http://example.org/vocab#dateTime\"\n                }\n              ],\n              \"http://example.org/vocab#embed\": [\n                {\n                  \"@id\": \"http://foo/bar/example2\",\n                  \"http://example.org/vocab#expandedDate\": [\n                    {\n                      \"@value\": \"2012-08-01T00:00:00Z\",\n                      \"@type\": \"http://example.org/vocab#dateTime\"\n                    }\n                  ]\n                }\n              ]\n            }\n          ])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params.merge(base: \"http://foo/bar/\") }\n      end\n    end\n\n    context \"unmapped properties\" do\n      {\n        'unmapped key': {\n          input: %({\"foo\": \"bar\"}),\n          output: []\n        },\n        'unmapped @type as datatype': {\n          input: %({\n            \"http://example.com/foo\": {\"@value\": \"bar\", \"@type\": \"baz\"}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@value\": \"bar\", \"@type\": \"http://example/baz\"}]\n          }])\n        },\n        'unknown keyword': {\n          input: %({\"@foo\": \"bar\"}),\n          output: []\n        },\n        value: {\n          input: %({\n            \"@context\": {\"ex\": {\"@id\": \"http://example.org/idrange\", \"@type\": \"@id\"}},\n            \"@id\": \"http://example.org/Subj\",\n            \"idrange\": \"unmapped\"\n          }),\n          output: []\n        },\n        'context reset': {\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\", \"prop\": \"ex:prop\"},\n            \"@id\": \"http://example.org/id1\",\n            \"prop\": \"prop\",\n            \"ex:chain\": {\n              \"@context\": null,\n              \"@id\": \"http://example.org/id2\",\n              \"prop\": \"prop\"\n            }\n          }),\n          output: %([{\n            \"@id\": \"http://example.org/id1\",\n            \"http://example.org/prop\": [{\"@value\": \"prop\"}],\n            \"http://example.org/chain\": [{\"@id\": \"http://example.org/id2\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params.merge(base: \"http://example/\") }\n      end\n    end\n\n    context \"@container: @index\" do\n      {\n        'string annotation': {\n          input: %({\n            \"@context\": {\n              \"container\": {\n                \"@id\": \"http://example.com/container\",\n                \"@container\": \"@index\"\n              }\n            },\n            \"@id\": \"http://example.com/annotationsTest\",\n            \"container\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([{\n            \"@id\": \"http://example.com/annotationsTest\",\n            \"http://example.com/container\": [\n              {\"@value\": \"Die Königin\", \"@index\": \"de\"},\n              {\"@value\": \"Ihre Majestät\", \"@index\": \"de\"},\n              {\"@value\": \"The Queen\", \"@index\": \"en\"}\n            ]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n\n      context \"@index: property\" do\n        {\n          'error if @version is json-ld-1.0': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.com/\",\n                \"container\": {\"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"http://example.com/annotationsTest\",\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n              }\n            }),\n            exception: JSON::LD::JsonLdError::InvalidTermDefinition,\n            processingMode: 'json-ld-1.0'\n          },\n          'error if @container does not include @index': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@vocab\": \"http://example.com/\",\n                \"container\": {\"@index\": \"prop\"}\n              },\n              \"@id\": \"http://example.com/annotationsTest\",\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n              }\n            }),\n            exception: JSON::LD::JsonLdError::InvalidTermDefinition\n          },\n          'error if @index is a keyword': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@vocab\": \"http://example.com/\",\n                \"container\": {\n                  \"@id\": \"http://example.com/container\",\n                  \"@container\": \"@index\",\n                  \"@index\": \"@index\"\n                }\n              },\n              \"@id\": \"http://example.com/annotationsTest\",\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n              }\n            }),\n            exception: JSON::LD::JsonLdError::InvalidTermDefinition\n          },\n          'error if @index is not a string': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@vocab\": \"http://example.com/\",\n                \"container\": {\n                  \"@id\": \"http://example.com/container\",\n                  \"@container\": \"@index\",\n                  \"@index\": true\n                }\n              },\n              \"@id\": \"http://example.com/annotationsTest\",\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n              }\n            }),\n            exception: JSON::LD::JsonLdError::InvalidTermDefinition\n          },\n          'error if attempting to add property to value object': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@vocab\": \"http://example.com/\",\n                \"container\": {\n                  \"@id\": \"http://example.com/container\",\n                  \"@container\": \"@index\",\n                  \"@index\": \"prop\"\n                }\n              },\n              \"@id\": \"http://example.com/annotationsTest\",\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n              }\n            }),\n            exception: JSON::LD::JsonLdError::InvalidValueObject\n          },\n          'property-valued index expands to property value, instead of @index (value)': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": \"person/1\",\n                \"guest\": [\"person/2\", \"person/3\"]\n              }\n            }),\n            output: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@value\": \"regular\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@value\": \"guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@value\": \"guest\"}]}\n              ]\n            }])\n          },\n          'property-valued index appends to property value, instead of @index (value)': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"}\n              },\n              \"@id\": \"article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\", \"http://example.com/prop\": \"foo\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\", \"prop\": \"foo\"},\n                  {\"@id\": \"person/3\", \"prop\": \"foo\"}\n                ]\n              }\n            }),\n            output: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@value\": \"regular\"}, {\"@value\": \"foo\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@value\": \"guest\"}, {\"@value\": \"foo\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@value\": \"guest\"}, {\"@value\": \"foo\"}]}\n              ]\n            }])\n          },\n          'property-valued index expands to property value, instead of @index (node)': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"},\n                \"prop\": {\"@type\": \"@vocab\"}\n              },\n              \"@id\": \"http://example.com/article\",\n              \"author\": {\n                \"regular\": \"person/1\",\n                \"guest\": [\"person/2\", \"person/3\"]\n              }\n            }),\n            output: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/regular\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]}\n              ]\n            }])\n          },\n          'property-valued index appends to property value, instead of @index (node)': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"},\n                \"prop\": {\"@type\": \"@vocab\"}\n              },\n              \"@id\": \"http://example.com/article\",\n              \"author\": {\n                \"regular\": {\"@id\": \"person/1\", \"prop\": \"foo\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\", \"prop\": \"foo\"},\n                  {\"@id\": \"person/3\", \"prop\": \"foo\"}\n                ]\n              }\n            }),\n            output: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/regular\"}, {\"@id\": \"http://example.com/foo\"}]},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}, {\"@id\": \"http://example.com/foo\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}, {\"@id\": \"http://example.com/foo\"}]}\n              ]\n            }])\n          },\n          'property-valued index does not output property for @none': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"@base\": \"http://example.com/\",\n                \"@vocab\": \"http://example.com/\",\n                \"author\": {\"@type\": \"@id\", \"@container\": \"@index\", \"@index\": \"prop\"},\n                \"prop\": {\"@type\": \"@vocab\"}\n              },\n              \"@id\": \"http://example.com/article\",\n              \"author\": {\n                \"@none\": {\"@id\": \"person/1\"},\n                \"guest\": [\n                  {\"@id\": \"person/2\"},\n                  {\"@id\": \"person/3\"}\n                ]\n              }\n            }),\n            output: %([{\n              \"@id\": \"http://example.com/article\",\n              \"http://example.com/author\": [\n                {\"@id\": \"http://example.com/person/1\"},\n                {\"@id\": \"http://example.com/person/2\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]},\n                {\"@id\": \"http://example.com/person/3\", \"http://example.com/prop\": [{\"@id\": \"http://example.com/guest\"}]}\n              ]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand(validate: true, **params) }\n        end\n      end\n    end\n\n    context \"@container: @list\" do\n      {\n        empty: {\n          input: %({\"http://example.com/foo\": {\"@list\": []}}),\n          output: %([{\"http://example.com/foo\": [{\"@list\": []}]}])\n        },\n        'coerced empty': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@list\"}},\n            \"http://example.com/foo\": []\n          }),\n          output: %([{\"http://example.com/foo\": [{\"@list\": []}]}])\n        },\n        'coerced single element': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@list\"}},\n            \"http://example.com/foo\": [ \"foo\" ]\n          }),\n          output: %([{\"http://example.com/foo\": [{\"@list\": [{\"@value\": \"foo\"}]}]}])\n        },\n        'coerced multiple elements': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@list\"}},\n            \"http://example.com/foo\": [ \"foo\", \"bar\" ]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [ {\"@value\": \"foo\"}, {\"@value\": \"bar\"} ]}]\n          }])\n        },\n        'native values in list': {\n          input: %({\n            \"http://example.com/foo\": {\"@list\": [1, 2]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@value\": 1}, {\"@value\": 2}]}]\n          }])\n        },\n        'explicit list with coerced @id values': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@type\": \"@id\"}},\n            \"http://example.com/foo\": {\"@list\": [\"http://foo\", \"http://bar\"]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@id\": \"http://foo\"}, {\"@id\": \"http://bar\"}]}]\n          }])\n        },\n        'explicit list with coerced datatype values': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}},\n            \"http://example.com/foo\": {\"@list\": [\"2012-04-12\"]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@value\": \"2012-04-12\", \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}]}]\n          }])\n        },\n        'expand-0004': {\n          input: %({\n            \"@context\": {\n              \"mylist1\": {\"@id\": \"http://example.com/mylist1\", \"@container\": \"@list\"},\n              \"mylist2\": {\"@id\": \"http://example.com/mylist2\", \"@container\": \"@list\"},\n              \"myset2\": {\"@id\": \"http://example.com/myset2\", \"@container\": \"@set\"},\n              \"myset3\": {\"@id\": \"http://example.com/myset3\", \"@container\": \"@set\"}\n            },\n            \"http://example.org/property\": { \"@list\": \"one item\" }\n          }),\n          output: %([\n            {\n              \"http://example.org/property\": [\n                {\n                  \"@list\": [\n                    {\n                      \"@value\": \"one item\"\n                    }\n                  ]\n                }\n              ]\n            }\n          ])\n        },\n        '@list containing @list': {\n          input: %({\n            \"http://example.com/foo\": {\"@list\": [{\"@list\": [\"baz\"]}]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]\n          }])\n        },\n        '@list containing empty @list': {\n          input: %({\n            \"http://example.com/foo\": {\"@list\": [{\"@list\": []}]}\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": []}]}]\n          }])\n        },\n        '@list containing @list (with coercion)': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [{\"@list\": [\"baz\"]}]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]\n          }])\n        },\n        '@list containing empty @list (with coercion)': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [{\"@list\": []}]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": []}]}]\n          }])\n        },\n        'coerced @list containing an array': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"baz\"]]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]\n          }])\n        },\n        'coerced @list containing an empty array': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[]]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": []}]}]\n          }])\n        },\n        'coerced @list containing deep arrays': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[[\"baz\"]]]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]}]\n          }])\n        },\n        'coerced @list containing deep empty arrays': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[[]]]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@list\": []}]}]}]\n          }])\n        },\n        'coerced @list containing multiple lists': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"a\"], [\"b\"]]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [\n              {\"@list\": [{\"@value\": \"a\"}]},\n              {\"@list\": [{\"@value\": \"b\"}]}\n            ]}]\n          }])\n        },\n        'coerced @list containing mixed list values': {\n          input: %({\n            \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n            \"foo\": [[\"a\"], \"b\"]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [{\"@list\": [\n              {\"@list\": [{\"@value\": \"a\"}]},\n              {\"@value\": \"b\"}\n            ]}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"@container: @set\" do\n      {\n        empty: {\n          input: %({\"http://example.com/foo\": {\"@set\": []}}),\n          output: %([{\"http://example.com/foo\": []}])\n        },\n        'coerced empty': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@set\"}},\n            \"http://example.com/foo\": []\n          }),\n          output: %([{\n            \"http://example.com/foo\": []\n          }])\n        },\n        'coerced single element': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@set\"}},\n            \"http://example.com/foo\": [ \"foo\" ]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [ {\"@value\": \"foo\"} ]\n          }])\n        },\n        'coerced multiple elements': {\n          input: %({\n            \"@context\": {\"http://example.com/foo\": {\"@container\": \"@set\"}},\n            \"http://example.com/foo\": [ \"foo\", \"bar\" ]\n          }),\n          output: %([{\n            \"http://example.com/foo\": [ {\"@value\": \"foo\"}, {\"@value\": \"bar\"} ]\n          }])\n        },\n        'array containing set': {\n          input: %({\n            \"http://example.com/foo\": [{\"@set\": []}]\n          }),\n          output: %([{\n            \"http://example.com/foo\": []\n          }])\n        },\n        'Free-floating values in sets': {\n          input: %({\n            \"@context\": {\"property\": \"http://example.com/property\"},\n            \"@graph\": [{\n                \"@set\": [\n                    \"free-floating strings in set objects are removed\",\n                    {\"@id\": \"http://example.com/free-floating-node\"},\n                    {\n                        \"@id\": \"http://example.com/node\",\n                        \"property\": \"nodes with properties are not removed\"\n                    }\n                ]\n            }]\n          }),\n          output: %([{\n            \"@id\": \"http://example.com/node\",\n            \"http://example.com/property\": [\n              {\n                \"@value\": \"nodes with properties are not removed\"\n              }\n            ]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"@container: @language\" do\n      {\n        'simple map': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"}\n              ]\n            }\n          ])\n        },\n        'simple map with @none': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ],\n              \"@none\": \"The Queen\"\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"The Queen\"},\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"}\n              ]\n            }\n          ])\n        },\n        'simple map with alias of @none': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@container\": \"@language\"\n              },\n              \"none\": \"@none\"\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ],\n              \"none\": \"The Queen\"\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"},\n                {\"@value\": \"The Queen\"}\n              ]\n            }\n          ])\n        },\n        'simple map with default direction': {\n          input: %({\n            \"@context\": {\n              \"@direction\": \"ltr\",\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"ltr\"}\n              ]\n            }\n          ])\n        },\n        'simple map with term direction': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"ltr\"}\n              ]\n            }\n          ])\n        },\n        'simple map with overriding term direction': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"@direction\": \"rtl\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": \"ltr\",\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\", \"@direction\": \"ltr\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\", \"@direction\": \"ltr\"}\n              ]\n            }\n          ])\n        },\n        'simple map with overriding null direction': {\n          input: %({\n            \"@context\": {\n              \"vocab\": \"http://example.com/vocab/\",\n              \"@direction\": \"rtl\",\n              \"label\": {\n                \"@id\": \"vocab:label\",\n                \"@direction\": null,\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"}\n              ]\n            }\n          ])\n        },\n        'expand-0035': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.com/vocab/\",\n              \"@language\": \"it\",\n              \"label\": {\n                \"@container\": \"@language\"\n              }\n            },\n            \"@id\": \"http://example.com/queen\",\n            \"label\": {\n              \"en\": \"The Queen\",\n              \"de\": [ \"Die Königin\", \"Ihre Majestät\" ]\n            },\n            \"http://example.com/vocab/label\": [\n              \"Il re\",\n              { \"@value\": \"The king\", \"@language\": \"en\" }\n            ]\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/queen\",\n              \"http://example.com/vocab/label\": [\n                {\"@value\": \"Il re\", \"@language\": \"it\"},\n                {\"@value\": \"The king\", \"@language\": \"en\"},\n                {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n                {\"@value\": \"Ihre Majestät\", \"@language\": \"de\"},\n                {\"@value\": \"The Queen\", \"@language\": \"en\"}\n              ]\n            }\n          ])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"@container: @id\" do\n      {\n        'Adds @id to object not having an @id': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n            }\n          }),\n          output: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}], \"@id\": \"_:bar\"},\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }])\n        },\n        'Retains @id in object already having an @id': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"http://example.org/foo\": {\"@id\": \"http://example.org/bar\", \"label\": \"Object with @id <foo>\"},\n              \"_:bar\": {\"@id\": \"_:foo\", \"label\": \"Object with @id _:bar\"}\n            }\n          }),\n          output: %([{\n            \"http://example/idmap\": [\n              {\"@id\": \"_:foo\", \"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}]},\n              {\"@id\": \"http://example.org/bar\", \"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}]}\n            ]\n          }])\n        },\n        'Adds expanded @id to object': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"foo\": {\"label\": \"Object with @id <foo>\"}\n            }\n          }),\n          output: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }]),\n          base: \"http://example.org/\"\n        },\n        'Raises InvalidContainerMapping if processingMode is 1.0': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"}\n            },\n            \"idmap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n            }\n          }),\n          processingMode: 'json-ld-1.0',\n          exception: JSON::LD::JsonLdError::InvalidContainerMapping\n        },\n        'Does not add @id if it is @none, or expands to @none': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\"},\n              \"none\": \"@none\"\n            },\n            \"idmap\": {\n              \"@none\": {\"label\": \"Object with no @id\"},\n              \"none\": {\"label\": \"Another object with no @id\"}\n            }\n          }),\n          output: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @id\"}]},\n              {\"http://example/label\": [{\"@value\": \"Another object with no @id\"}]}\n            ]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@container: @type\" do\n      {\n        'Adds @type to object not having an @type': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @type _:bar\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}], \"@type\": [\"_:bar\"]},\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example.org/foo\"]}\n            ]\n          }])\n        },\n        'Prepends @type in object already having an @type': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"@type\": \"http://example.org/bar\", \"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"@type\": \"_:foo\", \"label\": \"Object with @type _:bar\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\n                \"@type\": [\"_:bar\", \"_:foo\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}]\n              },\n              {\n                \"@type\": [\"http://example.org/foo\", \"http://example.org/bar\"],\n                \"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}]\n              }\n            ]\n          }])\n        },\n        'Adds vocabulary expanded @type to object': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"Foo\": {\"label\": \"Object with @type <foo>\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example/Foo\"]}\n            ]\n          }])\n        },\n        'Adds document expanded @type to object': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"},\n              \"label\": \"http://example/label\"\n            },\n            \"typemap\": {\n              \"Foo\": {\"label\": \"Object with @type <foo>\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example/Foo\"]}\n            ]\n          }])\n        },\n        'Does not add @type if it is @none, or expands to @none': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"},\n              \"none\": \"@none\"\n            },\n            \"typemap\": {\n              \"@none\": {\"label\": \"Object with no @type\"},\n              \"none\": {\"label\": \"Another object with no @type\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with no @type\"}]},\n              {\"http://example/label\": [{\"@value\": \"Another object with no @type\"}]}\n            ]\n          }])\n        },\n        'Raises InvalidContainerMapping if processingMode is 1.0': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"}\n            },\n            \"typemap\": {\n              \"http://example.org/foo\": {\"label\": \"Object with @type <foo>\"},\n              \"_:bar\": {\"label\": \"Object with @type _:bar\"}\n            }\n          }),\n          processingMode: 'json-ld-1.0',\n          exception: JSON::LD::JsonLdError::InvalidContainerMapping\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@container: @graph\" do\n      {\n        'Creates a graph object given a value': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"value\": \"x\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }]\n            }]\n          }])\n        },\n        'Creates a graph object within an array given a value': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": [\"@graph\", \"@set\"]}\n            },\n            \"input\": {\n              \"value\": \"x\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"http://example.org/value\": [{\"@value\": \"x\"}]\n              }]\n            }]\n          }])\n        },\n        'Creates an graph object if value is a graph': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"input\": {\"@container\": \"@graph\"}\n            },\n            \"input\": {\n              \"@graph\": {\n                \"value\": \"x\"\n              }\n            }\n          }),\n          output: %([{\n            \"http://example.org/input\": [{\n              \"@graph\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n\n      context \"+ @index\" do\n        {\n          'Creates a graph object given an indexed value': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n              },\n              \"input\": {\n                \"g1\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@index\": \"g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value with index @none': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n              },\n              \"input\": {\n                \"@none\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value with index alias of @none': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]},\n                \"none\": \"@none\"\n              },\n              \"input\": {\n                \"none\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value with @set': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\", \"@set\"]}\n              },\n              \"input\": {\n                \"g1\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@index\": \"g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Does not create a new graph object if indexed value is already a graph object': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@index\"]}\n              },\n              \"input\": {\n                \"g1\": {\n                  \"@graph\": {\n                    \"value\": \"x\"\n                  }\n                }\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@index\": \"g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n        end\n\n        context \"@index: property\" do\n          {\n            'it expands to property value, instead of @index': {\n              input: %({\n                \"@context\": {\n                  \"@version\": 1.1,\n                  \"@vocab\": \"http://example.org/\",\n                  \"input\": {\"@container\": [\"@graph\", \"@index\"], \"@index\": \"prop\"}\n                },\n                \"input\": {\n                  \"g1\": {\"value\": \"x\"}\n                }\n              }),\n              output: %([{\n                \"http://example.org/input\": [{\n                  \"http://example.org/prop\": [{\"@value\": \"g1\"}],\n                  \"@graph\": [{\n                    \"http://example.org/value\": [{\"@value\": \"x\"}]\n                  }]\n                }]\n              }])\n            }\n          }.each do |title, params|\n            it(title) { run_expand(validate: true, **params) }\n          end\n        end\n      end\n\n      context \"+ @id\" do\n        {\n          'Creates a graph object given an indexed value': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"http://example.com/g1\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@id\": \"http://example.com/g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value of @none': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"@none\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value of alias of @none': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]},\n                \"none\": \"@none\"\n              },\n              \"input\": {\n                \"none\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Creates a graph object given an indexed value with @set': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\", \"@set\"]}\n              },\n              \"input\": {\n                \"http://example.com/g1\": {\"value\": \"x\"}\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@id\": \"http://example.com/g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          },\n          'Does not create a new graph object if indexed value is already a graph object': {\n            input: %({\n              \"@context\": {\n                \"@vocab\": \"http://example.org/\",\n                \"input\": {\"@container\": [\"@graph\", \"@id\"]}\n              },\n              \"input\": {\n                \"http://example.com/g1\": {\n                  \"@graph\": {\n                    \"value\": \"x\"\n                  }\n                }\n              }\n            }),\n            output: %([{\n              \"http://example.org/input\": [{\n                \"@id\": \"http://example.com/g1\",\n                \"@graph\": [{\n                  \"http://example.org/value\": [{\"@value\": \"x\"}]\n                }]\n              }]\n            }])\n          }\n        }.each do |title, params|\n          it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n        end\n      end\n    end\n\n    context \"@included\" do\n      {\n        'Basic Included array': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": [{\n              \"prop\": \"value2\"\n            }]\n          }),\n          output: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'Basic Included object': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'Multiple properties mapping to @included are folded together': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included1\": \"@included\",\n              \"included2\": \"@included\"\n            },\n            \"included1\": {\"prop\": \"value1\"},\n            \"included2\": {\"prop\": \"value2\"}\n          }),\n          output: %([{\n            \"@included\": [\n              {\"http://example.org/prop\": [{\"@value\": \"value1\"}]},\n              {\"http://example.org/prop\": [{\"@value\": \"value2\"}]}\n            ]\n          }])\n        },\n        'Included containing @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\",\n              \"@included\": {\n                \"prop\": \"value3\"\n              }\n            }\n          }),\n          output: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"@included\": [{\n              \"http://example.org/prop\": [{\"@value\": \"value2\"}],\n              \"@included\": [{\n                \"http://example.org/prop\": [{\"@value\": \"value3\"}]\n              }]\n            }]\n          }])\n        },\n        'Property value with @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": {\n              \"@type\": \"Foo\",\n              \"@included\": {\n                \"@type\": \"Bar\"\n              }\n            }\n          }),\n          output: %([{\n            \"http://example.org/prop\": [{\n              \"@type\": [\"http://example.org/Foo\"],\n              \"@included\": [{\n                \"@type\": [\"http://example.org/Bar\"]\n              }]\n            }]\n          }])\n        },\n        'json.api example': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"@base\": \"http://example.org/base/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"data\": \"@nest\",\n              \"attributes\": \"@nest\",\n              \"links\": \"@nest\",\n              \"relationships\": \"@nest\",\n              \"included\": \"@included\",\n              \"self\": {\"@type\": \"@id\"},\n              \"related\": {\"@type\": \"@id\"},\n              \"comments\": {\n                \"@context\": {\n                  \"data\": null\n                }\n              }\n            },\n            \"data\": [{\n              \"type\": \"articles\",\n              \"id\": \"1\",\n              \"attributes\": {\n                \"title\": \"JSON:API paints my bikeshed!\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/articles/1\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/author\",\n                    \"related\": \"http://example.com/articles/1/author\"\n                  },\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                },\n                \"comments\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/comments\",\n                    \"related\": \"http://example.com/articles/1/comments\"\n                  },\n                  \"data\": [\n                    { \"type\": \"comments\", \"id\": \"5\" },\n                    { \"type\": \"comments\", \"id\": \"12\" }\n                  ]\n                }\n              }\n            }],\n            \"included\": [{\n              \"type\": \"people\",\n              \"id\": \"9\",\n              \"attributes\": {\n                \"first-name\": \"Dan\",\n                \"last-name\": \"Gebhardt\",\n                \"twitter\": \"dgeb\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/people/9\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"5\",\n              \"attributes\": {\n                \"body\": \"First!\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"2\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/5\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"12\",\n              \"attributes\": {\n                \"body\": \"I like XML better\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/12\"\n              }\n            }]\n          }),\n          output: %([{\n            \"@id\": \"http://example.org/base/1\",\n            \"@type\": [\"http://example.org/vocab#articles\"],\n            \"http://example.org/vocab#title\": [{\"@value\": \"JSON:API paints my bikeshed!\"}],\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1\"}],\n            \"http://example.org/vocab#author\": [{\n              \"@id\": \"http://example.org/base/9\",\n              \"@type\": [\"http://example.org/vocab#people\"],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1/relationships/author\"}],\n              \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/author\"}]\n            }],\n            \"http://example.org/vocab#comments\": [{\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1/relationships/comments\"}],\n              \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/comments\"}]\n            }],\n            \"@included\": [{\n              \"@id\": \"http://example.org/base/9\",\n              \"@type\": [\"http://example.org/vocab#people\"],\n              \"http://example.org/vocab#first-name\": [{\"@value\": \"Dan\"}],\n              \"http://example.org/vocab#last-name\": [{\"@value\": \"Gebhardt\"}],\n              \"http://example.org/vocab#twitter\": [{\"@value\": \"dgeb\"}],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/people/9\"}]\n            }, {\n              \"@id\": \"http://example.org/base/5\",\n              \"@type\": [\"http://example.org/vocab#comments\"],\n              \"http://example.org/vocab#body\": [{\"@value\": \"First!\"}],\n              \"http://example.org/vocab#author\": [{\n                \"@id\": \"http://example.org/base/2\",\n                \"@type\": [\"http://example.org/vocab#people\"]\n              }],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/5\"}]\n            }, {\n              \"@id\": \"http://example.org/base/12\",\n              \"@type\": [\"http://example.org/vocab#comments\"],\n              \"http://example.org/vocab#body\": [{\"@value\": \"I like XML better\"}],\n              \"http://example.org/vocab#author\": [{\n                \"@id\": \"http://example.org/base/9\",\n                \"@type\": [\"http://example.org/vocab#people\"]\n              }],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/12\"}]\n            }]\n          }])\n        },\n        'Error if @included value is a string': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@included\": \"string\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidIncludedValue\n        },\n        'Error if @included value is a value object': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@included\": {\"@value\": \"value\"}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidIncludedValue\n        },\n        'Error if @included value is a list object': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@included\": {\"@list\": [\"value\"]}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidIncludedValue\n        }\n      }.each do |title, params|\n        it(title) { run_expand(params) }\n      end\n    end\n\n    context \"@nest\" do\n      {\n        'Expands input using @nest': {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"p1\": \"v1\",\n            \"@nest\": {\n              \"p2\": \"v2\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}]\n          }])\n        },\n        'Expands input using aliased @nest': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": \"@nest\"\n            },\n            \"p1\": \"v1\",\n            \"nest\": {\n              \"p2\": \"v2\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [{\"@value\": \"v2\"}]\n          }])\n        },\n        'Appends nested values when property at base and nested': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": \"@nest\"\n            },\n            \"p1\": \"v1\",\n            \"nest\": {\n              \"p2\": \"v3\"\n            },\n            \"p2\": \"v2\"\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [\n              {\"@value\": \"v2\"},\n              {\"@value\": \"v3\"}\n            ]\n          }])\n        },\n        'Appends nested values from all @nest aliases in term order': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest1\": \"@nest\",\n              \"nest2\": \"@nest\"\n            },\n            \"p1\": \"v1\",\n            \"nest2\": {\n              \"p2\": \"v4\"\n            },\n            \"p2\": \"v2\",\n            \"nest1\": {\n              \"p2\": \"v3\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [\n              {\"@value\": \"v2\"},\n              {\"@value\": \"v3\"},\n              {\"@value\": \"v4\"}\n            ]\n          }])\n        },\n        'Nested nested containers': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"p1\": \"v1\",\n            \"@nest\": {\n              \"p2\": \"v3\",\n              \"@nest\": {\n                \"p2\": \"v4\"\n              }\n            },\n            \"p2\": \"v2\"\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [\n              {\"@value\": \"v2\"},\n              {\"@value\": \"v3\"},\n              {\"@value\": \"v4\"}\n            ]\n          }])\n        },\n        'Arrays of nested values': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": \"@nest\"\n            },\n            \"p1\": \"v1\",\n            \"nest\": {\n              \"p2\": [\"v4\", \"v5\"]\n            },\n            \"p2\": [\"v2\", \"v3\"]\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [\n              {\"@value\": \"v2\"},\n              {\"@value\": \"v3\"},\n              {\"@value\": \"v4\"},\n              {\"@value\": \"v5\"}\n            ]\n          }])\n        },\n        'A nest of arrays': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": \"@nest\"\n            },\n            \"p1\": \"v1\",\n            \"nest\": [{\n              \"p2\": \"v4\"\n            }, {\n              \"p2\": \"v5\"\n            }],\n            \"p2\": [\"v2\", \"v3\"]\n          }),\n          output: %([{\n            \"http://example.org/p1\": [{\"@value\": \"v1\"}],\n            \"http://example.org/p2\": [\n              {\"@value\": \"v2\"},\n              {\"@value\": \"v3\"},\n              {\"@value\": \"v4\"},\n              {\"@value\": \"v5\"}\n            ]\n          }])\n        },\n        '@nest MUST NOT have a string value': {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@nest\": \"This should generate an error\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest MUST NOT have a boolen value': {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@nest\": true\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest MUST NOT have a numeric value': {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@nest\": 1\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest MUST NOT have a value object value': {\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@nest\": {\"@value\": \"This should generate an error\"}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest in term definition MUST NOT be a non-@nest keyword': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": {\"@nest\": \"@id\"}\n            },\n            \"nest\": \"This should generate an error\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest in term definition MUST NOT have a boolen value': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": {\"@nest\": true}\n            },\n            \"nest\": \"This should generate an error\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        '@nest in term definition MUST NOT have a numeric value': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": {\"@nest\": 123}\n            },\n            \"nest\": \"This should generate an error\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        'Nested @container: @list': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"list\": {\"@container\": \"@list\", \"@nest\": \"nestedlist\"},\n              \"nestedlist\": \"@nest\"\n            },\n            \"nestedlist\": {\n              \"list\": [\"a\", \"b\"]\n            }\n          }),\n          output: %([{\n            \"http://example.org/list\": [{\"@list\": [\n              {\"@value\": \"a\"},\n              {\"@value\": \"b\"}\n            ]}]\n          }])\n        },\n        'Nested @container: @index': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"index\": {\"@container\": \"@index\", \"@nest\": \"nestedindex\"},\n              \"nestedindex\": \"@nest\"\n            },\n            \"nestedindex\": {\n              \"index\": {\n                \"A\": \"a\",\n                \"B\": \"b\"\n              }\n            }\n          }),\n          output: %([{\n            \"http://example.org/index\": [\n              {\"@value\": \"a\", \"@index\": \"A\"},\n              {\"@value\": \"b\", \"@index\": \"B\"}\n            ]\n          }])\n        },\n        'Nested @container: @language': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"container\": {\"@container\": \"@language\", \"@nest\": \"nestedlanguage\"},\n              \"nestedlanguage\": \"@nest\"\n            },\n            \"nestedlanguage\": {\n              \"container\": {\n                \"en\": \"The Queen\",\n                \"de\": \"Die Königin\"\n              }\n            }\n          }),\n          output: %([{\n            \"http://example.org/container\": [\n              {\"@value\": \"Die Königin\", \"@language\": \"de\"},\n              {\"@value\": \"The Queen\", \"@language\": \"en\"}\n            ]\n          }])\n        },\n        'Nested @container: @type': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\", \"@nest\": \"nestedtypemap\"},\n              \"nestedtypemap\": \"@nest\"\n            },\n            \"nestedtypemap\": {\n              \"typemap\": {\n                \"http://example.org/foo\": {\"label\": \"Object with @type <foo>\"},\n                \"_:bar\": {\"label\": \"Object with @type _:bar\"}\n              }\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @type _:bar\"}], \"@type\": [\"_:bar\"]},\n              {\"http://example/label\": [{\"@value\": \"Object with @type <foo>\"}], \"@type\": [\"http://example.org/foo\"]}\n            ]\n          }])\n        },\n        'Nested @container: @id': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"idmap\": {\"@container\": \"@id\", \"@nest\": \"nestedidmap\"},\n              \"nestedidmap\": \"@nest\"\n            },\n            \"nestedidmap\": {\n              \"idmap\": {\n                \"http://example.org/foo\": {\"label\": \"Object with @id <foo>\"},\n                \"_:bar\": {\"label\": \"Object with @id _:bar\"}\n              }\n            }\n          }),\n          output: %([{\n            \"http://example/idmap\": [\n              {\"http://example/label\": [{\"@value\": \"Object with @id _:bar\"}], \"@id\": \"_:bar\"},\n              {\"http://example/label\": [{\"@value\": \"Object with @id <foo>\"}], \"@id\": \"http://example.org/foo\"}\n            ]\n          }])\n        },\n        'Nest term an invalid keyword': {\n          input: %({\n            \"@context\": {\n              \"term\": {\"@id\": \"http://example/term\", \"@nest\": \"@id\"}\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidNestValue\n        },\n        'Nest in @reverse': {\n          input: %({\n            \"@context\": {\n              \"term\": {\"@reverse\": \"http://example/term\", \"@nest\": \"@nest\"}\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidReverseProperty\n        },\n        'Raises InvalidTermDefinition if processingMode is 1.0': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\",\n              \"list\": {\"@container\": \"@list\", \"@nest\": \"nestedlist\"},\n              \"nestedlist\": \"@nest\"\n            },\n            \"nestedlist\": {\n              \"list\": [\"a\", \"b\"]\n            }\n          }),\n          processingMode: 'json-ld-1.0',\n          validate: true,\n          exception: JSON::LD::JsonLdError::InvalidTermDefinition\n        },\n        'Applies property scoped contexts which are aliases of @nest': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"nest\": {\n                \"@id\": \"@nest\",\n                \"@context\": {\n                  \"@vocab\": \"http://example.org/nest/\"\n                }\n              }\n            },\n            \"nest\": {\n              \"property\": \"should be in /nest\"\n            }\n          }),\n          output: %([{\n            \"http://example.org/nest/property\": [{\"@value\": \"should be in /nest\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"scoped context\" do\n      {\n        'adding new term': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"foo\": {\n              \"bar\": \"baz\"\n            }\n          }),\n          output: %([\n            {\n              \"http://example/foo\": [{\"http://example.org/bar\": [{\"@value\": \"baz\"}]}]\n            }\n          ])\n        },\n        'overriding a term': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n              \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n            },\n            \"foo\": {\n              \"bar\": \"http://example/baz\"\n            }\n          }),\n          output: %([\n            {\n              \"http://example/foo\": [{\"http://example/bar\": [{\"@id\": \"http://example/baz\"}]}]\n            }\n          ])\n        },\n        'property and value with different terms mapping to the same expanded property': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"Bar\": {\"@id\": \"bar\"}}}\n            },\n            \"foo\": {\n              \"Bar\": \"baz\"\n            }\n          }),\n          output: %([\n            {\n              \"http://example/foo\": [{\n                \"http://example/bar\": [\n                  {\"@value\": \"baz\"}\n                ]}\n              ]\n            }\n          ])\n        },\n        'deep @context affects nested nodes': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n            },\n            \"foo\": {\n              \"bar\": {\n                \"baz\": \"buzz\"\n              }\n            }\n          }),\n          output: %([\n            {\n              \"http://example/foo\": [{\n                \"http://example/bar\": [{\n                  \"http://example/baz\": [{\"@id\": \"http://example/buzz\"}]\n                }]\n              }]\n            }\n          ])\n        },\n        'scoped context layers on intemediate contexts': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"b\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n            },\n            \"a\": {\n              \"@context\": {\"@vocab\": \"http://example.com/\"},\n              \"b\": {\n                \"a\": \"A in example.com\",\n                \"c\": \"C in example.org\"\n              },\n              \"c\": \"C in example.com\"\n            },\n            \"c\": \"C in example\"\n          }),\n          output: %([{\n            \"http://example/a\": [{\n              \"http://example.com/c\": [{\"@value\": \"C in example.com\"}],\n              \"http://example/b\": [{\n                \"http://example.com/a\": [{\"@value\": \"A in example.com\"}],\n                \"http://example.org/c\": [{\"@value\": \"C in example.org\"}]\n              }]\n            }],\n            \"http://example/c\": [{\"@value\": \"C in example\"}]\n          }])\n        },\n        'Raises InvalidTermDefinition if processingMode is 1.0': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"foo\": {\n              \"bar\": \"baz\"\n            }\n          }),\n          processingMode: 'json-ld-1.0',\n          validate: true,\n          exception: JSON::LD::JsonLdError::InvalidTermDefinition\n        },\n        'Scoped on id map': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"schema\": \"http://schema.org/\",\n              \"name\": \"schema:name\",\n              \"body\": \"schema:articleBody\",\n              \"words\": \"schema:wordCount\",\n              \"post\": {\n                \"@id\": \"schema:blogPost\",\n                \"@container\": \"@id\",\n                \"@context\": {\n                  \"@base\": \"http://example.com/posts/\"\n                }\n              }\n            },\n            \"@id\": \"http://example.com/\",\n            \"@type\": \"schema:Blog\",\n            \"name\": \"World Financial News\",\n            \"post\": {\n              \"1/en\": {\n                \"body\": \"World commodities were up today with heavy trading of crude oil...\",\n                \"words\": 1539\n              },\n              \"1/de\": {\n                \"body\": \"Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...\",\n                \"words\": 1204\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"http://example.com/\",\n            \"@type\": [\"http://schema.org/Blog\"],\n            \"http://schema.org/name\": [{\"@value\": \"World Financial News\"}],\n            \"http://schema.org/blogPost\": [{\n              \"@id\": \"http://example.com/posts/1/en\",\n              \"http://schema.org/articleBody\": [\n                {\"@value\": \"World commodities were up today with heavy trading of crude oil...\"}\n              ],\n              \"http://schema.org/wordCount\": [{\"@value\": 1539}]\n            }, {\n              \"@id\": \"http://example.com/posts/1/de\",\n              \"http://schema.org/articleBody\": [\n                {\"@value\": \"Die Werte an Warenbörsen stiegen im Sog eines starken Handels von Rohöl...\"}\n              ],\n              \"http://schema.org/wordCount\": [{\"@value\": 1204}]\n            }]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"scoped context on @type\" do\n      {\n        'adding new term': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"a\": {\"@type\": \"Foo\", \"bar\": \"baz\"}\n          }),\n          output: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example.org/bar\": [{\"@value\": \"baz\"}]\n              }]\n            }\n          ])\n        },\n        'overriding a term': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"bar\": {\"@type\": \"@id\"}}},\n              \"bar\": {\"@type\": \"http://www.w3.org/2001/XMLSchema#string\"}\n            },\n            \"a\": {\"@type\": \"Foo\", \"bar\": \"http://example/baz\"}\n          }),\n          output: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example/bar\": [{\"@id\": \"http://example/baz\"}]\n              }]\n            }\n          ])\n        },\n        'alias of @type': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"type\": \"@type\",\n              \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"a\": {\"type\": \"Foo\", \"bar\": \"baz\"}\n          }),\n          output: %([\n            {\n              \"http://example/a\": [{\n                \"@type\": [\"http://example/Foo\"],\n                \"http://example.org/bar\": [{\"@value\": \"baz\"}]\n              }]\n            }\n          ])\n        },\n        'deep @context does not affect nested nodes': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"baz\": {\"@type\": \"@vocab\"}}}\n            },\n            \"@type\": \"Foo\",\n            \"bar\": {\"baz\": \"buzz\"}\n          }),\n          output: %([\n            {\n              \"@type\": [\"http://example/Foo\"],\n              \"http://example/bar\": [{\n                \"http://example/baz\": [{\"@value\": \"buzz\"}]\n              }]\n            }\n          ])\n        },\n        'scoped context layers on intemediate contexts': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"B\": {\"@context\": {\"c\": \"http://example.org/c\"}}\n            },\n            \"a\": {\n              \"@context\": {\"@vocab\": \"http://example.com/\"},\n              \"@type\": \"B\",\n              \"a\": \"A in example.com\",\n              \"c\": \"C in example.org\"\n            },\n            \"c\": \"C in example\"\n          }),\n          output: %([{\n            \"http://example/a\": [{\n              \"@type\": [\"http://example/B\"],\n              \"http://example.com/a\": [{\"@value\": \"A in example.com\"}],\n              \"http://example.org/c\": [{\"@value\": \"C in example.org\"}]\n            }],\n            \"http://example/c\": [{\"@value\": \"C in example\"}]\n          }])\n        },\n        'with @container: @type': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"typemap\": {\"@container\": \"@type\"},\n              \"Type\": {\"@context\": {\"a\": \"http://example.org/a\"}}\n            },\n            \"typemap\": {\n              \"Type\": {\"a\": \"Object with @type <Type>\"}\n            }\n          }),\n          output: %([{\n            \"http://example/typemap\": [\n              {\"http://example.org/a\": [{\"@value\": \"Object with @type <Type>\"}], \"@type\": [\"http://example/Type\"]}\n            ]\n          }])\n        },\n        'orders lexicographically': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"t1\": {\"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\"}}},\n              \"t2\": {\"@context\": {\"foo\": {\"@id\": \"http://example.org/foo\", \"@type\": \"@id\"}}}\n            },\n            \"@type\": [\"t2\", \"t1\"],\n            \"foo\": \"urn:bar\"\n          }),\n          output: %([{\n            \"@type\": [\"http://example/t2\", \"http://example/t1\"],\n            \"http://example.org/foo\": [\n              {\"@id\": \"urn:bar\"}\n            ]\n          }])\n        },\n        'Raises InvalidTermDefinition if processingMode is 1.0': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"Foo\": {\"@context\": {\"bar\": \"http://example.org/bar\"}}\n            },\n            \"a\": {\"@type\": \"Foo\", \"bar\": \"baz\"}\n          }),\n          processingMode: 'json-ld-1.0',\n          validate: true,\n          exception: JSON::LD::JsonLdError::InvalidTermDefinition\n        }\n      }.each do |title, params|\n        it(title) { run_expand({ processingMode: \"json-ld-1.1\" }.merge(params)) }\n      end\n    end\n\n    context \"@reverse\" do\n      {\n        '@container: @reverse': {\n          input: %({\n            \"@context\": {\n              \"@vocab\": \"http://example/\",\n              \"rev\": { \"@reverse\": \"forward\", \"@type\": \"@id\"}\n            },\n            \"@id\": \"http://example/one\",\n            \"rev\": \"http://example/two\"\n          }),\n          output: %([{\n            \"@id\": \"http://example/one\",\n            \"@reverse\": {\n              \"http://example/forward\": [\n                {\n                  \"@id\": \"http://example/two\"\n                }\n              ]\n            }\n          }])\n        },\n        'expand-0037': {\n          input: %({\n            \"@context\": {\n              \"name\": \"http://xmlns.com/foaf/0.1/name\"\n            },\n            \"@id\": \"http://example.com/people/markus\",\n            \"name\": \"Markus Lanthaler\",\n            \"@reverse\": {\n              \"http://xmlns.com/foaf/0.1/knows\": {\n                \"@id\": \"http://example.com/people/dave\",\n                \"name\": \"Dave Longley\"\n              }\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/people/markus\",\n              \"@reverse\": {\n                \"http://xmlns.com/foaf/0.1/knows\": [\n                  {\n                    \"@id\": \"http://example.com/people/dave\",\n                    \"http://xmlns.com/foaf/0.1/name\": [\n                      {\n                        \"@value\": \"Dave Longley\"\n                      }\n                    ]\n                  }\n                ]\n              },\n              \"http://xmlns.com/foaf/0.1/name\": [\n                {\n                  \"@value\": \"Markus Lanthaler\"\n                }\n              ]\n            }\n          ])\n        },\n        'expand-0043': {\n          input: %({\n            \"@context\": {\n              \"name\": \"http://xmlns.com/foaf/0.1/name\",\n              \"isKnownBy\": { \"@reverse\": \"http://xmlns.com/foaf/0.1/knows\" }\n            },\n            \"@id\": \"http://example.com/people/markus\",\n            \"name\": \"Markus Lanthaler\",\n            \"@reverse\": {\n              \"isKnownBy\": [\n                {\n                  \"@id\": \"http://example.com/people/dave\",\n                  \"name\": \"Dave Longley\"\n                },\n                {\n                  \"@id\": \"http://example.com/people/gregg\",\n                  \"name\": \"Gregg Kellogg\"\n                }\n              ]\n            }\n          }),\n          output: %([\n            {\n              \"@id\": \"http://example.com/people/markus\",\n              \"http://xmlns.com/foaf/0.1/knows\": [\n                {\n                  \"@id\": \"http://example.com/people/dave\",\n                  \"http://xmlns.com/foaf/0.1/name\": [\n                    {\n                      \"@value\": \"Dave Longley\"\n                    }\n                  ]\n                },\n                {\n                  \"@id\": \"http://example.com/people/gregg\",\n                  \"http://xmlns.com/foaf/0.1/name\": [\n                    {\n                      \"@value\": \"Gregg Kellogg\"\n                    }\n                  ]\n                }\n              ],\n              \"http://xmlns.com/foaf/0.1/name\": [\n                {\n                  \"@value\": \"Markus Lanthaler\"\n                }\n              ]\n            }\n          ])\n        },\n        '@reverse object with an @id property': {\n          input: %({\n            \"@id\": \"http://example/foo\",\n            \"@reverse\": {\n              \"@id\": \"http://example/bar\"\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidReversePropertyMap\n        },\n        'Explicit and implicit @reverse in same object': {\n          input: %({\n            \"@context\": {\n              \"fooOf\": {\"@reverse\": \"ex:foo\", \"@type\": \"@id\"}\n            },\n            \"@id\": \"ex:s\",\n            \"fooOf\": \"ex:o1\",\n            \"@reverse\": {\n              \"ex:bar\": {\"@id\": \"ex:o2\"}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:s\",\n            \"@reverse\": {\n              \"ex:bar\": [{\"@id\": \"ex:o2\"}],\n              \"ex:foo\": [{\"@id\": \"ex:o1\"}]\n            }\n          }])\n        },\n        'Two properties both with @reverse': {\n          input: %({\n            \"@context\": {\n              \"fooOf\": {\"@reverse\": \"ex:foo\", \"@type\": \"@id\"},\n              \"barOf\": {\"@reverse\": \"ex:bar\", \"@type\": \"@id\"}\n            },\n            \"@id\": \"ex:s\",\n            \"fooOf\": \"ex:o1\",\n            \"barOf\": \"ex:o2\"\n          }),\n          output: %([{\n            \"@id\": \"ex:s\",\n            \"@reverse\": {\n              \"ex:bar\": [{\"@id\": \"ex:o2\"}],\n              \"ex:foo\": [{\"@id\": \"ex:o1\"}]\n            }\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"JSON-LD-star\" do\n      {\n        'node with embedded subject without rdfstar option': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidIdValue\n        },\n        'node object with @annotation property is ignored without rdfstar option': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@id\": \"ex:fred\",\n              \"@annotation\": {\n                \"ex:certainty\": 0.8\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n          }])\n        },\n        'value object with @annotation property is ignored without rdfstar option': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:age\": {\n              \"@value\": 23,\n              \"@annotation\": {\n                \"ex:certainty\": 0.8\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:age\": [{\"@value\": 23}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n\n      {\n        'node with embedded subject having no @id': {\n          input: %({\n            \"@id\": {\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with embedded subject having IRI @id': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with embedded subject having BNode @id': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"_:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"_:rei\",\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with embedded subject having a type': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": \"ex:Type\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": [\"ex:Type\"]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with embedded subject having an IRI value': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"ex:value\"}\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"ex:value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with embedded subject having an BNode value': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"_:value\"}\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"_:value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'node with recursive embedded subject': {\n          input: %({\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value3\"\n              },\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value3\"}]\n              },\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'illegal node with subject having no property': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\"\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having multiple properties': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [\"value1\", \"value2\"]\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having multiple types': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": [\"ex:Type1\", \"ex:Type2\"]\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having type and property': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": \"ex:Type\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'node with embedded object': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value\"\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:subj\",\n            \"ex:value\": [{\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value\"}]\n              }\n            }]\n          }])\n        },\n        'node with embedded object having properties': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value\"\n              },\n              \"ex:prop\": \"value2\"\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:subj\",\n            \"ex:value\": [{\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value\"}]\n              },\n              \"ex:prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'node with recursive embedded object': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": {\n                  \"@id\": \"ex:rei\",\n                  \"ex:prop\": \"value3\"\n                },\n                \"ex:prop\": \"value\"\n              },\n              \"ex:prop\": \"value2\"\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:subj\",\n            \"ex:value\": [{\n              \"@id\": {\n                \"@id\": {\n                  \"@id\": \"ex:rei\",\n                  \"ex:prop\": [{\"@value\": \"value3\"}]\n                },\n                \"ex:prop\":[{\"@value\": \"value\"}]\n              },\n              \"ex:prop\": [{\"@value\": \"value2\"}]\n            }]\n          }])\n        },\n        'node with @annotation property on value object': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:age\": {\n              \"@value\": 23,\n              \"@annotation\": {\"ex:certainty\": 0.8}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:age\": [{\n              \"@value\": 23,\n              \"@annotation\": [{\"ex:certainty\": [{\"@value\": 0.8}]}]\n            }]\n          }])\n        },\n        'node with @annotation property on node object': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"ex:knows\": {\n              \"@id\": \"ex:fred\",\n              \"ex:name\": \"Fred\",\n              \"@annotation\": {\"ex:certainty\": 0.8}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:name\": [{\"@value\": \"Bob\"}],\n            \"ex:knows\": [{\n              \"@id\": \"ex:fred\",\n              \"ex:name\": [{\"@value\": \"Fred\"}],\n              \"@annotation\": [{\"ex:certainty\": [{\"@value\": 0.8}]}]\n            }]\n          }])\n        },\n        'node with @annotation property multiple values': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"ex:knows\": {\n              \"@id\": \"ex:fred\",\n              \"ex:name\": \"Fred\",\n              \"@annotation\": [{\n                \"ex:certainty\": 0.8\n              }, {\n                \"ex:source\": {\"@id\": \"http://example.org/\"}\n              }]\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:name\": [{\"@value\": \"Bob\"}],\n            \"ex:knows\": [{\n              \"@id\": \"ex:fred\",\n              \"ex:name\": [{\"@value\": \"Fred\"}],\n              \"@annotation\": [{\n                \"ex:certainty\": [{\"@value\": 0.8}]\n              }, {\n                \"ex:source\": [{\"@id\": \"http://example.org/\"}]\n              }]\n            }]\n          }])\n        },\n        'node with @annotation property that is on the top-level is invalid': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"@annotation\": {\"ex:prop\": \"value2\"}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation property on a top-level graph node is invalid': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"@graph\": {\n              \"@id\": \"ex:fred\",\n              \"ex:name\": \"Fred\",\n              \"@annotation\": {\"ex:prop\": \"value2\"}\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation property having @id is invalid': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@id\": \"ex:fred\",\n              \"@annotation\": {\n                \"@id\": \"ex:invalid-ann-id\",\n                \"ex:prop\": \"value2\"\n              }\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation property with value object value is invalid': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@id\": \"fred\",\n              \"@annotation\": \"value2\"\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation on a list': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@list\": [{\"@id\": \"ex:fred\"}],\n              \"@annotation\": {\"ex:prop\": \"value2\"}\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidSetOrListObject\n        },\n        'node with @annotation on a list value': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@list\": [\n                {\n                  \"@id\": \"ex:fred\",\n                  \"@annotation\": {\"ex:prop\": \"value2\"}\n                }\n              ]\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation property on a top-level @included node is invalid': {\n          input: %({\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"@included\": [{\n              \"@id\": \"ex:fred\",\n              \"ex:name\": \"Fred\",\n              \"@annotation\": {\"ex:prop\": \"value2\"}\n            }]\n          }),\n          exception: JSON::LD::JsonLdError::InvalidAnnotation\n        },\n        'node with @annotation property on embedded subject': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"_:value\"}\n            },\n            \"ex:prop\": {\n              \"@value\": \"value2\",\n              \"@annotation\": {\"ex:certainty\": 0.8}\n            }\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"_:value\"}]\n            },\n            \"ex:prop\": [{\n              \"@value\": \"value2\",\n              \"@annotation\": [{\n                \"ex:certainty\": [{\"@value\": 0.8}]\n              }]\n            }]\n          }])\n        },\n        'node with @annotation property on embedded object': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value\"\n              },\n              \"@annotation\": {\"ex:certainty\": 0.8}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:subj\",\n            \"ex:value\": [{\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value\"}]\n              },\n              \"@annotation\": [{\n                \"ex:certainty\": [{\"@value\": 0.8}]\n              }]\n            }]\n          }])\n        },\n        'embedded node with reverse relationship': {\n          input: %({\n            \"@context\": {\n              \"rel\": {\"@reverse\": \"ex:rel\"}\n            },\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"rel\": {\"@id\": \"ex:value\"}\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'embedded node with expanded reverse relationship': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@reverse\": {\n                \"ex:rel\": {\"@id\": \"ex:value\"}\n              }\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'embedded node used as subject in reverse relationship': {\n          input: %({\n            \"@context\": {\n              \"rel\": {\"@reverse\": \"ex:rel\"}\n            },\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"ex:value\"}\n            },\n            \"rel\": {\"@id\": \"ex:value2\"}\n          }),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"ex:value\"}]\n            },\n            \"@reverse\": {\n              \"ex:rel\": [{\"@id\": \"ex:value2\"}]\n            }\n          }])\n        },\n        'embedded node used as object in reverse relationship': {\n          input: %({\n            \"@context\": {\n              \"rel\": {\"@reverse\": \"ex:rel\"}\n            },\n            \"@id\": \"ex:subj\",\n            \"rel\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": {\"@id\": \"ex:value\"}\n              },\n              \"ex:prop\": {\"@id\": \"ex:value2\"}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:subj\",\n            \"@reverse\": {\n              \"ex:rel\": [{\n                \"@id\": {\n                  \"@id\": \"ex:rei\",\n                  \"ex:prop\": [{\"@id\": \"ex:value\"}]\n                },\n                \"ex:prop\": [{\"@id\": \"ex:value2\"}]\n              }]\n            }\n          }])\n        },\n        'node with @annotation property on node object with reverse relationship': {\n          input: %({\n            \"@context\": {\n              \"knownBy\": {\"@reverse\": \"ex:knows\"}\n            },\n            \"@id\": \"ex:bob\",\n            \"ex:name\": \"Bob\",\n            \"knownBy\": {\n              \"@id\": \"ex:fred\",\n              \"ex:name\": \"Fred\",\n              \"@annotation\": {\"ex:certainty\": 0.8}\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:name\": [{\"@value\": \"Bob\"}],\n            \"@reverse\": {\n              \"ex:knows\": [{\n                \"@id\": \"ex:fred\",\n                \"ex:name\": [{\"@value\": \"Fred\"}],\n                \"@annotation\": [{\"ex:certainty\": [{\"@value\": 0.8}]}]\n              }]\n            }\n          }])\n        },\n        'reverse relationship inside annotation': {\n          input: %({\n            \"@context\": {\n              \"claims\": {\"@reverse\": \"ex:claims\", \"@type\": \"@id\"}\n            },\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": {\n              \"@id\": \"ex:jane\",\n              \"@annotation\": {\n                \"ex:certainty\": 0.8,\n                \"claims\": \"ex:sue\"\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": [{\n              \"@id\": \"ex:jane\",\n              \"@annotation\": [{\n                \"ex:certainty\": [{\"@value\": 0.8}],\n                \"@reverse\": {\n                  \"ex:claims\": [{\"@id\": \"ex:sue\"}]\n                }\n              }]\n            }]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params.merge(rdfstar: true) }\n      end\n    end\n\n    begin\n      require 'nokogiri'\n    rescue LoadError\n    end\n    require 'rexml/document'\n\n    context \"html\" do\n      %w[Nokogiri REXML].each do |impl|\n        next unless Module.constants.map(&:to_s).include?(impl)\n\n        context impl do\n          let(:library) { impl.downcase.to_s.to_sym }\n\n          {\n            'Expands embedded JSON-LD script element': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]\n              }])\n            },\n            'Expands first script element': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\"ex\": \"http://example.com/\"},\n                    \"@graph\": [\n                      {\"ex:foo\": {\"@value\": \"foo\"}},\n                      {\"ex:bar\": {\"@value\": \"bar\"}}\n                    ]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]\n              }])\n            },\n            'Expands targeted script element': {\n              input: %(\n              <html>\n                <head>\n                  <script id=\"first\" type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                  <script id=\"second\" type=\"application/ld+json\">\n                  {\n                    \"@context\": {\"ex\": \"http://example.com/\"},\n                    \"@graph\": [\n                      {\"ex:foo\": {\"@value\": \"foo\"}},\n                      {\"ex:bar\": {\"@value\": \"bar\"}}\n                    ]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([\n                {\"http://example.com/foo\": [{\"@value\": \"foo\"}]},\n                {\"http://example.com/bar\": [{\"@value\": \"bar\"}]}\n              ]),\n              base: \"http://example.org/doc#second\"\n            },\n            'Expands all script elements with extractAllScripts option': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\"ex\": \"http://example.com/\"},\n                    \"@graph\": [\n                      {\"ex:foo\": {\"@value\": \"foo\"}},\n                      {\"ex:bar\": {\"@value\": \"bar\"}}\n                    ]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([\n                {\"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]},\n                {\n                  \"@graph\": [{\n                    \"http://example.com/foo\": [{\"@value\": \"foo\"}]\n                  }, {\n                    \"http://example.com/bar\": [{\"@value\": \"bar\"}]\n                  }]\n                }\n              ]),\n              extractAllScripts: true\n            },\n            'Expands multiple scripts where one is an array': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                  <script type=\"application/ld+json\">\n                  [\n                    {\"@context\": {\"ex\": \"http://example.com/\"}, \"ex:foo\": {\"@value\": \"foo\"}},\n                    {\"@context\": {\"ex\": \"http://example.com/\"}, \"ex:bar\": {\"@value\": \"bar\"}}\n                  ]\n                  </script>\n                </head>\n              </html>),\n              output: %([\n                {\"http://example.com/foo\": [{\"@list\": [{\"@value\": \"bar\"}]}]},\n                {\"http://example.com/foo\": [{\"@value\": \"foo\"}]},\n                {\"http://example.com/bar\": [{\"@value\": \"bar\"}]}\n              ]),\n              extractAllScripts: true\n            },\n            'Errors no script element': {\n              input: %(<html><head></head></html>),\n              exception: JSON::LD::JsonLdError::LoadingDocumentFailed\n            },\n            'Expands as empty with no script element and extractAllScripts': {\n              input: %(<html><head></head></html>),\n              output: %([]),\n              extractAllScripts: true\n            },\n            'Expands script element with HTML character references': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\"@vocab\": \"http://example/\"},\n                    \"foo\": \"&lt;&amp;&gt;\"\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"http://example/foo\": [{\"@value\": \"&lt;&amp;&gt;\"}]\n              }])\n            },\n            'Expands embedded JSON-LD script element relative to document base': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\"}\n                    },\n                    \"@id\": \"\",\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"@id\": \"http://example.org/doc\",\n                \"http://example.com/foo\": [{\"@value\": \"bar\"}]\n              }]),\n              base: \"http://example.org/doc\"\n            },\n            'Expands embedded JSON-LD script element relative to HTML base': {\n              input: %(\n              <html>\n                <head>\n                  <base href=\"http://example.org/base\" />\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\"}\n                    },\n                    \"@id\": \"\",\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"@id\": \"http://example.org/base\",\n                \"http://example.com/foo\": [{\"@value\": \"bar\"}]\n              }]),\n              base: \"http://example.org/doc\"\n            },\n            'Expands embedded JSON-LD script element relative to relative HTML base': {\n              input: %(\n              <html>\n                <head>\n                  <base href=\"base\" />\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\"}\n                    },\n                    \"@id\": \"\",\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              output: %([{\n                \"@id\": \"http://example.org/base\",\n                \"http://example.com/foo\": [{\"@value\": \"bar\"}]\n              }]),\n              base: \"http://example.org/doc\"\n            },\n            'Errors if no element found at target': {\n              input: %(\n              <html>\n                <head>\n                  <script id=\"first\" type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                  <script id=\"second\" type=\"application/ld+json\">\n                  {\n                    \"@context\": {\"ex\": \"http://example.com/\"},\n                    \"@graph\": [\n                      {\"ex:foo\": {\"@value\": \"foo\"}},\n                      {\"ex:bar\": {\"@value\": \"bar\"}}\n                    ]\n                  }\n                  </script>\n                </head>\n              </html>),\n              base: \"http://example.org/doc#third\",\n              exception: JSON::LD::JsonLdError::LoadingDocumentFailed\n            },\n            'Errors if targeted element is not a script element': {\n              input: %(\n              <html>\n                <head>\n                  <pre id=\"first\" type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </pre>\n                </head>\n              </html>),\n              base: \"http://example.org/doc#first\",\n              exception: JSON::LD::JsonLdError::LoadingDocumentFailed\n            },\n            'Errors if targeted element does not have type application/ld+json': {\n              input: %(\n              <html>\n                <head>\n                  <script id=\"first\" type=\"application/json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              base: \"http://example.org/doc#first\",\n              exception: JSON::LD::JsonLdError::LoadingDocumentFailed\n            },\n            'Errors if uncommented script text contains comment': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  <!--\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"<!-- -->\"}]\n                  }\n                  -->\n                  </script>\n                </head>\n              </html>),\n              exception: JSON::LD::JsonLdError::InvalidScriptElement,\n              not: :rexml\n            },\n            'Errors if end comment missing': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  <!--\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  </script>\n                </head>\n              </html>),\n              exception: JSON::LD::JsonLdError::InvalidScriptElement,\n              not: :rexml\n            },\n            'Errors if start comment missing': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  {\n                    \"@context\": {\n                      \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n                    },\n                    \"foo\": [{\"@value\": \"bar\"}]\n                  }\n                  -->\n                  </script>\n                </head>\n              </html>),\n              exception: JSON::LD::JsonLdError::InvalidScriptElement\n            },\n            'Errors if uncommented script is not valid JSON': {\n              input: %(\n              <html>\n                <head>\n                  <script type=\"application/ld+json\">\n                  foo\n                  </script>\n                </head>\n              </html>),\n              exception: JSON::LD::JsonLdError::InvalidScriptElement\n            }\n          }.each do |title, params|\n            it(title) do\n              skip \"rexml\" if params[:not] == library\n              params = params.merge(input: StringIO.new(params[:input]))\n              params[:input].send(:define_singleton_method, :content_type) { \"text/html\" }\n              run_expand params.merge(validate: true, library: library)\n            end\n          end\n        end\n      end\n    end\n\n    context \"deprectaions\" do\n      {\n        'blank node property': {\n          input: %({\"_:bn\": \"value\"}),\n          output: %([{\"_:bn\": [{\"@value\": \"value\"}]}])\n        }\n      }.each do |name, params|\n        it \"deprecation on #{name} when validating\" do\n          run_expand(params.merge(validate: true, write: \"[DEPRECATION]\"))\n        end\n\n        it \"no deprecation on #{name} when not validating\" do\n          run_expand(params.merge(validate: false))\n        end\n      end\n    end\n\n    context \"exceptions\" do\n      {\n        'non-null @value and null @type': {\n          input: %({\"http://example.com/foo\": {\"@value\": \"foo\", \"@type\": null}}),\n          exception: JSON::LD::JsonLdError::InvalidTypeValue\n        },\n        'non-null @value and null @language': {\n          input: %({\"http://example.com/foo\": {\"@value\": \"foo\", \"@language\": null}}),\n          exception: JSON::LD::JsonLdError::InvalidLanguageTaggedString\n        },\n        'value with null language': {\n          input: %({\n            \"@context\": {\"@language\": \"en\"},\n            \"http://example.org/nolang\": {\"@value\": \"no language\", \"@language\": null}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidLanguageTaggedString\n        },\n        'colliding keywords': {\n          input: %({\n            \"@context\": {\n              \"id\": \"@id\",\n              \"ID\": \"@id\"\n            },\n            \"id\": \"http://example/foo\",\n            \"ID\": \"http://example/bar\"\n          }),\n          exception: JSON::LD::JsonLdError::CollidingKeywords\n        },\n        '@language and @type': {\n          input: %({\n            \"ex:p\": {\n              \"@value\": \"v\",\n              \"@type\": \"ex:t\",\n              \"@language\": \"en\"\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidValueObject,\n          processingMode: 'json-ld-1.1'\n        },\n        '@direction and @type': {\n          input: %({\n            \"ex:p\": {\n              \"@value\": \"v\",\n              \"@type\": \"ex:t\",\n              \"@direction\": \"rtl\"\n            }\n          }),\n          exception: JSON::LD::JsonLdError::InvalidValueObject,\n          processingMode: 'json-ld-1.1'\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n\n    context \"problem cases\" do\n      {\n        'toRdf/0118': {\n          input: %({\n            \"@context\": {\"term\": \"_:term\", \"termId\": { \"@id\": \"term\", \"@type\": \"@id\" }},\n            \"termId\": \"term:AppendedToBlankNode\"\n          }),\n          output: %([{\n            \"_:term\": [{\"@id\": \"_:termAppendedToBlankNode\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_expand params }\n      end\n    end\n  end\n\n  def run_expand(params)\n    input = params[:input]\n    output = params[:output]\n    params[:base] ||= nil\n    input = JSON.parse(input) if input.is_a?(String)\n    output = JSON.parse(output) if output.is_a?(String)\n    pending params.fetch(:pending, \"test implementation\") unless input\n    if params[:exception]\n      expect { JSON::LD::API.expand(input, **params) }.to raise_error(params[:exception])\n    else\n      jld = nil\n      if params[:write]\n        expect { jld = JSON::LD::API.expand(input, logger: logger, **params) }.to write(params[:write]).to(:error)\n      else\n        expect { jld = JSON::LD::API.expand(input, logger: logger, **params) }.not_to write.to(:error)\n      end\n      expect(jld).to produce_jsonld(output, logger)\n\n      # Also expect result to produce itself\n      expect(output).to produce_jsonld(output, logger)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/flatten_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".flatten\" do\n    {\n      'single object': {\n        input: %({\"@id\": \"http://example.com\", \"@type\": \"http://www.w3.org/2000/01/rdf-schema#Resource\"}),\n        output: %([\n          {\"@id\": \"http://example.com\", \"@type\": [\"http://www.w3.org/2000/01/rdf-schema#Resource\"]}\n        ])\n      },\n      'embedded object': {\n        input: %({\n          \"@context\": {\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\"\n          },\n          \"@id\": \"http://greggkellogg.net/foaf\",\n          \"@type\": \"http://xmlns.com/foaf/0.1/PersonalProfileDocument\",\n          \"foaf:primaryTopic\": [{\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"@type\": \"http://xmlns.com/foaf/0.1/Person\"\n          }]\n        }),\n        output: %([\n          {\n            \"@id\": \"http://greggkellogg.net/foaf\",\n            \"@type\": [\"http://xmlns.com/foaf/0.1/PersonalProfileDocument\"],\n            \"http://xmlns.com/foaf/0.1/primaryTopic\": [{\"@id\": \"http://greggkellogg.net/foaf#me\"}]\n          },\n          {\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"]\n          }\n        ])\n      },\n      'embedded anon': {\n        input: %({\n          \"@context\": {\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\"\n          },\n          \"@id\": \"http://greggkellogg.net/foaf\",\n          \"@type\": \"foaf:PersonalProfileDocument\",\n          \"foaf:primaryTopic\": {\n            \"@type\": \"foaf:Person\"\n          }\n        }),\n        output: %([\n          {\n            \"@id\": \"_:b0\",\n            \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"]\n          },\n          {\n            \"@id\": \"http://greggkellogg.net/foaf\",\n            \"@type\": [\"http://xmlns.com/foaf/0.1/PersonalProfileDocument\"],\n            \"http://xmlns.com/foaf/0.1/primaryTopic\": [{\"@id\": \"_:b0\"}]\n          }\n        ])\n      },\n      'reverse properties': {\n        input: %([\n          {\n            \"@id\": \"http://example.com/people/markus\",\n            \"@reverse\": {\n              \"http://xmlns.com/foaf/0.1/knows\": [\n                {\n                  \"@id\": \"http://example.com/people/dave\"\n                },\n                {\n                  \"@id\": \"http://example.com/people/gregg\"\n                }\n              ]\n            },\n            \"http://xmlns.com/foaf/0.1/name\": [ { \"@value\": \"Markus Lanthaler\" } ]\n          }\n        ]),\n        output: %([\n          {\n            \"@id\": \"http://example.com/people/dave\",\n            \"http://xmlns.com/foaf/0.1/knows\": [\n              {\n                \"@id\": \"http://example.com/people/markus\"\n              }\n            ]\n          },\n          {\n            \"@id\": \"http://example.com/people/gregg\",\n            \"http://xmlns.com/foaf/0.1/knows\": [\n              {\n                \"@id\": \"http://example.com/people/markus\"\n              }\n            ]\n          },\n          {\n            \"@id\": \"http://example.com/people/markus\",\n            \"http://xmlns.com/foaf/0.1/name\": [\n              {\n                \"@value\": \"Markus Lanthaler\"\n              }\n            ]\n          }\n        ])\n      },\n      'Simple named graph (Wikidata)': {\n        input: '{\n          \"@context\": {\n            \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n            \"ex\": \"http://example.org/\",\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"ex:locatedIn\": {\"@type\": \"@id\"},\n            \"ex:hasPopulaton\": {\"@type\": \"xsd:integer\"},\n            \"ex:hasReference\": {\"@type\": \"@id\"}\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"http://example.org/ParisFact1\",\n              \"@type\": \"rdf:Graph\",\n              \"@graph\": {\n                \"@id\": \"http://example.org/location/Paris#this\",\n                \"ex:locatedIn\": \"http://example.org/location/France#this\"\n              },\n              \"ex:hasReference\": [\"http://www.britannica.com/\", \"http://www.wikipedia.org/\", \"http://www.brockhaus.de/\"]\n            },\n            {\n              \"@id\": \"http://example.org/ParisFact2\",\n              \"@type\": \"rdf:Graph\",\n              \"@graph\": {\n                \"@id\": \"http://example.org/location/Paris#this\",\n                \"ex:hasPopulation\": 7000000\n              },\n              \"ex:hasReference\": \"http://www.wikipedia.org/\"\n            }\n          ]\n        }',\n        output: '[{\n          \"@id\": \"http://example.org/ParisFact1\",\n          \"@type\": [\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Graph\"],\n          \"http://example.org/hasReference\": [\n            {\"@id\": \"http://www.britannica.com/\"},\n            {\"@id\": \"http://www.wikipedia.org/\"},\n            {\"@id\": \"http://www.brockhaus.de/\"}\n          ],\n          \"@graph\": [{\n              \"@id\": \"http://example.org/location/Paris#this\",\n              \"http://example.org/locatedIn\": [{\"@id\": \"http://example.org/location/France#this\"}]\n            }]\n          }, {\n            \"@id\": \"http://example.org/ParisFact2\",\n            \"@type\": [\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Graph\"],\n            \"http://example.org/hasReference\": [{\"@id\": \"http://www.wikipedia.org/\"}],\n            \"@graph\": [{\n              \"@id\": \"http://example.org/location/Paris#this\",\n              \"http://example.org/hasPopulation\": [{\"@value\": 7000000}]\n            }]\n          }]'\n      },\n      'Test Manifest (shortened)': {\n        input: '\n          {\n            \"@id\": \"\",\n            \"http://example/sequence\": {\"@list\": [\n              {\n                \"@id\": \"#t0001\",\n                \"http://example/name\": \"Keywords cannot be aliased to other keywords\",\n                \"http://example/input\": {\"@id\": \"error-expand-0001-in.jsonld\"}\n              }\n            ]}\n          }\n        ',\n        output: '\n          [{\n            \"@id\": \"\",\n            \"http://example/sequence\": [{\"@list\": [{\"@id\": \"#t0001\"}]}]\n          }, {\n            \"@id\": \"#t0001\",\n            \"http://example/input\": [{\"@id\": \"error-expand-0001-in.jsonld\"}],\n            \"http://example/name\": [{\"@value\": \"Keywords cannot be aliased to other keywords\"}]\n          }]\n        '\n      },\n      '@reverse bnode issue (0045)': {\n        input: '\n          {\n            \"@context\": {\n              \"foo\": \"http://example.org/foo\",\n              \"bar\": { \"@reverse\": \"http://example.org/bar\", \"@type\": \"@id\" }\n            },\n            \"foo\": \"Foo\",\n            \"bar\": [ \"http://example.org/origin\", \"_:b0\" ]\n          }\n        ',\n        output: '\n          [\n            {\n              \"@id\": \"_:b0\",\n              \"http://example.org/foo\": [ { \"@value\": \"Foo\" } ]\n            },\n            {\n              \"@id\": \"_:b1\",\n              \"http://example.org/bar\": [ { \"@id\": \"_:b0\" } ]\n            },\n            {\n              \"@id\": \"http://example.org/origin\",\n              \"http://example.org/bar\": [ { \"@id\": \"_:b0\" } ]\n            }\n          ]\n        ',\n        remap_nodes: true\n      },\n      '@list with embedded object': {\n        input: %([{\n          \"http://example.com/foo\": [{\n            \"@list\": [{\n              \"@id\": \"http://example.com/baz\",\n              \"http://example.com/bar\": \"buz\"}\n            ]}\n          ]}\n        ]),\n        output: %([\n          {\n            \"@id\": \"_:b0\",\n            \"http://example.com/foo\": [{\n              \"@list\": [\n                {\n                  \"@id\": \"http://example.com/baz\"\n                }\n              ]\n            }]\n          },\n          {\n            \"@id\": \"http://example.com/baz\",\n            \"http://example.com/bar\": [{\"@value\": \"buz\"}]\n          }\n        ])\n      },\n      'coerced @list containing an deep list': {\n        input: %([{\n          \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]}]\n        }]),\n        output: %([{\n          \"@id\": \"_:b0\",\n          \"http://example.com/foo\": [{\"@list\": [{\"@list\": [{\"@list\": [{\"@value\": \"baz\"}]}]}]}]\n        }])\n      },\n      '@list containing empty @list': {\n        input: %({\n          \"http://example.com/foo\": {\"@list\": [{\"@list\": []}]}\n        }),\n        output: %([{\n          \"@id\": \"_:b0\",\n          \"http://example.com/foo\": [{\"@list\": [{\"@list\": []}]}]\n        }])\n      },\n      'coerced @list containing mixed list values': {\n        input: %({\n          \"@context\": {\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}},\n          \"foo\": [\n            [{\"@id\": \"http://example/a\", \"@type\": \"http://example/Bar\"}],\n            {\"@id\": \"http://example/b\", \"@type\": \"http://example/Baz\"}]\n        }),\n        output: %([{\n          \"@id\": \"_:b0\",\n          \"http://example.com/foo\": [{\"@list\": [\n            {\"@list\": [{\"@id\": \"http://example/a\"}]},\n            {\"@id\": \"http://example/b\"}\n          ]}]\n        },\n        {\n          \"@id\": \"http://example/a\",\n          \"@type\": [\n            \"http://example/Bar\"\n          ]\n        },\n        {\n          \"@id\": \"http://example/b\",\n          \"@type\": [\n            \"http://example/Baz\"\n          ]\n        }])\n      }\n    }.each do |title, params|\n      it(title) { run_flatten(params) }\n    end\n\n    context \"@included\" do\n      {\n        'Basic Included array': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": [{\n              \"prop\": \"value2\"\n            }]\n          }),\n          output: %([{\n            \"@id\": \"_:b0\",\n            \"http://example.org/prop\": [{\"@value\": \"value\"}]\n          }, {\n            \"@id\": \"_:b1\",\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'Basic Included object': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\"\n            }\n          }),\n          output: %([{\n            \"@id\": \"_:b0\",\n            \"http://example.org/prop\": [{\"@value\": \"value\"}]\n          }, {\n            \"@id\": \"_:b1\",\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'Multiple properties mapping to @included are folded together': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included1\": \"@included\",\n              \"included2\": \"@included\"\n            },\n            \"included1\": {\"prop\": \"value1\"},\n            \"included2\": {\"prop\": \"value2\"}\n          }),\n          output: %([{\n            \"@id\": \"_:b1\",\n            \"http://example.org/prop\": [{\"@value\": \"value1\"}]\n          }, {\n            \"@id\": \"_:b2\",\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n          }])\n        },\n        'Included containing @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\",\n              \"@included\": {\n                \"prop\": \"value3\"\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"_:b0\",\n            \"http://example.org/prop\": [{\"@value\": \"value\"}]\n          }, {\n            \"@id\": \"_:b1\",\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}]\n          }, {\n            \"@id\": \"_:b2\",\n            \"http://example.org/prop\": [{\"@value\": \"value3\"}]\n          }])\n        },\n        'Property value with @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": {\n              \"@type\": \"Foo\",\n              \"@included\": {\n                \"@type\": \"Bar\"\n              }\n            }\n          }),\n          output: %([{\n            \"@id\": \"_:b0\",\n            \"http://example.org/prop\": [\n              {\"@id\": \"_:b1\"}\n            ]\n          }, {\n            \"@id\": \"_:b1\",\n            \"@type\": [\"http://example.org/Foo\"]\n          }, {\n            \"@id\": \"_:b2\",\n            \"@type\": [\"http://example.org/Bar\"]\n          }])\n        },\n        'json.api example': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"@base\": \"http://example.org/base/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"data\": \"@nest\",\n              \"attributes\": \"@nest\",\n              \"links\": \"@nest\",\n              \"relationships\": \"@nest\",\n              \"included\": \"@included\",\n              \"self\": {\"@type\": \"@id\"},\n              \"related\": {\"@type\": \"@id\"},\n              \"comments\": {\n                \"@context\": {\n                  \"data\": null\n                }\n              }\n            },\n            \"data\": [{\n              \"type\": \"articles\",\n              \"id\": \"1\",\n              \"attributes\": {\n                \"title\": \"JSON:API paints my bikeshed!\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/articles/1\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/author\",\n                    \"related\": \"http://example.com/articles/1/author\"\n                  },\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                },\n                \"comments\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/comments\",\n                    \"related\": \"http://example.com/articles/1/comments\"\n                  },\n                  \"data\": [\n                    { \"type\": \"comments\", \"id\": \"5\" },\n                    { \"type\": \"comments\", \"id\": \"12\" }\n                  ]\n                }\n              }\n            }],\n            \"included\": [{\n              \"type\": \"people\",\n              \"id\": \"9\",\n              \"attributes\": {\n                \"first-name\": \"Dan\",\n                \"last-name\": \"Gebhardt\",\n                \"twitter\": \"dgeb\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/people/9\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"5\",\n              \"attributes\": {\n                \"body\": \"First!\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"2\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/5\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"12\",\n              \"attributes\": {\n                \"body\": \"I like XML better\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/12\"\n              }\n            }]\n          }),\n          output: %([{\n            \"@id\": \"_:b0\",\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1/relationships/comments\"}\n            ],\n            \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/comments\"}]\n          }, {\n            \"@id\": \"http://example.org/base/1\",\n            \"@type\": [\"http://example.org/vocab#articles\"],\n            \"http://example.org/vocab#title\": [{\"@value\": \"JSON:API paints my bikeshed!\"}],\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1\"}],\n            \"http://example.org/vocab#author\": [{\"@id\": \"http://example.org/base/9\"}],\n            \"http://example.org/vocab#comments\": [{\"@id\": \"_:b0\"}]\n          }, {\n            \"@id\": \"http://example.org/base/12\",\n            \"@type\": [\"http://example.org/vocab#comments\"],\n            \"http://example.org/vocab#body\": [{\"@value\": \"I like XML better\"}],\n            \"http://example.org/vocab#author\": [{\"@id\": \"http://example.org/base/9\"}],\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/12\"}]\n          }, {\n            \"@id\": \"http://example.org/base/2\",\n            \"@type\": [\"http://example.org/vocab#people\"]\n          }, {\n            \"@id\": \"http://example.org/base/5\",\n            \"@type\": [\"http://example.org/vocab#comments\"],\n            \"http://example.org/vocab#body\": [{\"@value\": \"First!\"}\n            ],\n            \"http://example.org/vocab#author\": [{\"@id\": \"http://example.org/base/2\"}],\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/5\"}]\n          }, {\n            \"@id\": \"http://example.org/base/9\",\n            \"@type\": [\"http://example.org/vocab#people\"],\n            \"http://example.org/vocab#first-name\": [{\"@value\": \"Dan\"}],\n            \"http://example.org/vocab#last-name\": [{\"@value\": \"Gebhardt\"}],\n            \"http://example.org/vocab#twitter\": [{\"@value\": \"dgeb\"}],\n            \"http://example.org/vocab#self\": [\n              {\"@id\": \"http://example.com/people/9\"},\n              {\"@id\": \"http://example.com/articles/1/relationships/author\"}\n            ],\n            \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/author\"}]\n          }])\n        }\n      }.each do |title, params|\n        it(title) { run_flatten(params) }\n      end\n    end\n  end\n\n  context \"html\" do\n    {\n      'Flattens embedded JSON-LD script element': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [{\"@id\": \"_:b0\",\"foo\": [\"bar\"]}]\n        })\n      },\n      'Flattens first script element by default': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [{\"@id\": \"_:b0\",\"foo\": [\"bar\"]}]\n        })\n      },\n      'Flattens first script element with extractAllScripts: false': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}}),\n        output: %({\n          \"@context\": {\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [{\"@id\": \"_:b0\",\"foo\": [\"bar\"]}]\n        }),\n        extractAllScripts: false\n      },\n      'Flattens targeted script element': {\n        input: %(\n        <html>\n          <head>\n            <script id=\"first\" type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script id=\"second\" type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        context: %({\"ex\": \"http://example.com/\"}),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.com/\"},\n          \"@graph\": [\n            {\"@id\": \"_:b0\", \"ex:foo\": \"foo\"},\n            {\"@id\": \"_:b1\", \"ex:bar\": \"bar\"}\n          ]\n        }),\n        base: \"http://example.org/doc#second\"\n      },\n      'Flattens all script elements extractAllScripts: true': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            [\n              {\"http://example.com/foo\": {\"@value\": \"foo\"}},\n              {\"http://example.com/bar\": {\"@value\": \"bar\"}}\n            ]\n            </script>\n          </head>\n        </html>),\n        context: %({\n          \"ex\": \"http://example.com/\",\n          \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.com/\",\n            \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [\n            {\"@id\": \"_:b0\", \"foo\": [\"bar\"]},\n            {\"@id\": \"_:b1\", \"ex:foo\": \"foo\"},\n            {\"@id\": \"_:b2\", \"ex:bar\": \"bar\"}\n          ]\n        }),\n        extractAllScripts: true\n      }\n    }.each do |title, params|\n      it(title) do\n        params[:input] = StringIO.new(params[:input])\n        params[:input].send(:define_singleton_method, :content_type) { \"text/html\" }\n        run_flatten params.merge(validate: true)\n      end\n    end\n  end\n\n  context \"JSON-LD-star\" do\n    {\n      'node object with @annotation property is ignored without rdfstar option': {\n        input: %({\n          \"@id\": \"ex:bob\",\n          \"ex:knows\": {\n            \"@id\": \"ex:fred\",\n            \"@annotation\": {\n              \"ex:certainty\": 0.8\n            }\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n        }])\n      },\n      'value object with @annotation property is ignored without rdfstar option': {\n        input: %({\n          \"@id\": \"ex:bob\",\n          \"ex:age\": {\n            \"@value\": 23,\n            \"@annotation\": {\n              \"ex:certainty\": 0.8\n            }\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:age\": [{\"@value\": 23}]\n        }])\n      }\n    }.each do |title, params|\n      it(title) { run_flatten params }\n    end\n\n    {\n      'node with embedded subject having no @id': {\n        input: %({\n          \"@id\": {\n            \"ex:prop\": \"value\"\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"ex:prop\": [{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded subject having IRI @id': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": \"value\"\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded subject having BNode @id': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"_:rei\",\n            \"ex:prop\": \"value\"\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"_:b0\",\n            \"ex:prop\": [{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded subject having a type': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"@type\": \"ex:Type\"\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"@type\": [\"ex:Type\"]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded subject having an IRI value': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": {\"@id\": \"ex:value\"}\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@id\": \"ex:value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded subject having an BNode value': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": {\"@id\": \"_:value\"}\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@id\": \"_:b0\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with recursive embedded subject': {\n        input: %({\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value3\"\n            },\n            \"ex:prop\": \"value\"\n          },\n          \"ex:prop\": \"value2\"\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value3\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with embedded object': {\n        input: %({\n          \"@id\": \"ex:subj\",\n          \"ex:value\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            }\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:subj\",\n          \"ex:value\": [{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            }\n          }]\n        }])\n      },\n      'node with embedded object having properties': {\n        input: %({\n          \"@id\": \"ex:subj\",\n          \"ex:value\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:subj\",\n          \"ex:value\": [{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            }\n          }]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with recursive embedded object': {\n        input: %({\n          \"@id\": \"ex:subj\",\n          \"ex:value\": {\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value3\"\n              },\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:subj\",\n          \"ex:value\": [{\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value3\"}]\n              },\n              \"ex:prop\":[{\"@value\": \"value\"}]\n            }\n          }]\n        }, {\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value3\"}]\n            },\n            \"ex:prop\":[{\"@value\": \"value\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }])\n      },\n      'node with @annotation property on value object': {\n        input: %({\n          \"@id\": \"ex:bob\",\n          \"ex:age\": {\n            \"@value\": 23,\n            \"@annotation\": {\"ex:certainty\": 0.8}\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:age\": [{\"@value\": 23}]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:bob\",\n            \"ex:age\": [{\"@value\": 23}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }])\n      },\n      'node with @annotation property on node object': {\n        input: %({\n          \"@id\": \"ex:bob\",\n          \"ex:name\": \"Bob\",\n          \"ex:knows\": {\n            \"@id\": \"ex:fred\",\n            \"ex:name\": \"Fred\",\n            \"@annotation\": {\"ex:certainty\": 0.8}\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:name\": [{\"@value\": \"Bob\"}],\n          \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n        }, {\n          \"@id\": \"ex:fred\",\n          \"ex:name\": [{\"@value\": \"Fred\"}]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }])\n      },\n      'node with @annotation property multiple values': {\n        input: %({\n          \"@id\": \"ex:bob\",\n          \"ex:name\": \"Bob\",\n          \"ex:knows\": {\n            \"@id\": \"ex:fred\",\n            \"ex:name\": \"Fred\",\n            \"@annotation\": [{\n              \"ex:certainty\": 0.8\n            }, {\n              \"ex:source\": {\"@id\": \"http://example.org/\"}\n            }]\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:name\": [{\"@value\": \"Bob\"}],\n          \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n        }, {\n          \"@id\": \"ex:fred\",\n          \"ex:name\": [{\"@value\": \"Fred\"}]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": [{\"@id\": \"ex:fred\"}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}],\n          \"ex:source\": [{\"@id\": \"http://example.org/\"}]\n        }])\n      },\n      'node with @annotation property on embedded subject': {\n        input: %({\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": {\"@id\": \"_:value\"}\n          },\n          \"ex:prop\": {\n            \"@value\": \"value2\",\n            \"@annotation\": {\"ex:certainty\": 0.8}\n          }\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@id\": \"_:b0\"}]\n          },\n          \"ex:prop\": [{\"@value\": \"value2\"}]\n        }, {\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"_:b0\"}]\n            },\n            \"ex:prop\": [{\"@value\": \"value2\"}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }])\n      },\n      'node with @annotation property on embedded object': {\n        input: %({\n          \"@id\": \"ex:subj\",\n          \"ex:value\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"@annotation\": {\"ex:certainty\": 0.8}\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:subj\",\n          \"ex:value\": [{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@value\": \"value\"}]\n            }\n          }]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:subj\",\n            \"ex:value\": [{\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": [{\"@value\": \"value\"}]\n              }\n            }]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }])\n      },\n      'embedded node used as subject in reverse relationship': {\n        input: %({\n          \"@context\": {\n            \"rel\": {\"@reverse\": \"ex:rel\"}\n          },\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": {\"@id\": \"ex:value\"}\n          },\n          \"rel\": {\"@id\": \"ex:value2\"}\n        }),\n        output: %([{\n          \"@id\": \"ex:value2\",\n          \"ex:rel\": [{\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [{\"@id\": \"ex:value\"}]\n            }\n          }]\n        }])\n      },\n      'embedded node used as object in reverse relationship': {\n        input: %({\n          \"@context\": {\n            \"rel\": {\"@reverse\": \"ex:rel\"}\n          },\n          \"@id\": \"ex:subj\",\n          \"rel\": {\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"ex:value\"}\n            },\n            \"ex:prop\": {\"@id\": \"ex:value2\"}\n          }\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"ex:rei\",\n            \"ex:prop\": [{\"@id\": \"ex:value\"}]\n          },\n          \"ex:rel\": [{\"@id\": \"ex:subj\"}],\n          \"ex:prop\": [{\"@id\": \"ex:value2\"}]\n        }])\n      },\n      'node with @annotation property on node object with reverse relationship': {\n        input: %({\n          \"@context\": {\n            \"knownBy\": {\"@reverse\": \"ex:knows\"}\n          },\n          \"@id\": \"ex:bob\",\n          \"ex:name\": \"Bob\",\n          \"knownBy\": {\n            \"@id\": \"ex:fred\",\n            \"ex:name\": \"Fred\",\n            \"@annotation\": {\"ex:certainty\": 0.8}\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:name\": [{\"@value\": \"Bob\"}]\n        }, {\n          \"@id\": \"ex:fred\",\n          \"ex:name\": [{\"@value\": \"Fred\"}],\n          \"ex:knows\": [{\"@id\": \"ex:bob\"}]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:fred\",\n            \"ex:knows\": [{\"@id\": \"ex:bob\"}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }])\n      },\n      'reverse relationship inside annotation': {\n        input: %({\n          \"@context\": {\n            \"claims\": {\"@reverse\": \"ex:claims\", \"@type\": \"@id\"}\n          },\n          \"@id\": \"ex:bob\",\n          \"ex:knows\": {\n            \"@id\": \"ex:jane\",\n            \"@annotation\": {\n              \"ex:certainty\": 0.8,\n              \"claims\": \"ex:sue\"\n            }\n          }\n        }),\n        output: %([{\n          \"@id\": \"ex:bob\",\n          \"ex:knows\": [{\"@id\": \"ex:jane\"}]\n        }, {\n          \"@id\": {\n            \"@id\": \"ex:bob\",\n            \"ex:knows\": [{\"@id\": \"ex:jane\"}]\n          },\n          \"ex:certainty\": [{\"@value\": 0.8}]\n        }, {\n          \"@id\": \"ex:sue\",\n          \"ex:claims\": [{\n            \"@id\": {\n              \"@id\": \"ex:bob\",\n              \"ex:knows\": [{\"@id\": \"ex:jane\"}]\n            }\n          }]\n        }])\n      },\n      'embedded node with annotation on value object': {\n        input: %({\n          \"@context\": {\n            \"@base\": \"http://example.org/\",\n            \"@vocab\": \"http://example.org/\",\n            \"claims\": {\"@type\": \"@id\"}\n          },\n          \"@id\": {\n            \"@id\": \"bob\",\n            \"knows\": {\"@id\": \"alice\"}\n          },\n          \"certainty\": {\n            \"@value\": 0.8,\n            \"@annotation\": {\"claims\": \"ted\"}\n          }\n        }),\n        output: %([{\n          \"@id\": {\n            \"@id\": \"http://example.org/bob\",\n            \"http://example.org/knows\": [{\"@id\": \"http://example.org/alice\"}]\n          },\n          \"http://example.org/certainty\": [{\"@value\": 0.8}]\n        }, {\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"http://example.org/bob\",\n              \"http://example.org/knows\": [{\"@id\": \"http://example.org/alice\"}]\n            },\n            \"http://example.org/certainty\": [{\"@value\": 0.8}]\n          },\n          \"http://example.org/claims\": [{\"@id\": \"http://example.org/ted\"}]\n        }])\n      }\n    }.each do |title, params|\n      it(title) { run_flatten params.merge(rdfstar: true) }\n    end\n  end\n\n  def run_flatten(params)\n    input = params[:input]\n    output = params[:output]\n    context = params[:context]\n    input = JSON.parse(input) if input.is_a?(String)\n    output = JSON.parse(output) if output.is_a?(String)\n    context = JSON.parse(context) if context.is_a?(String)\n    params[:base] ||= nil\n    pending params.fetch(:pending, \"test implementation\") unless input\n    if params[:exception]\n      expect { JSON::LD::API.flatten(input, context, logger: logger, **params) }.to raise_error(params[:exception])\n    else\n      jld = nil\n      if params[:write]\n        expect do\n          jld = JSON::LD::API.flatten(input, context, logger: logger, **params)\n        end.to write(params[:write]).to(:error)\n      else\n        expect { jld = JSON::LD::API.flatten(input, context, logger: logger, **params) }.not_to write.to(:error)\n      end\n\n      jld = remap_bnodes(jld, output) if params[:remap_nodes]\n      expect(jld).to produce_jsonld(output, logger)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/format_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/spec/format'\n\ndescribe JSON::LD::Format do\n  it_behaves_like 'an RDF::Format' do\n    let(:format_class) { described_class }\n  end\n\n  describe \".for\" do\n    formats = [\n      :jsonld,\n      \"etc/doap.jsonld\",\n      { file_name:      'etc/doap.jsonld' },\n      { file_extension: 'jsonld' },\n      { content_type:   'application/ld+json' },\n      { content_type:   'application/x-ld+json' }\n    ].each do |arg|\n      it \"discovers with #{arg.inspect}\" do\n        expect(RDF::Format.for(arg)).to eq described_class\n      end\n    end\n\n    {\n      jsonld: '{\"@context\" => \"foo\"}',\n      context: %({\\n\"@context\": {),\n      id: %({\\n\"@id\": {),\n      type: %({\\n\"@type\": {)\n    }.each do |sym, str|\n      it \"detects #{sym}\" do\n        expect(described_class.for { str }).to eq described_class\n      end\n    end\n\n    it \"discovers 'jsonld'\" do\n      expect(RDF::Format.for(:jsonld).reader).to eq JSON::LD::Reader\n    end\n  end\n\n  describe \"#to_sym\" do\n    specify { expect(described_class.to_sym).to eq :jsonld }\n  end\n\n  describe \"#to_uri\" do\n    specify { expect(described_class.to_uri).to eq RDF::URI('http://www.w3.org/ns/formats/JSON-LD') }\n  end\n\n  describe \".detect\" do\n    {\n      jsonld: '{\"@context\" => \"foo\"}'\n    }.each do |sym, str|\n      it \"detects #{sym}\" do\n        expect(described_class.detect(str)).to be_truthy\n      end\n    end\n\n    {\n      n3: \"@prefix foo: <bar> .\\nfoo:bar = {<a> <b> <c>} .\",\n      nquads: \"<a> <b> <c> <d> . \",\n      rdfxml: '<rdf:RDF about=\"foo\"></rdf:RDF>',\n      rdfa: '<div about=\"foo\"></div>',\n      microdata: '<div itemref=\"bar\"></div>',\n      ntriples: \"<a> <b> <c> .\",\n      multi_line: '<a>\\n  <b>\\n  \"literal\"\\n .',\n      turtle: \"@prefix foo: <bar> .\\n foo:a foo:b <c> .\"\n    }.each do |sym, str|\n      it \"does not detect #{sym}\" do\n        expect(described_class.detect(str)).to be_falsey\n      end\n    end\n  end\n\n  describe \".cli_commands\", skip: Gem.win_platform? do\n    require 'rdf/cli'\n    let(:ttl) { File.expand_path('test-files/test-1-rdf.ttl', __dir__) }\n    let(:json) { File.expand_path('test-files/test-1-input.jsonld', __dir__) }\n    let(:context) { File.expand_path('test-files/test-1-context.jsonld', __dir__) }\n\n    describe \"#expand\" do\n      it \"expands RDF\" do\n        expect { RDF::CLI.exec([\"expand\", ttl], format: :ttl, output_format: :jsonld) }.to write.to(:output)\n      end\n\n      it \"expands JSON\" do\n        expect do\n          RDF::CLI.exec([\"expand\", json], format: :jsonld, output_format: :jsonld, validate: false)\n        end.to write.to(:output)\n      end\n    end\n\n    describe \"#compact\" do\n      it \"compacts RDF\" do\n        expect do\n          RDF::CLI.exec([\"compact\", ttl], context: context, format: :ttl, output_format: :jsonld,\n            validate: false)\n        end.to write.to(:output)\n      end\n\n      it \"compacts JSON\" do\n        expect do\n          RDF::CLI.exec([\"compact\", json], context: context, format: :jsonld, output_format: :jsonld,\n            validate: false)\n        end.to write.to(:output)\n      end\n    end\n\n    describe \"#flatten\" do\n      it \"flattens RDF\" do\n        expect do\n          RDF::CLI.exec([\"flatten\", ttl], context: context, format: :ttl, output_format: :jsonld,\n            validate: false)\n        end.to write.to(:output)\n      end\n\n      it \"flattens JSON\" do\n        expect do\n          RDF::CLI.exec([\"flatten\", json], context: context, format: :jsonld, output_format: :jsonld,\n            validate: false)\n        end.to write.to(:output)\n      end\n    end\n\n    describe \"#frame\" do\n      it \"frames RDF\" do\n        expect do\n          RDF::CLI.exec([\"frame\", ttl], frame: context, format: :ttl, output_format: :jsonld)\n        end.to write.to(:output)\n      end\n\n      it \"frames JSON\" do\n        expect do\n          RDF::CLI.exec([\"frame\", json], frame: context, format: :jsonld, output_format: :jsonld,\n            validate: false)\n        end.to write.to(:output)\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/frame_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".frame\" do\n    {\n      'exact @type match': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": \"ex:Type1\"\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }]\n        })\n      },\n      'wildcard @type match': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": {}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }]\n        })\n      },\n      'match none @type match': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": []\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:p\": \"Foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"ex:p\": \"Bar\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub2\",\n            \"ex:p\": \"Bar\"\n          }]\n        })\n      },\n      'multiple matches on @type': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": \"ex:Type1\"\n        }),\n        input: %([{\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\"\n        }, {\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub2\",\n          \"@type\": \"ex:Type1\"\n        }, {\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub3\",\n          \"@type\": [\"ex:Type1\", \"ex:Type2\"]\n        }]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@id\": \"ex:Sub3\",\n            \"@type\": [\"ex:Type1\", \"ex:Type2\"]\n          }]\n        })\n      },\n      'single @id match': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\"\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }]\n        })\n      },\n      'multiple @id match': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": [\"ex:Sub1\", \"ex:Sub2\"]\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub3\",\n            \"@type\": \"ex:Type3\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\"\n          }]\n        })\n      },\n      'wildcard and match none': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"ex:p\": [],\n          \"ex:q\": {}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:q\": \"bar\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"bar\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": null,\n            \"ex:q\": \"bar\"\n          }]\n        })\n      },\n      'match on any property if @requireAll is false': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@requireAll\": false,\n          \"ex:p\": {},\n          \"ex:q\": {}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"ex:q\": \"bar\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": null\n          }, {\n            \"@id\": \"ex:Sub2\",\n            \"ex:p\": null,\n            \"ex:q\": \"bar\"\n          }]\n        })\n      },\n      'match on defeaults if @requireAll is true and at least one property matches': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@requireAll\": true,\n          \"ex:p\": {\"@default\": \"Foo\"},\n          \"ex:q\": {\"@default\": \"Bar\"}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"ex:q\": \"bar\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub3\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"bar\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub4\",\n            \"ex:r\": \"baz\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"Bar\"\n          }, {\n            \"@id\": \"ex:Sub2\",\n            \"ex:p\": \"Foo\",\n            \"ex:q\": \"bar\"\n          }, {\n            \"@id\": \"ex:Sub3\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"bar\"\n          }]\n        })\n      },\n      'match with @requireAll with one default': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@requireAll\": true,\n          \"ex:p\": {},\n          \"ex:q\": {\"@default\": \"Bar\"}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"ex:q\": \"bar\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub3\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"bar\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"Bar\"\n          }, {\n            \"@id\": \"ex:Sub3\",\n            \"ex:p\": \"foo\",\n            \"ex:q\": \"bar\"\n          }]\n        })\n      },\n      \"don't match with @requireAll, matching @type but no matching property\": {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@requireAll\": true,\n          \"@type\": \"ex:Type\",\n          \"ex:p\": {}\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type\",\n            \"ex:p\": \"foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub3\",\n            \"ex:p\": \"foo\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type\",\n            \"ex:p\": \"foo\"\n          }]\n        })\n      },\n      \"don't match with @requireAll, matching @id but no matching @type\": {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@requireAll\": true,\n          \"@id\": [\"ex:Sub1\", \"ex:Sub2\"],\n          \"@type\": \"ex:Type\"\n        }),\n        input: %([\n          {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type\",\n            \"ex:p\": \"foo\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:OtherType\"\n          }, {\n            \"@context\": { \"ex\":\"http://example.org/\"},\n            \"@id\": \"ex:Sub3\",\n            \"@type\": \"ex:Type\",\n            \"ex:p\": \"foo\"\n          }\n        ]),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type\",\n            \"ex:p\": \"foo\"\n          }]\n        })\n      },\n      'issue #40 - example': {\n        frame: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://schema.org/\"\n          },\n          \"@type\": \"Person\",\n          \"@requireAll\": true,\n          \"givenName\": \"John\",\n          \"familyName\": \"Doe\"\n        }),\n        input: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://schema.org/\"\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"1\",\n              \"@type\": \"Person\",\n              \"name\": \"John Doe\",\n              \"givenName\": \"John\",\n              \"familyName\": \"Doe\"\n            },\n            {\n              \"@id\": \"2\",\n              \"@type\": \"Person\",\n              \"name\": \"Jane Doe\",\n              \"givenName\": \"Jane\"\n            }\n          ]\n        }),\n        output: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://schema.org/\"\n          },\n          \"@id\": \"1\",\n          \"@type\": \"Person\",\n          \"familyName\": \"Doe\",\n          \"givenName\": \"John\",\n          \"name\": \"John Doe\"\n        }),\n        processingMode: 'json-ld-1.1'\n      },\n      'implicitly includes unframed properties (default @explicit false)': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": \"ex:Type1\"\n        }),\n        input: '{\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:prop1\": \"Property 1\",\n          \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n        }',\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:prop1\": \"Property 1\",\n            \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n          }]\n        })\n      },\n      'explicitly includes unframed properties @explicit false': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@explicit\": false,\n          \"@type\": \"ex:Type1\"\n        }),\n        input: '{\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:prop1\": \"Property 1\",\n          \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n        }',\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:prop1\": \"Property 1\",\n            \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n          }]\n        })\n      },\n      'explicitly excludes unframed properties (@explicit: true)': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@explicit\": true,\n          \"@type\": \"ex:Type1\"\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:prop1\": \"Property 1\",\n          \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }]\n        })\n      },\n      'non-existent framed properties create null property': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": \"ex:Type1\",\n          \"ex:null\": []\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:prop1\": \"Property 1\",\n          \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\"\n          },\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:prop1\": \"Property 1\",\n            \"ex:prop2\": {\n              \"@id\": \"ex:Obj1\"\n            },\n            \"ex:null\": null\n          }]\n        })\n      },\n      'non-existent framed properties create default property': {\n        frame: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\",\n            \"ex:null\": {\"@container\": \"@set\"}\n          },\n          \"@type\": \"ex:Type1\",\n          \"ex:null\": [{\"@default\": \"foo\"}]\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:prop1\": \"Property 1\",\n          \"ex:prop2\": {\"@id\": \"ex:Obj1\"}\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\",\n            \"ex:null\": {\"@container\": \"@set\"}\n          },\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:prop1\": \"Property 1\",\n            \"ex:prop2\": {\"@id\": \"ex:Obj1\"},\n            \"ex:null\": [\"foo\"]\n          }]\n        })\n      },\n      'default value for @type': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@type\": {\"@default\": \"ex:Foo\"},\n          \"ex:foo\": \"bar\"\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"ex:foo\": \"bar\"\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Foo\",\n            \"ex:foo\": \"bar\"\n          }]\n        })\n      },\n      'mixed content': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"ex:mixed\": {\"@embed\": \"@never\"}\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"ex:mixed\": [\n            {\"@id\": \"ex:Sub2\"},\n            \"literal1\"\n          ]\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:mixed\": [\n              {\"@id\": \"ex:Sub2\"},\n              \"literal1\"\n            ]\n          }]\n        })\n      },\n      'no embedding (@embed: @never)': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"ex:embed\": {\"@embed\": \"@never\"}\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"ex:embed\": {\n            \"@id\": \"ex:Sub2\",\n            \"ex:prop\": \"property\"\n          }\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"ex:embed\": {\"@id\": \"ex:Sub2\"}\n          }]\n        })\n      },\n      'first embed (@embed: @once)': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@type\": \"ex:Thing\",\n          \"@embed\": \"@once\"\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@id\": \"http://example/outer\",\n          \"@type\": \"ex:Thing\",\n          \"ex:embed1\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"},\n          \"ex:embed2\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"}\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@graph\": [\n            {\n              \"@id\": \"http://example/outer\",\n              \"@type\": \"ex:Thing\",\n              \"ex:embed1\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"},\n              \"ex:embed2\": {\"@id\": \"http://example/embedded\"}\n            }\n          ]\n        }),\n        ordered: true\n      },\n      'always embed (@embed: @always)': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@type\": \"ex:Thing\",\n          \"@embed\": \"@always\"\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@id\": \"http://example/outer\",\n          \"@type\": \"ex:Thing\",\n          \"ex:embed1\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"},\n          \"ex:embed2\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"}\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://www.example.com/#\"},\n          \"@graph\": [\n            {\n              \"@id\": \"http://example/outer\",\n              \"@type\": \"ex:Thing\",\n              \"ex:embed1\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"},\n              \"ex:embed2\": {\"@id\": \"http://example/embedded\", \"ex:name\": \"Embedded\"}\n            }\n          ]\n        })\n      },\n      'mixed list': {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"ex:mixedlist\": {}\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"ex:mixedlist\": {\n            \"@list\": [\n              {\"@id\": \"ex:Sub2\", \"@type\": \"ex:Type2\"},\n              \"literal1\"\n            ]\n          }\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"ex:mixedlist\": {\n              \"@list\": [\n                {\"@id\": \"ex:Sub2\", \"@type\": \"ex:Type2\"},\n                \"literal1\"\n              ]\n            }\n          }]\n        })\n      },\n      'framed list': {\n        frame: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\",\n            \"list\": {\"@id\": \"ex:list\", \"@container\": \"@list\"}\n          },\n          \"list\": [{\"@type\": \"ex:Element\"}]\n        }),\n        input: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\",\n            \"list\": {\"@id\": \"ex:list\", \"@container\": \"@list\"}\n          },\n          \"@id\": \"ex:Sub1\",\n          \"@type\": \"ex:Type1\",\n          \"list\": [\n            {\"@id\": \"ex:Sub2\", \"@type\": \"ex:Element\"},\n            \"literal1\"\n          ]\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/\",\n            \"list\": {\"@id\": \"ex:list\", \"@container\": \"@list\"}\n          },\n          \"@graph\": [{\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\",\n            \"list\": [\n              {\"@id\": \"ex:Sub2\", \"@type\": \"ex:Element\"},\n              \"literal1\"\n            ]\n          }]\n        })\n      },\n      'presentation example': {\n        frame: %({\n          \"@context\": {\n            \"primaryTopic\": {\n              \"@id\": \"http://xmlns.com/foaf/0.1/primaryTopic\",\n              \"@type\": \"@id\"\n            },\n            \"sameAs\": {\n              \"@id\": \"http://www.w3.org/2002/07/owl#sameAs\",\n              \"@type\": \"@id\"\n            }\n          },\n          \"primaryTopic\": {\n            \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n            \"sameAs\": {}\n          }\n        }),\n        input: %([{\n          \"@id\": \"http://en.wikipedia.org/wiki/Linked_Data\",\n          \"http://xmlns.com/foaf/0.1/primaryTopic\": {\"@id\": \"http://dbpedia.org/resource/Linked_Data\"}\n        }, {\n          \"@id\": \"http://www4.wiwiss.fu-berlin.de/flickrwrappr/photos/Linked_Data\",\n          \"http://www.w3.org/2002/07/owl#sameAs\": {\"@id\": \"http://dbpedia.org/resource/Linked_Data\"}\n        }, {\n          \"@id\": \"http://dbpedia.org/resource/Linked_Data\",\n          \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n          \"http://www.w3.org/2002/07/owl#sameAs\": {\"@id\": \"http://rdf.freebase.com/ns/m/02r2kb1\"}\n        }, {\n          \"@id\": \"http://mpii.de/yago/resource/Linked_Data\",\n          \"http://www.w3.org/2002/07/owl#sameAs\": {\"@id\": \"http://dbpedia.org/resource/Linked_Data\"}\n        }\n      ]),\n        output: %({\n          \"@context\": {\n            \"primaryTopic\": {\"@id\": \"http://xmlns.com/foaf/0.1/primaryTopic\", \"@type\": \"@id\"},\n            \"sameAs\": {\"@id\": \"http://www.w3.org/2002/07/owl#sameAs\", \"@type\": \"@id\"}\n          },\n          \"@graph\": [{\n            \"@id\": \"http://en.wikipedia.org/wiki/Linked_Data\",\n            \"primaryTopic\": {\n              \"@id\": \"http://dbpedia.org/resource/Linked_Data\",\n              \"@type\": \"http://dbpedia.org/class/yago/Buzzwords\",\n              \"sameAs\": \"http://rdf.freebase.com/ns/m/02r2kb1\"\n            }\n          }]\n        })\n      },\n      'microdata manifest': {\n        frame: %({\n          \"@context\": {\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n            \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n            \"mq\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-query#\",\n            \"comment\": \"rdfs:comment\",\n            \"entries\": {\"@id\": \"mf:entries\", \"@container\": \"@list\"},\n            \"name\": \"mf:name\",\n            \"action\": \"mf:action\",\n            \"data\": {\"@id\": \"mq:data\", \"@type\": \"@id\"},\n            \"query\": {\"@id\": \"mq:query\", \"@type\": \"@id\"},\n            \"result\": {\"@id\": \"mf:result\", \"@type\": \"xsd:boolean\"}\n          },\n          \"@type\": \"mf:Manifest\",\n          \"entries\": [{\n            \"@type\": \"mf:ManifestEntry\",\n            \"action\": {\n              \"@type\": \"mq:QueryTest\"\n            }\n          }]\n        }),\n        input: '{\n          \"@context\": {\n            \"md\": \"http://www.w3.org/ns/md#\",\n            \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n            \"mq\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-query#\",\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\"\n          },\n          \"@graph\": [{\n            \"@id\": \"_:manifest\",\n            \"@type\": \"mf:Manifest\",\n            \"mf:entries\": {\"@list\": [{\"@id\": \"_:entry\"}]},\n            \"rdfs:comment\": \"Positive processor tests\"\n          }, {\n            \"@id\": \"_:entry\",\n            \"@type\": \"mf:ManifestEntry\",\n            \"mf:action\": {\"@id\": \"_:query\"},\n            \"mf:name\": \"Test 0001\",\n            \"mf:result\": \"true\",\n            \"rdfs:comment\": \"Item with no itemtype and literal itemprop\"\n          }, {\n            \"@id\": \"_:query\",\n            \"@type\": \"mq:QueryTest\",\n            \"mq:data\": {\"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.html\"},\n            \"mq:query\": {\"@id\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.ttl\"}\n          }]\n        }',\n        output: %({\n          \"@context\": {\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n            \"mf\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-manifest#\",\n            \"mq\": \"http://www.w3.org/2001/sw/DataAccess/tests/test-query#\",\n            \"comment\": \"rdfs:comment\",\n            \"entries\": {\"@id\": \"mf:entries\",\"@container\": \"@list\"},\n            \"name\": \"mf:name\",\n            \"action\": \"mf:action\",\n            \"data\": {\"@id\": \"mq:data\", \"@type\": \"@id\"},\n            \"query\": {\"@id\": \"mq:query\", \"@type\": \"@id\"},\n            \"result\": {\"@id\": \"mf:result\", \"@type\": \"xsd:boolean\"}\n          },\n          \"@type\": \"mf:Manifest\",\n          \"comment\": \"Positive processor tests\",\n          \"entries\": [{\n            \"@type\": \"mf:ManifestEntry\",\n            \"action\": {\n              \"@type\": \"mq:QueryTest\",\n              \"data\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.html\",\n              \"query\": \"http://www.w3.org/TR/microdata-rdf/tests/0001.ttl\"\n            },\n            \"comment\": \"Item with no itemtype and literal itemprop\",\n            \"mf:result\": \"true\",\n            \"name\": \"Test 0001\"\n          }]\n        }),\n        processingMode: 'json-ld-1.1'\n      },\n      library: {\n        frame: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/elements/1.1/\",\n            \"ex\": \"http://example.org/vocab#\",\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"ex:contains\": { \"@type\": \"@id\" }\n          },\n          \"@type\": \"ex:Library\",\n          \"ex:contains\": {}\n        }),\n        input: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/elements/1.1/\",\n            \"ex\": \"http://example.org/vocab#\",\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\"\n          },\n          \"@id\": \"http://example.org/library\",\n          \"@type\": \"ex:Library\",\n          \"dc:name\": \"Library\",\n          \"ex:contains\": {\n            \"@id\": \"http://example.org/library/the-republic\",\n            \"@type\": \"ex:Book\",\n            \"dc:creator\": \"Plato\",\n            \"dc:title\": \"The Republic\",\n            \"ex:contains\": {\n              \"@id\": \"http://example.org/library/the-republic#introduction\",\n              \"@type\": \"ex:Chapter\",\n              \"dc:description\": \"An introductory chapter on The Republic.\",\n              \"dc:title\": \"The Introduction\"\n            }\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/elements/1.1/\",\n            \"ex\": \"http://example.org/vocab#\",\n            \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n            \"ex:contains\": { \"@type\": \"@id\" }\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"http://example.org/library\",\n              \"@type\": \"ex:Library\",\n              \"dc:name\": \"Library\",\n              \"ex:contains\": {\n                \"@id\": \"http://example.org/library/the-republic\",\n                \"@type\": \"ex:Book\",\n                \"dc:creator\": \"Plato\",\n                \"dc:title\": \"The Republic\",\n                \"ex:contains\": {\n                  \"@id\": \"http://example.org/library/the-republic#introduction\",\n                  \"@type\": \"ex:Chapter\",\n                  \"dc:description\": \"An introductory chapter on The Republic.\",\n                  \"dc:title\": \"The Introduction\"\n                }\n              }\n            }\n          ]\n        })\n      }\n    }.each do |title, params|\n      it title do\n        do_frame(params)\n      end\n    end\n\n    describe \"@reverse\" do\n      {\n        'embed matched frames with @reverse': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@type\": \"ex:Type1\",\n            \"@reverse\": {\"ex:includes\": {}}\n          }),\n          input: %([{\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\",\n            \"ex:includes\": {\"@id\": \"ex:Sub1\"}\n          }]),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"@type\": \"ex:Type1\",\n              \"@reverse\": {\n                \"ex:includes\": {\n                  \"@id\": \"ex:Sub2\",\n                  \"@type\": \"ex:Type2\",\n                  \"ex:includes\": {\n                    \"@id\": \"ex:Sub1\"\n                  }\n                }\n              }\n            }]\n          })\n        },\n        'embed matched frames with reversed property': {\n          frame: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/\",\n              \"excludes\": {\"@reverse\": \"ex:includes\"}\n            },\n            \"@type\": \"ex:Type1\",\n            \"excludes\": {}\n          }),\n          input: %([{\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"@type\": \"ex:Type1\"\n          }, {\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub2\",\n            \"@type\": \"ex:Type2\",\n            \"ex:includes\": {\"@id\": \"ex:Sub1\"}\n          }]),\n          output: %({\n            \"@context\": {\n              \"ex\": \"http://example.org/\",\n              \"excludes\": {\"@reverse\": \"ex:includes\"}\n            },\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"@type\": \"ex:Type1\",\n              \"excludes\": {\n                \"@id\": \"ex:Sub2\",\n                \"@type\": \"ex:Type2\",\n                \"ex:includes\": {\"@id\": \"ex:Sub1\"}\n              }\n            }]\n          })\n        }\n      }.each do |title, params|\n        it title do\n          do_frame(params)\n        end\n      end\n    end\n\n    context \"omitGraph option\" do\n      {\n        'Defaults to false in 1.0': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@graph\": [{\n              \"foo\": \"bar\",\n              \"prop\": \"value\"\n            }]\n          }),\n          processingMode: \"json-ld-1.0\"\n        },\n        'Set with option in 1.0': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"foo\": \"bar\",\n            \"prop\": \"value\"\n          }),\n          processingMode: \"json-ld-1.0\",\n          omitGraph: true\n        },\n        'Defaults to true in 1.1': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"foo\": \"bar\",\n            \"prop\": \"value\"\n          }),\n          processingMode: \"json-ld-1.1\"\n        },\n        'Set with option in 1.1': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@graph\": [{\n              \"foo\": \"bar\",\n              \"prop\": \"value\"\n            }]\n          }),\n          processingMode: \"json-ld-1.1\",\n          omitGraph: false\n        }\n      }.each do |title, params|\n        it(title) { do_frame(params.merge(pruneBlankNodeIdentifiers: true)) }\n      end\n    end\n\n    context \"@included\" do\n      {\n        'Basic Included array': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }, {\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included\": {\"@id\": \"@included\", \"@container\": \"@set\"}\n            },\n            \"@requireAll\": true,\n            \"foo\": \"bar\",\n            \"prop\": \"value\",\n            \"@included\": [{\n              \"@requireAll\": true,\n              \"foo\": \"bar\",\n              \"prop\": \"value2\"\n            }]\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included\": {\"@id\": \"@included\", \"@container\": \"@set\"}\n            },\n            \"foo\": \"bar\",\n            \"included\": [{\n              \"foo\": \"bar\",\n              \"prop\": \"value2\"\n            }],\n            \"prop\": \"value\"\n          })\n        },\n        'Basic Included object': {\n          input: %([{\n            \"http://example.org/prop\": [{\"@value\": \"value\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }, {\n            \"http://example.org/prop\": [{\"@value\": \"value2\"}],\n            \"http://example.org/foo\": [{\"@value\": \"bar\"}]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"@requireAll\": true,\n            \"foo\": \"bar\",\n            \"prop\": \"value\",\n            \"@included\": [{\n              \"@requireAll\": true,\n              \"foo\": \"bar\",\n              \"prop\": \"value2\"\n            }]\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"foo\": \"bar\",\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\",\n              \"foo\": \"bar\"\n            }\n          })\n        },\n        'json.api example': {\n          input: %([{\n            \"@id\": \"http://example.org/base/1\",\n            \"@type\": [\"http://example.org/vocab#articles\"],\n            \"http://example.org/vocab#title\": [{\"@value\": \"JSON:API paints my bikeshed!\"}],\n            \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1\"}],\n            \"http://example.org/vocab#author\": [{\n              \"@id\": \"http://example.org/base/9\",\n              \"@type\": [\"http://example.org/vocab#people\"],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1/relationships/author\"}],\n              \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/author\"}]\n            }],\n            \"http://example.org/vocab#comments\": [{\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/articles/1/relationships/comments\"}],\n              \"http://example.org/vocab#related\": [{\"@id\": \"http://example.com/articles/1/comments\"}]\n            }],\n            \"@included\": [{\n              \"@id\": \"http://example.org/base/9\",\n              \"@type\": [\"http://example.org/vocab#people\"],\n              \"http://example.org/vocab#first-name\": [{\"@value\": \"Dan\"}],\n              \"http://example.org/vocab#last-name\": [{\"@value\": \"Gebhardt\"}],\n              \"http://example.org/vocab#twitter\": [{\"@value\": \"dgeb\"}],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/people/9\"}]\n            }, {\n              \"@id\": \"http://example.org/base/5\",\n              \"@type\": [\"http://example.org/vocab#comments\"],\n              \"http://example.org/vocab#body\": [{\"@value\": \"First!\"}],\n              \"http://example.org/vocab#author\": [{\n                \"@id\": \"http://example.org/base/2\",\n                \"@type\": [\"http://example.org/vocab#people\"]\n              }],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/5\"}]\n            }, {\n              \"@id\": \"http://example.org/base/12\",\n              \"@type\": [\"http://example.org/vocab#comments\"],\n              \"http://example.org/vocab#body\": [{\"@value\": \"I like XML better\"}],\n              \"http://example.org/vocab#author\": [{\n                \"@id\": \"http://example.org/base/9\",\n                \"@type\": [\"http://example.org/vocab#people\"]\n              }],\n              \"http://example.org/vocab#self\": [{\"@id\": \"http://example.com/comments/12\"}]\n            }]\n          }]),\n          frame: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"@base\": \"http://example.org/base/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"data\": \"@nest\",\n              \"attributes\": \"@nest\",\n              \"links\": \"@nest\",\n              \"relationships\": \"@nest\",\n              \"included\": \"@included\",\n              \"author\": {\"@type\": \"@id\"},\n              \"self\": {\"@type\": \"@id\"},\n              \"related\": {\"@type\": \"@id\"},\n              \"comments\": {\"@context\": {\"data\": null}}\n            },\n            \"data\": {\"type\": \"articles\"},\n            \"included\": {\n              \"@requireAll\": true,\n              \"type\": [\"comments\", \"people\"],\n              \"self\": {}\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"@base\": \"http://example.org/base/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"data\": \"@nest\",\n              \"attributes\": \"@nest\",\n              \"links\": \"@nest\",\n              \"relationships\": \"@nest\",\n              \"included\": \"@included\",\n              \"author\": {\"@type\": \"@id\"},\n              \"self\": {\"@type\": \"@id\"},\n              \"related\": {\"@type\": \"@id\"},\n              \"comments\": {\"@context\": {\"data\": null}}\n            },\n            \"id\": \"1\",\n            \"type\": \"articles\",\n            \"title\": \"JSON:API paints my bikeshed!\",\n            \"self\": \"http://example.com/articles/1\",\n            \"author\": \"9\",\n            \"comments\": {\n              \"self\": \"http://example.com/articles/1/relationships/comments\",\n              \"related\": \"http://example.com/articles/1/comments\"\n            },\n            \"included\": [{\n              \"id\": \"5\",\n              \"type\": \"comments\",\n              \"body\": \"First!\",\n              \"author\": {\"id\": \"2\", \"type\": \"people\"},\n              \"self\": \"http://example.com/comments/5\"\n            }, {\n              \"id\": \"9\",\n              \"type\": \"people\",\n              \"first-name\": \"Dan\",\n              \"last-name\": \"Gebhardt\",\n              \"twitter\": \"dgeb\",\n              \"self\": [\n                \"http://example.com/people/9\",\n                \"http://example.com/articles/1/relationships/author\"\n              ],\n              \"related\": \"http://example.com/articles/1/author\"\n            }, {\n              \"id\": \"12\",\n              \"type\": \"comments\",\n              \"body\": \"I like XML better\",\n              \"author\": \"9\",\n              \"self\": \"http://example.com/comments/12\"\n            }]\n          })\n        }\n      }.each do |title, params|\n        it(title) { do_frame(params.merge(processingMode: 'json-ld-1.1')) }\n      end\n    end\n\n    describe \"node pattern\" do\n      {\n        'matches a deep node pattern': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\n              \"ex:q\": {}\n            }\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"@type\": \"ex:Type1\",\n              \"ex:p\": {\n                \"@id\": \"ex:Sub2\",\n                \"@type\": \"ex:Type2\",\n                \"ex:q\": \"foo\"\n              }\n            }, {\n              \"@id\": \"ex:Sub3\",\n              \"@type\": \"ex:Type1\",\n              \"ex:q\": {\n                \"@id\": \"ex:Sub4\",\n                \"@type\": \"ex:Type2\",\n                \"ex:r\": \"bar\"\n              }\n            }]\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"@type\": \"ex:Type1\",\n              \"ex:p\": {\n                \"@id\": \"ex:Sub2\",\n                \"@type\": \"ex:Type2\",\n                \"ex:q\": \"foo\"\n              }\n            }]\n          })\n        }\n      }.each do |title, params|\n        it title do\n          do_frame(params)\n        end\n      end\n    end\n\n    describe \"value pattern\" do\n      {\n        'matches exact values': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'matches wildcard @value': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\"@value\": {}},\n            \"ex:q\": {\"@value\": {}, \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": {}, \"@language\": \"r\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'matches wildcard @type': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": {}}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"}\n            }]\n          })\n        },\n        'matches wildcard @language': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": {}}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'match none @type': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\"@value\": {}, \"@type\": []},\n            \"ex:q\": {\"@value\": {}, \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": {}, \"@language\": \"r\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'match none @language': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\"@value\": {}, \"@language\": []},\n            \"ex:q\": {\"@value\": {}, \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": {}, \"@language\": \"r\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'matches some @value': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\"@value\": [\"P\", \"Q\", \"R\"]},\n            \"ex:q\": {\"@value\": [\"P\", \"Q\", \"R\"], \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": [\"P\", \"Q\", \"R\"], \"@language\": \"r\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": \"P\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"r\"}\n            }]\n          })\n        },\n        'matches some @type': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": [\"ex:q\", \"ex:Q\"]}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"}\n            }]\n          })\n        },\n        'matches some @language': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:r\": {\"@value\": \"R\", \"@language\": [\"p\", \"q\", \"r\"]}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:r\": {\"@value\": \"R\", \"@language\": \"R\"}\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"R\"}\n            }]\n          })\n        },\n        'excludes non-matched values': {\n          frame: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"ex:p\": {\"@value\": {}},\n            \"ex:q\": {\"@value\": {}, \"@type\": \"ex:q\"},\n            \"ex:r\": {\"@value\": {}, \"@language\": \"R\"}\n          }),\n          input: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@id\": \"ex:Sub1\",\n            \"ex:p\": [\"P\", {\"@value\": \"P\", \"@type\": \"ex:p\"}, {\"@value\": \"P\", \"@language\": \"P\"}],\n            \"ex:q\": [\"Q\", {\"@value\": \"Q\", \"@type\": \"ex:q\"}, {\"@value\": \"Q\", \"@language\": \"Q\"}],\n            \"ex:r\": [\"R\", {\"@value\": \"R\", \"@type\": \"ex:r\"}, {\"@value\": \"R\", \"@language\": \"R\"}]\n          }),\n          output: %({\n            \"@context\": {\"ex\": \"http://example.org/\"},\n            \"@graph\": [{\n              \"@id\": \"ex:Sub1\",\n              \"ex:p\": \"P\",\n              \"ex:q\": {\"@value\": \"Q\", \"@type\": \"ex:q\"},\n              \"ex:r\": {\"@value\": \"R\", \"@language\": \"R\"}\n            }]\n          })\n        }\n      }.each do |title, params|\n        it title do\n          do_frame(params)\n        end\n      end\n    end\n\n    describe \"named graphs\" do\n      {\n        'Merge graphs if no outer @graph is used': {\n          frame: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@type\": \"Class\"\n          }),\n          input: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"preserve\": {\n              \"@graph\": {\n                \"@id\": \"urn:id-2\",\n                \"term\": \"data\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"preserve\": {}\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        'Frame default graph if outer @graph is used': {\n          frame: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@type\": \"Class\",\n            \"@graph\": {}\n          }),\n          input: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"preserve\": {\n              \"@id\": \"urn:gr-1\",\n              \"@graph\": {\n                \"@id\": \"urn:id-2\",\n                \"term\": \"data\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"preserve\": {\n              \"@id\": \"urn:gr-1\",\n              \"@graph\": {\n                \"@id\": \"urn:id-2\",\n                \"term\": \"data\"\n              }\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        'Merge one graph and preserve another': {\n          frame: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@type\": \"Class\",\n            \"preserve\": {\n              \"@graph\": {}\n            }\n          }),\n          input: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"merge\": {\n              \"@id\": \"urn:id-2\",\n              \"@graph\": {\n                \"@id\": \"urn:id-2\",\n                \"term\": \"foo\"\n              }\n            },\n            \"preserve\": {\n              \"@id\": \"urn:graph-1\",\n              \"@graph\": {\n                \"@id\": \"urn:id-3\",\n                \"term\": \"bar\"\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"merge\": {\n              \"@id\": \"urn:id-2\",\n              \"term\": \"foo\"\n            },\n            \"preserve\": {\n              \"@id\": \"urn:graph-1\",\n              \"@graph\": {\n                \"@id\": \"urn:id-3\",\n                \"term\": \"bar\"\n              }\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        'Merge one graph and deep preserve another': {\n          frame: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@type\": \"Class\",\n            \"preserve\": {\n              \"deep\": {\n                \"@graph\": {}\n              }\n            }\n          }),\n          input: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"merge\": {\n              \"@id\": \"urn:id-2\",\n              \"@graph\": {\n                \"@id\": \"urn:id-2\",\n                \"term\": \"foo\"\n              }\n            },\n            \"preserve\": {\n              \"deep\": {\n                \"@graph\": {\n                  \"@id\": \"urn:id-3\",\n                  \"term\": \"bar\"\n                }\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\"@vocab\": \"urn:\"},\n            \"@id\": \"urn:id-1\",\n            \"@type\": \"Class\",\n            \"merge\": {\n              \"@id\": \"urn:id-2\",\n              \"term\": \"foo\"\n            },\n            \"preserve\": {\n              \"deep\": {\n                \"@graph\": {\n                  \"@id\": \"urn:id-3\",\n                  \"term\": \"bar\"\n                }\n              }\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        library: {\n          frame: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@type\": \"Library\",\n            \"contains\": {\n              \"@id\": \"http://example.org/graphs/books\",\n              \"@graph\": {\"@type\": \"Book\"}\n            }\n          }),\n          input: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@id\": \"http://example.org/library\",\n            \"@type\": \"Library\",\n            \"name\": \"Library\",\n            \"contains\": {\n              \"@id\": \"http://example.org/graphs/books\",\n              \"@graph\": {\n                \"@id\": \"http://example.org/library/the-republic\",\n                \"@type\": \"Book\",\n                \"creator\": \"Plato\",\n                \"title\": \"The Republic\",\n                \"contains\": {\n                  \"@id\": \"http://example.org/library/the-republic#introduction\",\n                  \"@type\": \"Chapter\",\n                  \"description\": \"An introductory chapter on The Republic.\",\n                  \"title\": \"The Introduction\"\n                }\n              }\n            }\n          }),\n          output: %({\n            \"@context\": {\"@vocab\": \"http://example.org/\"},\n            \"@id\": \"http://example.org/library\",\n            \"@type\": \"Library\",\n            \"name\": \"Library\",\n            \"contains\": {\n              \"@id\": \"http://example.org/graphs/books\",\n              \"@graph\": {\n                \"@id\": \"http://example.org/library/the-republic\",\n                \"@type\": \"Book\",\n                \"creator\": \"Plato\",\n                \"title\": \"The Republic\",\n                \"contains\": {\n                  \"@id\": \"http://example.org/library/the-republic#introduction\",\n                  \"@type\": \"Chapter\",\n                  \"description\": \"An introductory chapter on The Republic.\",\n                  \"title\": \"The Introduction\"\n                }\n              }\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        },\n        'named graph with @embed: @never': {\n          input: %({\n            \"@id\": \"ex:cred\",\n            \"ex:subject\": {\n              \"@id\": \"ex:Subject\",\n              \"ex:name\": \"the subject\"\n            },\n            \"ex:proof\": {\n              \"@graph\": {\n                \"@type\": \"ex:Proof\",\n                \"ex:name\": \"the proof\",\n                \"ex:signer\": [{\n                  \"@id\": \"ex:Subject\",\n                  \"ex:name\": \"something different\"\n                }]\n              }\n            }\n          }),\n          frame: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"proof\": {\"@id\": \"ex:proof\", \"@container\": \"@graph\"}\n            },\n            \"@graph\": {\n              \"proof\": {\"@embed\": \"@never\"}\n            }\n          }),\n          output: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"proof\": {\n                \"@id\": \"ex:proof\",\n                \"@container\": \"@graph\"\n              }\n            },\n            \"@id\": \"ex:cred\",\n            \"ex:subject\": {\n              \"@id\": \"ex:Subject\",\n              \"ex:name\": \"the subject\"\n            },\n            \"proof\": {\n              \"@included\": [\n                {\n                  \"@type\": \"ex:Proof\",\n                  \"ex:name\": \"the proof\",\n                  \"ex:signer\": {\n                    \"@id\": \"ex:Subject\"\n                  }\n                },\n                {\n                  \"@id\": \"ex:Subject\",\n                  \"ex:name\": \"something different\"\n                }\n              ]\n            }\n          }),\n          processingMode: 'json-ld-1.1'\n        }\n      }.each do |title, params|\n        it title do\n          do_frame(params)\n        end\n      end\n    end\n  end\n\n  describe \"prune blank nodes\" do\n    {\n      'preserves single-use bnode identifiers if @version 1.0': {\n        frame: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@id\": \"http://example.com/asset\",\n          \"@type\": \"ps:Asset\",\n          \"dc:creator\": {}\n        }),\n        input: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@id\": \"http://example.com/asset\",\n          \"@type\": \"ps:Asset\",\n          \"dc:creator\": {\n            \"foaf:name\": \"John Doe\"\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"http://example.com/asset\",\n              \"@type\": \"ps:Asset\",\n              \"dc:creator\": {\n                \"@id\": \"_:b0\",\n                \"foaf:name\": \"John Doe\"\n              }\n            }\n          ]\n        }),\n        processingMode: 'json-ld-1.0'\n      },\n      'preserves single-use bnode identifiers if pruneBlankNodeIdentifiers=false': {\n        frame: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@id\": \"http://example.com/asset\",\n          \"@type\": \"ps:Asset\",\n          \"dc:creator\": {}\n        }),\n        input: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@id\": \"http://example.com/asset\",\n          \"@type\": \"ps:Asset\",\n          \"dc:creator\": {\n            \"foaf:name\": \"John Doe\"\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"dc\": \"http://purl.org/dc/terms/\",\n            \"dc:creator\": {\n              \"@type\": \"@id\"\n            },\n            \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n            \"ps\": \"http://purl.org/payswarm#\"\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"http://example.com/asset\",\n              \"@type\": \"ps:Asset\",\n              \"dc:creator\": {\n                \"@id\": \"_:b0\",\n                \"foaf:name\": \"John Doe\"\n              }\n            }\n          ]\n        }),\n        pruneBlankNodeIdentiers: false\n      },\n      'framing with @version: 1.1 prunes identifiers': {\n        frame: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://example.com#\",\n            \"ex\": \"http://example.org/\",\n            \"claim\": {\n              \"@id\": \"ex:claim\",\n              \"@container\": \"@graph\"\n            },\n            \"id\": \"@id\"\n          },\n          \"claim\": {}\n        }),\n        input: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://example.com#\",\n            \"ex\": \"http://example.org/\",\n            \"claim\": {\n              \"@id\": \"ex:claim\",\n              \"@container\": \"@graph\"\n            },\n            \"id\": \"@id\"\n          },\n          \"claim\": {\n            \"id\": \"ex:1\",\n            \"test\": \"foo\"\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"https://example.com#\",\n            \"ex\": \"http://example.org/\",\n            \"claim\": {\n              \"@id\": \"ex:claim\",\n              \"@container\": \"@graph\"\n            },\n            \"id\": \"@id\"\n          },\n          \"claim\": {\n            \"id\": \"ex:1\",\n            \"test\": \"foo\"\n          }\n        }),\n        processingMode: 'json-ld-1.1'\n      }\n    }.each do |title, params|\n      it title do\n        do_frame(params)\n      end\n    end\n  end\n\n  context \"problem cases\" do\n    {\n      'pr #20': {\n        frame: %({}),\n        input: %([\n          {\n            \"@id\": \"_:gregg\",\n            \"@type\": \"http://xmlns.com/foaf/0.1/Person\",\n            \"http://xmlns.com/foaf/0.1/name\": \"Gregg Kellogg\"\n          }, {\n            \"@id\": \"http://manu.sporny.org/#me\",\n            \"@type\": \"http://xmlns.com/foaf/0.1/Person\",\n            \"http://xmlns.com/foaf/0.1/knows\": {\"@id\": \"_:gregg\"},\n            \"http://xmlns.com/foaf/0.1/name\": \"Manu Sporny\"\n          }\n        ]),\n        output: %({\n          \"@graph\": [\n            {\n              \"@id\": \"_:b0\",\n              \"@type\": \"http://xmlns.com/foaf/0.1/Person\",\n              \"http://xmlns.com/foaf/0.1/name\": \"Gregg Kellogg\"\n            },\n            {\n              \"@id\": \"http://manu.sporny.org/#me\",\n              \"@type\": \"http://xmlns.com/foaf/0.1/Person\",\n              \"http://xmlns.com/foaf/0.1/knows\": {\n                \"@id\": \"_:b0\",\n                \"@type\": \"http://xmlns.com/foaf/0.1/Person\",\n                \"http://xmlns.com/foaf/0.1/name\": \"Gregg Kellogg\"\n              },\n              \"http://xmlns.com/foaf/0.1/name\": \"Manu Sporny\"\n            }\n          ]\n        })\n      },\n      'issue #28': {\n        frame: %({\n          \"@context\": {\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n            \"talksAbout\": {\n              \"@id\": \"http://www.myresource.com/ontology/1.0#talksAbout\",\n              \"@type\": \"@id\"\n            },\n            \"label\": {\n              \"@id\": \"rdfs:label\",\n              \"@language\": \"en\"\n            }\n          },\n          \"@id\": \"http://www.myresource/uuid\"\n        }),\n        input: %({\n          \"@context\": {\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\"\n          },\n          \"@id\": \"http://www.myresource/uuid\",\n          \"http://www.myresource.com/ontology/1.0#talksAbout\": [\n            {\n              \"@id\": \"http://rdf.freebase.com/ns/m.018w8\",\n              \"rdfs:label\": [\n                {\n                  \"@value\": \"Basketball\",\n                  \"@language\": \"en\"\n                }\n              ]\n            }\n          ]\n        }),\n        output: %({\n          \"@context\": {\n            \"rdfs\": \"http://www.w3.org/2000/01/rdf-schema#\",\n            \"talksAbout\": {\n              \"@id\": \"http://www.myresource.com/ontology/1.0#talksAbout\",\n              \"@type\": \"@id\"\n            },\n            \"label\": {\n              \"@id\": \"rdfs:label\",\n              \"@language\": \"en\"\n            }\n          },\n          \"@graph\": [\n            {\n              \"@id\": \"http://www.myresource/uuid\",\n              \"talksAbout\": {\n                \"@id\": \"http://rdf.freebase.com/ns/m.018w8\",\n                \"label\": \"Basketball\"\n              }\n            }\n          ]\n        })\n      },\n      'PR #663 - Multiple named graphs': {\n        frame: %({\n          \"@context\": {\n            \"@vocab\": \"http://example.com/\",\n            \"loves\": {\"@type\": \"@id\"},\n            \"unionOf\": {\n              \"@type\": \"@id\",\n              \"@id\": \"owl:unionOf\",\n              \"@container\": \"@list\"\n            },\n            \"Class\": \"owl:Class\"\n          },\n          \"@graph\": [\n            {\n              \"@explicit\": false,\n              \"@embed\": \"@once\",\n              \"@type\": [\"Act\", \"Class\"],\n              \"@graph\": [{\n                \"@explicit\": true,\n                \"@embed\": \"@always\",\n                \"@type\": \"Person\",\n                \"@id\": {},\n                \"loves\": {\"@embed\": \"@never\"}\n              }]\n            }\n          ]\n        }),\n        input: %({\n          \"@context\": {\n            \"@vocab\": \"http://example.com/\",\n            \"loves\": {\"@type\": \"@id\"},\n            \"unionOf\": {\n              \"@type\": \"@id\",\n              \"@id\": \"owl:unionOf\",\n              \"@container\": \"@list\"\n            },\n            \"Class\": \"owl:Class\"\n          },\n          \"@graph\": [{\n            \"@type\": \"Act\",\n            \"@graph\": [\n              {\"@id\": \"Romeo\", \"@type\": \"Person\"},\n              {\"@id\": \"Juliet\", \"@type\": \"Person\"}\n            ]\n          }, {\n            \"@id\": \"ActTwo\",\n            \"@type\": \"Act\",\n            \"@graph\": [\n              {\"@id\": \"Romeo\", \"@type\": \"Person\", \"loves\": \"Juliet\"},\n              {\"@id\": \"Juliet\", \"@type\": \"Person\", \"loves\": \"Romeo\"}\n            ]\n          }, {\n            \"@id\": \"Person\",\n            \"@type\": \"Class\",\n            \"unionOf\": {\n              \"@list\": [\n                {\"@id\": \"Montague\", \"@type\": \"Class\"},\n                {\"@id\": \"Capulet\", \"@type\": \"Class\"}\n              ]\n            }\n          }]\n        }),\n        output: %({\n          \"@context\": {\n            \"@vocab\": \"http://example.com/\",\n            \"loves\": {\"@type\": \"@id\"},\n            \"unionOf\": {\n              \"@type\": \"@id\",\n              \"@id\": \"owl:unionOf\",\n              \"@container\": \"@list\"\n            },\n            \"Class\": \"owl:Class\"\n          },\n          \"@graph\": [{\n            \"@id\": \"ActTwo\",\n            \"@type\": \"Act\",\n            \"@graph\": [\n              {\"@id\": \"Juliet\", \"@type\": \"Person\", \"loves\": \"Romeo\"},\n              {\"@id\": \"Romeo\", \"@type\": \"Person\", \"loves\": \"Juliet\"}\n            ]\n          }, {\n            \"@id\": \"Capulet\",\n            \"@type\": \"Class\"\n          }, {\n            \"@id\": \"Montague\",\n            \"@type\": \"Class\"\n          }, {\n            \"@id\": \"Person\",\n            \"@type\": \"Class\",\n            \"unionOf\": [\n              {\"@id\": \"Montague\", \"@type\": \"Class\"},\n              {\"@id\": \"Capulet\", \"@type\": \"Class\"}\n            ]\n          }, {\n            \"@type\": \"Act\",\n            \"@graph\": [\n              {\n                \"@id\": \"Juliet\",\n                \"@type\": \"Person\",\n                \"loves\": null\n              }, {\n                \"@id\": \"Romeo\",\n                \"@type\": \"Person\",\n                \"loves\": null\n              }\n            ]\n          }]\n        }),\n        processingMode: 'json-ld-1.1'\n      },\n      'w3c/json-ld-framing#5': {\n        frame: %({\n          \"@context\" : {\n            \"@vocab\" : \"http://purl.bdrc.io/ontology/core/\",\n            \"taxSubclassOf\" : {\n              \"@id\" : \"http://purl.bdrc.io/ontology/core/taxSubclassOf\",\n              \"@type\" : \"@id\"\n            },\n            \"bdr\" : \"http://purl.bdrc.io/resource/\",\n            \"children\": { \"@reverse\": \"http://purl.bdrc.io/ontology/core/taxSubclassOf\" }\n          },\n          \"@id\" : \"bdr:O9TAXTBRC201605\",\n          \"children\": {\n            \"children\": {\n              \"children\": {}\n            }\n          }\n        }),\n        input: %({\n          \"@context\": {\n            \"@vocab\": \"http://purl.bdrc.io/ontology/core/\",\n            \"taxSubclassOf\": {\n              \"@id\": \"http://purl.bdrc.io/ontology/core/taxSubclassOf\",\n              \"@type\": \"@id\"\n            },\n            \"bdr\": \"http://purl.bdrc.io/resource/\"\n          },\n          \"@graph\": [{\n            \"@id\": \"bdr:O9TAXTBRC201605\",\n            \"@type\": \"Taxonomy\"\n          }, {\n            \"@id\": \"bdr:O9TAXTBRC201605_0001\",\n            \"@type\": \"Taxonomy\",\n            \"taxSubclassOf\": \"bdr:O9TAXTBRC201605\"\n          }, {\n            \"@id\": \"bdr:O9TAXTBRC201605_0002\",\n            \"@type\": \"Taxonomy\",\n            \"taxSubclassOf\": \"bdr:O9TAXTBRC201605_0001\"\n          }, {\n            \"@id\": \"bdr:O9TAXTBRC201605_0010\",\n            \"@type\": \"Taxonomy\",\n            \"taxSubclassOf\": \"bdr:O9TAXTBRC201605\"\n          }]\n        }),\n        output: %({\n          \"@context\" : {\n            \"@vocab\" : \"http://purl.bdrc.io/ontology/core/\",\n            \"taxSubclassOf\" : {\n              \"@id\" : \"http://purl.bdrc.io/ontology/core/taxSubclassOf\",\n              \"@type\" : \"@id\"\n            },\n            \"bdr\" : \"http://purl.bdrc.io/resource/\",\n            \"children\": { \"@reverse\": \"http://purl.bdrc.io/ontology/core/taxSubclassOf\" }\n          },\n          \"@id\" : \"bdr:O9TAXTBRC201605\",\n          \"@type\": \"Taxonomy\",\n          \"children\": [{\n            \"@id\": \"bdr:O9TAXTBRC201605_0001\",\n            \"@type\": \"Taxonomy\",\n            \"taxSubclassOf\": \"bdr:O9TAXTBRC201605\",\n            \"children\": {\n              \"@id\": \"bdr:O9TAXTBRC201605_0002\",\n              \"@type\": \"Taxonomy\",\n              \"taxSubclassOf\": \"bdr:O9TAXTBRC201605_0001\"\n            }\n          }, {\n            \"@id\": \"bdr:O9TAXTBRC201605_0010\",\n            \"@type\": \"Taxonomy\",\n            \"taxSubclassOf\": \"bdr:O9TAXTBRC201605\"\n          }]\n        }),\n        processingMode: 'json-ld-1.1'\n      },\n      'issue json-ld-framing#30': {\n        input: %({\n          \"@context\": {\"eg\": \"https://example.org/ns/\"},\n          \"@id\": \"https://example.org/what\",\n          \"eg:sameAs\": \"https://example.org/what\",\n          \"eg:age\": 42\n        }),\n        frame: %({\n          \"@context\": {\"eg\": \"https://example.org/ns/\"},\n          \"@id\": \"https://example.org/what\"\n        }),\n        output: %({\n          \"@context\": {\"eg\": \"https://example.org/ns/\"},\n          \"@graph\": [{\n            \"@id\": \"https://example.org/what\",\n            \"eg:age\": 42,\n            \"eg:sameAs\": \"https://example.org/what\"\n          }]\n        })\n      },\n      'issue json-ld-framing#64': {\n        input: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\"\n          },\n          \"@id\": \"http://example.org/1\",\n          \"@type\": \"HumanMadeObject\",\n          \"produced_by\": {\n            \"@type\": \"Production\",\n            \"_label\": \"Top Production\",\n            \"part\": {\n              \"@type\": \"Production\",\n              \"_label\": \"Test Part\"\n            }\n          }\n        }),\n        frame: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\",\n            \"Production\": {\n              \"@context\": {\n                \"part\": {\n                  \"@type\": \"@id\",\n                  \"@container\": \"@set\"\n                }\n              }\n            }\n          },\n          \"@id\": \"http://example.org/1\"\n        }),\n        output: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\",\n            \"Production\": {\n              \"@context\": {\n                \"part\": {\n                  \"@type\": \"@id\",\n                  \"@container\": \"@set\"\n                }\n              }\n            }\n          },\n          \"@id\": \"http://example.org/1\",\n          \"@type\": \"HumanMadeObject\",\n          \"produced_by\": {\n            \"@type\": \"Production\",\n            \"part\": [{\n              \"@type\": \"Production\",\n              \"_label\": \"Test Part\"\n            }],\n            \"_label\": \"Top Production\"\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      'issue json-ld-framing#27': {\n        input: %({\n          \"@id\": \"ex:cred\",\n          \"ex:subject\": {\n            \"@id\": \"ex:Subject\",\n            \"ex:name\": \"the subject\",\n            \"ex:knows\": {\n              \"@id\": \"ex:issuer\",\n              \"ex:name\": \"Someone else\"\n            }\n          },\n          \"ex:proof\": {\n            \"@graph\": {\n              \"@type\": \"ex:Proof\",\n              \"ex:name\": \"the proof\",\n              \"ex:signer\": [{\n                \"@id\": \"ex:Subject\",\n                \"ex:name\": \"something different\"\n              }]\n            }\n          }\n        }),\n        frame: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"proof\": {\"@id\": \"ex:proof\", \"@container\": \"@graph\"}\n          },\n          \"@graph\": {\n            \"subject\": {},\n            \"proof\": {}\n          }\n        }),\n        output: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"proof\": {\n              \"@id\": \"ex:proof\",\n              \"@container\": \"@graph\"\n            }\n          },\n          \"@id\": \"ex:cred\",\n          \"ex:subject\": {\n            \"@id\": \"ex:Subject\",\n            \"ex:name\": \"the subject\",\n            \"ex:knows\": {\n              \"@id\": \"ex:issuer\",\n              \"ex:name\": \"Someone else\"\n            }\n          },\n          \"proof\": {\n            \"@type\": \"ex:Proof\",\n            \"ex:name\": \"the proof\",\n            \"ex:signer\": {\n              \"@id\": \"ex:Subject\",\n              \"ex:name\": \"something different\"\n            }\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      'missing types': {\n        input: %({\n            \"@context\": {\n              \"ex\": \"http://example.com#\",\n              \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n            },\n            \"@graph\": [{\n              \"@id\": \"ex:graph1\",\n              \"@graph\": [{\n                \"@id\": \"ex:entity1\",\n                \"@type\": [\"ex:Type1\",\"ex:Type2\"],\n                \"ex:title\": \"some title\",\n                \"ex:multipleValues\": \"ex:One\"\n            }]\n          }, {\n            \"@id\": \"ex:graph2\",\n            \"@graph\": [{\n              \"@id\": \"ex:entity1\",\n              \"@type\": \"ex:Type3\",\n              \"ex:tags\": \"tag1 tag2\",\n              \"ex:multipleValues\": [\"ex:Two\",\"ex:Three\"]\n            }]\n          }]\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.com#\",\n            \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n          },\n          \"@id\": \"ex:entity1\",\n          \"@type\": [\"ex:Type1\", \"ex:Type2\", \"ex:Type3\"],\n          \"ex:multipleValues\": [\"ex:One\", \"ex:Two\",\"ex:Three\"],\n          \"ex:tags\": \"tag1 tag2\",\n          \"ex:title\": \"some title\"\n        }),\n        frame: %({\n          \"@context\": {\n            \"ex\": \"http://example.com#\",\n            \"rdf\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\"\n          },\n          \"@id\": \"ex:entity1\"\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      \"don't embed list elements\": {\n        frame: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"ex:embed\": {\n            \"@list\": [{\"@embed\": \"@never\"}]\n          }\n        }),\n        input: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"ex:embed\": {\n            \"@list\": [{\n              \"@id\": \"ex:Sub2\",\n              \"ex:prop\": \"property\"\n            }]\n          }\n        }),\n        output: %({\n          \"@context\": {\"ex\": \"http://example.org/\"},\n          \"@id\": \"ex:Sub1\",\n          \"ex:embed\": {\"@list\": [{\"@id\": \"ex:Sub2\"}]}\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      'issue #142': {\n        input: %({\n          \"@context\":{\n            \"ex\":\"http://example.org/vocab#\",\n            \"ex:info\":{\"@type\":\"@json\"},\n            \"ex:other\":{\"@type\":\"@json\"}\n          },\n          \"@id\":\"http://example.org/test/#library\",\n          \"@type\":\"ex:Library\",\n          \"ex:info\":{\n            \"author\":\"JOHN\",\n            \"pages\":200\n          },\n          \"ex:other\":{\n            \"publisher\":\"JANE\"\n          }\n        }),\n        frame: %({\n          \"@context\":{\n            \"ex\":\"http://example.org/vocab#\",\n            \"ex:info\":{\"@type\":\"@json\"},\n            \"ex:other\":{\"@type\":\"@json\"}\n          },\n          \"http://example.org/vocab#info\":{}\n        }),\n        output: %({\n          \"@context\": {\n            \"ex\": \"http://example.org/vocab#\",\n            \"ex:info\": {\"@type\": \"@json\"},\n            \"ex:other\": {\"@type\": \"@json\"}\n          },\n          \"@id\": \"http://example.org/test/#library\",\n          \"@type\": \"ex:Library\",\n          \"ex:info\": {\n            \"author\": \"JOHN\",\n            \"pages\": 200\n          },\n          \"ex:other\": {\n            \"publisher\": \"JANE\"\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      },\n      \"ruby-rdf/json-ld#62\": {\n        input: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\"\n          },\n          \"@type\": \"Event\",\n          \"location\": {\n            \"@id\": \"http://kg.artsdata.ca/resource/K11-200\"\n          }\n        }),\n        frame: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\",\n            \"location\": {\n              \"@type\": \"@id\",\n              \"@container\": \"@type\"\n            }\n          },\n          \"@type\": \"Event\"\n        }),\n        output: %({\n          \"@context\": {\n            \"@vocab\": \"http://schema.org/\",\n            \"location\": {\n              \"@type\": \"@id\",\n              \"@container\": \"@type\"\n            }\n          },\n          \"@type\": \"Event\",\n          \"location\": {\n            \"@none\": \"http://kg.artsdata.ca/resource/K11-200\"\n          }\n        }),\n        processingMode: \"json-ld-1.1\"\n      }\n    }.each do |title, params|\n      it title do\n        do_frame(params)\n      end\n    end\n  end\n\n  def do_frame(params)\n    input = params[:input]\n    frame = params[:frame]\n    output = params[:output]\n    params = { processingMode: 'json-ld-1.0' }.merge(params)\n    input = JSON.parse(input) if input.is_a?(String)\n    frame = JSON.parse(frame) if frame.is_a?(String)\n    output = JSON.parse(output) if output.is_a?(String)\n    jld = nil\n    if params[:write]\n      expect { jld = JSON::LD::API.frame(input, frame, logger: logger, **params) }.to write(params[:write]).to(:error)\n    else\n      expect { jld = JSON::LD::API.frame(input, frame, logger: logger, **params) }.not_to write.to(:error)\n    end\n    expect(jld).to produce_jsonld(output, logger)\n\n    # Compare expanded jld/output too to make sure list values remain ordered\n    exp_jld = JSON::LD::API.expand(jld, processingMode: 'json-ld-1.1')\n    exp_output = JSON::LD::API.expand(output, processingMode: 'json-ld-1.1')\n    expect(exp_jld).to produce_jsonld(exp_output, logger)\n  rescue JSON::LD::JsonLdError => e\n    raise(\"#{e.class}: #{e.message}\\n\" \\\n          \"#{logger}\\n\" \\\n          \"Backtrace:\\n#{e.backtrace.join(\"\\n\")}\")\n  end\nend\n"
  },
  {
    "path": "spec/from_rdf_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/spec/writer'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".fromRdf\" do\n    context \"simple tests\" do\n      it \"One subject IRI object\" do\n        input = %(<http://a/b> <http://a/c> <http://a/d> .)\n        expect(serialize(input)).to produce_jsonld([\n                                                     {\n                                                       '@id' => \"http://a/b\",\n                                                       \"http://a/c\" => [{ \"@id\" => \"http://a/d\" }]\n                                                     }\n                                                   ], logger)\n      end\n\n      it \"generates object list\" do\n        input = %(@prefix : <http://example.com/> . :b :c :d, :e .)\n        expect(serialize(input))\n          .to produce_jsonld([{\n            '@id' => \"http://example.com/b\",\n            \"http://example.com/c\" => [\n              { \"@id\" => \"http://example.com/d\" },\n              { \"@id\" => \"http://example.com/e\" }\n            ]\n          }], logger)\n      end\n\n      it \"generates property list\" do\n        input = %(@prefix : <http://example.com/> . :b :c :d; :e :f .)\n        expect(serialize(input))\n          .to produce_jsonld([{\n            '@id' => \"http://example.com/b\",\n            \"http://example.com/c\" => [{ \"@id\" => \"http://example.com/d\" }],\n            \"http://example.com/e\" => [{ \"@id\" => \"http://example.com/f\" }]\n          }], logger)\n      end\n\n      it \"serializes multiple subjects\" do\n        input = '\n          @prefix : <http://www.w3.org/2006/03/test-description#> .\n          @prefix dc: <http://purl.org/dc/elements/1.1/> .\n          <test-cases/0001> a :TestCase .\n          <test-cases/0002> a :TestCase .\n        '\n        expect(serialize(input))\n          .to produce_jsonld([\n                               { '@id' => \"test-cases/0001\",\n                                 '@type' => [\"http://www.w3.org/2006/03/test-description#TestCase\"] },\n                               { '@id' => \"test-cases/0002\", '@type' => [\"http://www.w3.org/2006/03/test-description#TestCase\"] }\n                             ], logger)\n      end\n    end\n\n    context \"literals\" do\n      context \"coercion\" do\n        it \"typed literal\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b \"foo\"^^ex:d .)\n          expect(serialize(input)).to produce_jsonld([\n                                                       {\n                                                         '@id' => \"http://example.com/a\",\n                                                         \"http://example.com/b\" => [{ \"@value\" => \"foo\",\n                                                                                      \"@type\" => \"http://example.com/d\" }]\n                                                       }\n                                                     ], logger)\n        end\n\n        it \"integer\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b 1 .)\n          expect(serialize(input, useNativeTypes: true)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => 1 }]\n          }], logger)\n        end\n\n        it \"integer (non-native)\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b 1 .)\n          expect(serialize(input, useNativeTypes: false)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => \"1\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#integer\" }]\n          }], logger)\n        end\n\n        it \"boolean\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b true .)\n          expect(serialize(input, useNativeTypes: true)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => true }]\n          }], logger)\n        end\n\n        it \"boolean (non-native)\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b true .)\n          expect(serialize(input, useNativeTypes: false)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => \"true\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#boolean\" }]\n          }], logger)\n        end\n\n        it \"decmal\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b 1.0 .)\n          expect(serialize(input, useNativeTypes: true)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => \"1.0\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#decimal\" }]\n          }], logger)\n        end\n\n        it \"double\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b 1.0e0 .)\n          expect(serialize(input, useNativeTypes: true)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => 1.0E0 }]\n          }], logger)\n        end\n\n        it \"double (non-native)\" do\n          input = %(@prefix ex: <http://example.com/> . ex:a ex:b 1.0e0 .)\n          expect(serialize(input, useNativeTypes: false)).to produce_jsonld([{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@value\" => \"1.0E0\", \"@type\" => \"http://www.w3.org/2001/XMLSchema#double\" }]\n          }], logger)\n        end\n      end\n\n      context \"datatyped (non-native)\" do\n        {\n          integer: 1,\n          unsignedInteger: 1,\n          nonNegativeInteger: 1,\n          float: 1,\n          nonPositiveInteger: -1,\n          negativeInteger: -1\n        }.each do |t, v|\n          it t.to_s do\n            input = %(\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              @prefix ex: <http://example.com/> .\n              ex:a ex:b \"#{v}\"^^xsd:#{t} .\n            )\n            expect(serialize(input, useNativeTypes: false)).to produce_jsonld([{\n              '@id' => \"http://example.com/a\",\n              \"http://example.com/b\" => [{ \"@value\" => v.to_s, \"@type\" => \"http://www.w3.org/2001/XMLSchema##{t}\" }]\n            }], logger)\n          end\n        end\n      end\n\n      it \"encodes language literal\" do\n        input = %(@prefix ex: <http://example.com/> . ex:a ex:b \"foo\"@en-us .)\n        expect(serialize(input)).to produce_jsonld([{\n          '@id' => \"http://example.com/a\",\n          \"http://example.com/b\" => [{ \"@value\" => \"foo\", \"@language\" => \"en-us\" }]\n        }], logger)\n      end\n\n      context \"with @type: @json\" do\n        {\n          true => {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#bool\": [{\"@value\": true, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:bool \"true\"^^rdf:JSON .\n            )\n          },\n          false => {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#bool\": [{\"@value\": false, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:bool \"false\"^^rdf:JSON .\n            )\n          },\n          double: {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#double\": [{\"@value\": 1.23E0, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:double \"1.23E0\"^^rdf:JSON .\n            )\n          },\n          'double-zero': {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#double\": [{\"@value\": 0, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:double \"0.0E0\"^^rdf:JSON .\n            )\n          },\n          integer: {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#integer\": [{\"@value\": 123, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:integer \"123\"^^rdf:JSON .\n            )\n          },\n          string: {\n            output: %([{\n              \"@id\": \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#string\": [{\n                \"@value\": \"string\",\n                \"@type\": \"@json\"\n              }]\n            }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:string \"\\\\\"string\\\\\"\"^^rdf:JSON .\n            )\n          },\n          null: {\n            output: %([{\n              \"@id\": \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#null\": [{\n                \"@value\": null,\n                \"@type\": \"@json\"\n              }]\n            }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:null \"null\"^^rdf:JSON .\n            )\n          },\n          object: {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#object\": [{\"@value\": {\"foo\": \"bar\"}, \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:object \"\"\"{\"foo\":\"bar\"}\"\"\"^^rdf:JSON .\n            )\n          },\n          array: {\n            output: %([{\n               \"@id\": \"http://example.org/vocab#id\",\n               \"http://example.org/vocab#array\": [{\"@value\": [{\"foo\": \"bar\"}], \"@type\": \"@json\"}]\n             }]),\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:array \"\"\"[{\"foo\":\"bar\"}]\"\"\"^^rdf:JSON .\n            )\n          }\n        }.each do |title, params|\n          params[:input] = RDF::Graph.new << RDF::Turtle::Reader.new(params[:input])\n          it(title) { do_fromRdf(processingMode: \"json-ld-1.1\", **params) }\n        end\n      end\n\n      context \"extendedRepresentation: true\" do\n        {\n          true => {\n            output: [{\n              \"@id\" => \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#bool\" => [{ \"@value\" => RDF::Literal(true) }]\n            }],\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:bool true .\n            )\n          },\n          false => {\n            output: [{\n              \"@id\" => \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#bool\" => [{ \"@value\" => RDF::Literal(false) }]\n            }],\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:bool false .\n            )\n          },\n          double: {\n            output: [{\n              \"@id\" => \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#double\" => [{ \"@value\" => RDF::Literal(1.23E0) }]\n            }],\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:double 1.23E0 .\n            )\n          },\n          'double-zero': {\n            output: [{\n              \"@id\" => \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#double\" => [{ \"@value\" => RDF::Literal(0, datatype: RDF::XSD.double) }]\n            }],\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:double 0.0E0 .\n            )\n          },\n          integer: {\n            output: [{\n              \"@id\" => \"http://example.org/vocab#id\",\n              \"http://example.org/vocab#integer\" => [{ \"@value\" => RDF::Literal(123) }]\n            }],\n            input: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              ex:id ex:integer 123 .\n            )\n          }\n        }.each do |title, params|\n          params[:input] = RDF::Graph.new << RDF::Turtle::Reader.new(params[:input])\n          it(title) {\n            do_fromRdf(processingMode: \"json-ld-1.1\",\n              useNativeTypes: true,\n              extendedRepresentation: true,\n            **params)\n          }\n        end\n      end\n    end\n\n    context \"anons\" do\n      it \"generates bare anon\" do\n        input = %(@prefix : <http://example.com/> . _:a :a :b .)\n        expect(serialize(input)).to produce_jsonld([\n                                                     {\n                                                       \"@id\" => \"_:a\",\n                                                       \"http://example.com/a\" => [{ \"@id\" => \"http://example.com/b\" }]\n                                                     }\n                                                   ], logger)\n      end\n\n      it \"generates anon as object\" do\n        input = %(@prefix : <http://example.com/> . :a :b _:a . _:a :c :d .)\n        expect(serialize(input)).to produce_jsonld([\n                                                     {\n                                                       \"@id\" => \"_:a\",\n                                                       \"http://example.com/c\" => [{ \"@id\" => \"http://example.com/d\" }]\n                                                     },\n                                                     {\n                                                       \"@id\" => \"http://example.com/a\",\n                                                       \"http://example.com/b\" => [{ \"@id\" => \"_:a\" }]\n                                                     }\n                                                   ], logger)\n      end\n    end\n\n    context \"lists\" do\n      {\n        \"literal list\" => {\n          input: '\n            @prefix : <http://example.com/> .\n            @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n            :a :b (\"apple\" \"banana\")  .\n          ',\n          output: [{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{\n              \"@list\" => [\n                { \"@value\" => \"apple\" },\n                { \"@value\" => \"banana\" }\n              ]\n            }]\n          }]\n        },\n        \"iri list\" => {\n          input: '@prefix : <http://example.com/> . :a :b (:c) .',\n          output: [{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{\n              \"@list\" => [\n                { \"@id\" => \"http://example.com/c\" }\n              ]\n            }]\n          }]\n        },\n        \"empty list\" => {\n          input: '@prefix : <http://example.com/> . :a :b () .',\n          output: [{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@list\" => [] }]\n          }]\n        },\n        \"single element list\" => {\n          input: '@prefix : <http://example.com/> . :a :b ( \"apple\" ) .',\n          output: [{\n            '@id' => \"http://example.com/a\",\n            \"http://example.com/b\" => [{ \"@list\" => [{ \"@value\" => \"apple\" }] }]\n          }]\n        },\n        \"single element list without @type\" => {\n          input: '@prefix : <http://example.com/> . :a :b ( _:a ) . _:a :b \"foo\" .',\n          output: [\n            {\n              '@id' => \"_:a\",\n              \"http://example.com/b\" => [{ \"@value\" => \"foo\" }]\n            },\n            {\n              '@id' => \"http://example.com/a\",\n              \"http://example.com/b\" => [{ \"@list\" => [{ \"@id\" => \"_:a\" }] }]\n            }\n          ]\n        },\n        \"multiple graphs with shared BNode\" => {\n          input: '\n            <http://www.example.com/z> <http://www.example.com/q> _:z0 <http://www.example.com/G> .\n            _:z0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"cell-A\" <http://www.example.com/G> .\n            _:z0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:z1 <http://www.example.com/G> .\n            _:z1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"cell-B\" <http://www.example.com/G> .\n            _:z1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://www.example.com/G> .\n            <http://www.example.com/x> <http://www.example.com/p> _:z1 <http://www.example.com/G1> .\n          ',\n          output: [{\n            \"@id\" => \"http://www.example.com/G\",\n            \"@graph\" => [{\n              \"@id\" => \"_:z0\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\" => [{ \"@value\" => \"cell-A\" }],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\" => [{ \"@id\" => \"_:z1\" }]\n            }, {\n              \"@id\" => \"_:z1\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\" => [{ \"@value\" => \"cell-B\" }],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\" => [{ \"@list\" => [] }]\n            }, {\n              \"@id\" => \"http://www.example.com/z\",\n              \"http://www.example.com/q\" => [{ \"@id\" => \"_:z0\" }]\n            }]\n          },\n                   {\n                     \"@id\" => \"http://www.example.com/G1\",\n                     \"@graph\" => [{\n                       \"@id\" => \"http://www.example.com/x\",\n                       \"http://www.example.com/p\" => [{ \"@id\" => \"_:z1\" }]\n                     }]\n                   }],\n          reader: RDF::NQuads::Reader\n        },\n        \"multiple graphs with shared BNode (at head)\" => {\n          input: '\n            <http://www.example.com/z> <http://www.example.com/q> _:z0 <http://www.example.com/G> .\n            _:z0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"cell-A\" <http://www.example.com/G> .\n            _:z0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:z1 <http://www.example.com/G> .\n            _:z1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"cell-B\" <http://www.example.com/G> .\n            _:z1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://www.example.com/G> .\n            <http://www.example.com/z> <http://www.example.com/q> _:z0 <http://www.example.com/G1> .\n          ',\n          output: [{\n            \"@id\" => \"http://www.example.com/G\",\n            \"@graph\" => [{\n              \"@id\" => \"_:z0\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#first\" => [{ \"@value\" => \"cell-A\" }],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#rest\" => [{ \"@list\" => [{ \"@value\" => \"cell-B\" }] }]\n            }, {\n              \"@id\" => \"http://www.example.com/z\",\n              \"http://www.example.com/q\" => [{ \"@id\" => \"_:z0\" }]\n            }]\n          },\n                   {\n                     \"@id\" => \"http://www.example.com/G1\",\n                     \"@graph\" => [{\n                       \"@id\" => \"http://www.example.com/z\",\n                       \"http://www.example.com/q\" => [{ \"@id\" => \"_:z0\" }]\n                     }]\n                   }],\n          reader: RDF::NQuads::Reader\n        },\n        \"@list containing empty @list\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/property> (()) .\n          ),\n          output: %([{\n            \"@id\": \"http://example.com/a\",\n            \"http://example.com/property\": [{\"@list\": [{\"@list\": []}]}]\n          }]),\n          reader: RDF::Turtle::Reader\n        },\n        \"@list containing multiple lists\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/property> ((\"a\") (\"b\")) .\n          ),\n          output: %([{\n            \"@id\": \"http://example.com/a\",\n            \"http://example.com/property\": [{\"@list\": [\n              {\"@list\": [{\"@value\": \"a\"}]},\n              {\"@list\": [{\"@value\": \"b\"}]}\n            ]}]\n          }]),\n          reader: RDF::Turtle::Reader\n        },\n        \"0008a\" => {\n          input: %(\n          <http://example.com> <http://example.com/property> _:outerlist .\n          _:outerlist <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:lista .\n          _:outerlist <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b0 .\n\n          _:lista <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"a1\" .\n          _:lista <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:a2 .\n          _:a2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"a2\" .\n          _:a2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:a3 .\n          _:a3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"a3\" .\n          _:a3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n\n          _:c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:c1 .\n          _:c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          _:c1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"c1\" .\n          _:c1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:c2 .\n          _:c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"c2\" .\n          _:c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:c3 .\n          _:c3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"c3\" .\n          _:c3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n\n          _:b0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:b1 .\n          _:b0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:c0 .\n          _:b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"b1\" .\n          _:b1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b2 .\n          _:b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"b2\" .\n          _:b2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b3 .\n          _:b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"b3\" .\n          _:b3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          ),\n          output: JSON.parse(%([\n            {\n              \"@id\": \"http://example.com\",\n              \"http://example.com/property\": [\n                {\n                  \"@list\": [\n                    {\"@list\": [{\"@value\": \"a1\"}, {\"@value\": \"a2\"}, {\"@value\": \"a3\"}]},\n                    {\"@list\": [{\"@value\": \"b1\"}, {\"@value\": \"b2\"}, {\"@value\": \"b3\"}]},\n                    {\"@list\": [{\"@value\": \"c1\"}, {\"@value\": \"c2\"}, {\"@value\": \"c3\"}]}\n                  ]\n                }\n              ]\n            }\n          ])),\n          reader: RDF::NQuads::Reader\n        }\n      }.each do |name, params|\n        it name.to_s do\n          do_fromRdf(params)\n        end\n      end\n    end\n\n    context \"quads\" do\n      {\n        \"simple named graph\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/b> <http://example.com/c> <http://example.com/U> .\n          ),\n          output: [\n            {\n              \"@id\" => \"http://example.com/U\",\n              \"@graph\" => [{\n                \"@id\" => \"http://example.com/a\",\n                \"http://example.com/b\" => [{ \"@id\" => \"http://example.com/c\" }]\n              }]\n            }\n          ]\n        },\n        \"with properties\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/b> <http://example.com/c> <http://example.com/U> .\n            <http://example.com/U> <http://example.com/d> <http://example.com/e> .\n          ),\n          output: [\n            {\n              \"@id\" => \"http://example.com/U\",\n              \"@graph\" => [{\n                \"@id\" => \"http://example.com/a\",\n                \"http://example.com/b\" => [{ \"@id\" => \"http://example.com/c\" }]\n              }],\n              \"http://example.com/d\" => [{ \"@id\" => \"http://example.com/e\" }]\n            }\n          ]\n        },\n        \"with lists\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/b> _:a <http://example.com/U> .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.com/c> <http://example.com/U> .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://example.com/U> .\n            <http://example.com/U> <http://example.com/d> _:b .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.com/e> .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          ),\n          output: [\n            {\n              \"@id\" => \"http://example.com/U\",\n              \"@graph\" => [{\n                \"@id\" => \"http://example.com/a\",\n                \"http://example.com/b\" => [{ \"@list\" => [{ \"@id\" => \"http://example.com/c\" }] }]\n              }],\n              \"http://example.com/d\" => [{ \"@list\" => [{ \"@id\" => \"http://example.com/e\" }] }]\n            }\n          ]\n        },\n        \"Two Graphs with same subject and lists\" => {\n          input: %(\n            <http://example.com/a> <http://example.com/b> _:a <http://example.com/U> .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.com/c> <http://example.com/U> .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://example.com/U> .\n            <http://example.com/a> <http://example.com/b> _:b <http://example.com/V> .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://example.com/e> <http://example.com/V> .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <http://example.com/V> .\n          ),\n          output: [\n            {\n              \"@id\" => \"http://example.com/U\",\n              \"@graph\" => [\n                {\n                  \"@id\" => \"http://example.com/a\",\n                  \"http://example.com/b\" => [{\n                    \"@list\" => [{ \"@id\" => \"http://example.com/c\" }]\n                  }]\n                }\n              ]\n            },\n            {\n              \"@id\" => \"http://example.com/V\",\n              \"@graph\" => [\n                {\n                  \"@id\" => \"http://example.com/a\",\n                  \"http://example.com/b\" => [{\n                    \"@list\" => [{ \"@id\" => \"http://example.com/e\" }]\n                  }]\n                }\n              ]\n            }\n          ]\n        }\n      }.each_pair do |name, params|\n        it name.to_s do\n          do_fromRdf(params.merge(reader: RDF::NQuads::Reader))\n        end\n      end\n    end\n\n    context \"@direction\" do\n      context \"rdfDirection: null\" do\n        {\n          'no language rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"no language\"^^<https://www.w3.org/ns/i18n#_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"no language\", \"@type\": \"https://www.w3.org/ns/i18n#_rtl\"}]\n            }]'\n          },\n          'no language rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"no language\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@id\": \"_:cl1\"}]\n            }, {\n              \"@id\": \"_:cl1\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#value\": [{\"@value\": \"no language\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#direction\": [{\"@value\": \"rtl\"}]\n            }]'\n          },\n          'en-US rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"en-US\"^^<https://www.w3.org/ns/i18n#en-us_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"en-US\", \"@type\": \"https://www.w3.org/ns/i18n#en-us_rtl\"}]\n            }]'\n          },\n          'en-US rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"en-US\";\n                rdf:language \"en-us\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@id\": \"_:cl1\"}]\n            }, {\n              \"@id\": \"_:cl1\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#value\": [{\"@value\": \"en-US\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#language\": [{\"@value\": \"en-us\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#direction\": [{\"@value\": \"rtl\"}]\n            }]'\n          }\n        }.each_pair do |name, params|\n          it name do\n            do_fromRdf(params.merge(reader: RDF::Turtle::Reader, rdfDirection: nil))\n          end\n        end\n      end\n\n      context \"rdfDirection: i18n-datatype\" do\n        {\n          'no language rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"no language\"^^<https://www.w3.org/ns/i18n#_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"no language\", \"@direction\": \"rtl\"}]\n            }]'\n          },\n          'no language rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"no language\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@id\": \"_:cl1\"}]\n            }, {\n              \"@id\": \"_:cl1\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#value\": [{\"@value\": \"no language\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#direction\": [{\"@value\": \"rtl\"}]\n            }]'\n          },\n          'en-US rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"en-US\"^^<https://www.w3.org/ns/i18n#en-US_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"en-US\", \"@language\": \"en-US\", \"@direction\": \"rtl\"}]\n            }]'\n          },\n          'en-US rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"en-US\";\n                rdf:language \"en-US\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@id\": \"_:cl1\"}]\n            }, {\n              \"@id\": \"_:cl1\",\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#value\": [{\"@value\": \"en-US\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#language\": [{\"@value\": \"en-US\"}],\n              \"http://www.w3.org/1999/02/22-rdf-syntax-ns#direction\": [{\"@value\": \"rtl\"}]\n            }]'\n          }\n        }.each_pair do |name, params|\n          it name do\n            do_fromRdf(params.merge(reader: RDF::Turtle::Reader, rdfDirection: 'i18n-datatype',\n              processingMode: 'json-ld-1.1'))\n          end\n        end\n      end\n\n      context \"rdfDirection: compound-literal\" do\n        {\n          'no language rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"no language\"^^<https://www.w3.org/ns/i18n#_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"no language\", \"@type\": \"https://www.w3.org/ns/i18n#_rtl\"}]\n            }]'\n          },\n          'no language rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"no language\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"no language\", \"@direction\": \"rtl\"}]\n            }]'\n          },\n          'en-US rtl datatype': {\n            input: '\n              <http://example.com/a> <http://example.org/label> \"en-US\"^^<https://www.w3.org/ns/i18n#en-us_rtl> .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"en-US\", \"@type\": \"https://www.w3.org/ns/i18n#en-us_rtl\"}]\n            }]'\n          },\n          'en-US rtl compound-literal': {\n            input: '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              <http://example.com/a> <http://example.org/label> _:cl1 .\n\n              _:cl1 rdf:value \"en-US\";\n                rdf:language \"en-us\";\n                rdf:direction \"rtl\" .\n            ',\n            output: '[{\n              \"@id\": \"http://example.com/a\",\n              \"http://example.org/label\": [{\"@value\": \"en-US\", \"@language\": \"en-us\", \"@direction\": \"rtl\"}]\n            }]'\n          }\n        }.each_pair do |name, params|\n          it name do\n            do_fromRdf(params.merge(reader: RDF::Turtle::Reader, rdfDirection: 'compound-literal',\n              processingMode: 'json-ld-1.1'))\n          end\n        end\n      end\n    end\n\n    context \"RDF-star\" do\n      {\n        'subject-iii': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::URI('http://example/o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'subject-iib': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Node.new('o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'subject-iil': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Literal('o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"http://example/s1\",\n              \"http://example/p1\": [{\"@value\": \"o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'subject-bii': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::Node('s1'),\n              RDF::URI('http://example/p1'),\n              RDF::URI('http://example/o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"_:s1\",\n              \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'subject-bib': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::Node('s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Node.new('o1')\n            ),\n            RDF::URI('http://example/p'), RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"_:s1\",\n              \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'subject-bil': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::Node('s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Literal('o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": \"_:s1\",\n              \"http://example/p1\": [{\"@value\": \"o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        },\n        'object-iii': {\n          input: RDF::Statement(\n            RDF::URI('http://example/s'),\n            RDF::URI('http://example/p'),\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::URI('http://example/o1')\n            )\n          ),\n          output: %([{\n            \"@id\": \"http://example/s\",\n            \"http://example/p\": [{\n              \"@id\": {\n                \"@id\": \"http://example/s1\",\n                \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n              }\n            }]\n          }])\n        },\n        'object-iib': {\n          input: RDF::Statement(\n            RDF::URI('http://example/s'),\n            RDF::URI('http://example/p'),\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Node.new('o1')\n            )\n          ),\n          output: %([{\n            \"@id\": \"http://example/s\",\n            \"http://example/p\": [{\n              \"@id\": {\n                \"@id\": \"http://example/s1\",\n                \"http://example/p1\": [{\"@id\": \"_:o1\"}]\n              }\n            }]\n          }])\n        },\n        'object-iil': {\n          input: RDF::Statement(\n            RDF::URI('http://example/s'),\n            RDF::URI('http://example/p'),\n            RDF::Statement(\n              RDF::URI('http://example/s1'),\n              RDF::URI('http://example/p1'),\n              RDF::Literal('o1')\n            )\n          ),\n          output: %([{\n            \"@id\": \"http://example/s\",\n            \"http://example/p\": [{\n              \"@id\": {\n                \"@id\": \"http://example/s1\",\n                \"http://example/p1\": [{\"@value\": \"o1\"}]\n              }\n            }]\n          }])\n        },\n        'recursive-subject': {\n          input: RDF::Statement(\n            RDF::Statement(\n              RDF::Statement(\n                RDF::URI('http://example/s2'),\n                RDF::URI('http://example/p2'),\n                RDF::URI('http://example/o2')\n              ),\n              RDF::URI('http://example/p1'),\n              RDF::URI('http://example/o1')\n            ),\n            RDF::URI('http://example/p'),\n            RDF::URI('http://example/o')\n          ),\n          output: %([{\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"http://example/s2\",\n                \"http://example/p2\": [{\"@id\": \"http://example/o2\"}]\n              },\n              \"http://example/p1\": [{\"@id\": \"http://example/o1\"}]\n            },\n            \"http://example/p\": [{\"@id\": \"http://example/o\"}]\n          }])\n        }\n      }.each do |name, params|\n        it name do\n          graph = RDF::Graph.new { |g| g << params[:input] }\n          do_fromRdf(params.merge(input: graph, prefixes: { ex: 'http://example/' }))\n        end\n      end\n    end\n\n    context \"problems\" do\n      {\n        \"xsd:boolean as value\" => {\n          input: %(\n            @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n            @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n            <http://data.wikia.com/terms#playable> rdfs:range xsd:boolean .\n          ),\n          output: [{\n            \"@id\" => \"http://data.wikia.com/terms#playable\",\n            \"http://www.w3.org/2000/01/rdf-schema#range\" => [\n              { \"@id\" => \"http://www.w3.org/2001/XMLSchema#boolean\" }\n            ]\n          }]\n        }\n      }.each do |t, params|\n        it t.to_s do\n          do_fromRdf(params)\n        end\n      end\n    end\n  end\n\n  def parse(input, **options)\n    reader = options[:reader] || RDF::TriG::Reader\n    reader.new(input, **options, &:each_statement).to_a.extend(RDF::Enumerable)\n  end\n\n  # Serialize ntstr to a string and compare against regexps\n  def serialize(ntstr, **options)\n    logger.info ntstr if ntstr.is_a?(String)\n    g = ntstr.is_a?(String) ? parse(ntstr, **options) : ntstr\n    logger.info g.dump(:trig)\n    statements = g.each_statement.to_a\n    JSON::LD::API.fromRdf(statements, logger: logger, **options)\n  end\n\n  def do_fromRdf(params)\n    input = params[:input]\n    output = params[:output]\n    output = JSON.parse(output) if output.is_a?(String)\n    jld = nil\n    if params[:write]\n      expect { jld = serialize(input, **params) }.to write(params[:write]).to(:error)\n    else\n      expect { jld = serialize(input, **params) }.not_to write.to(:error)\n    end\n    expect(jld).to produce_jsonld(output, logger)\n  rescue JSON::LD::JsonLdError => e\n    raise(\"#{e.class}: #{e.message}\\n\" \\\n          \"#{logger}\\n\" \\\n          \"Backtrace:\\n#{e.backtrace.join(\"\\n\")}\")\n  end\nend\n"
  },
  {
    "path": "spec/matchers.rb",
    "content": "# frozen_string_literal: true\n\nrequire 'rspec/matchers' # @see https://rubygems.org/gems/rspec\nrequire_relative 'support/extensions'\n\nRSpec::Matchers.define :produce_jsonld do |expected, logger|\n  match do |actual|\n    expect(actual).to be_equivalent_jsonld expected\n  end\n\n  failure_message do |actual|\n    \"Expected: #{begin\n      expected.is_a?(String) ? expected : expected.to_json(JSON_STATE)\n    rescue StandardError\n      'malformed json'\n    end}\\n\" \\\n      \"Actual  : #{begin\n        actual.is_a?(String) ? actual : actual.to_json(JSON_STATE)\n      rescue StandardError\n        'malformed json'\n      end}\\n\" \\\n      \"\\nDebug:\\n#{logger}\"\n  end\n\n  failure_message_when_negated do |actual|\n    \"Expected not to produce the following:\\n\" \\\n      \"Actual  : #{begin\n        actual.is_a?(String) ? actual : actual.to_json(JSON_STATE)\n      rescue StandardError\n        'malformed json'\n      end}\\n\" \\\n      \"\\nDebug:\\n#{logger}\"\n  end\nend\n"
  },
  {
    "path": "spec/rdfstar_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      %w[\n        expand\n        compact\n        flatten\n        fromRdf\n        toRdf\n      ].each do |partial|\n        m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::STAR_SUITE}#{partial}-manifest.jsonld\")\n        describe m.name do\n          m.entries.each do |t|\n            specify \"#{t.property('@id')}: #{t.name}#{' (negative test)' unless t.positiveTest?}\" do\n              t.options[:ordered] = false\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/reader_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/spec/reader'\n\ndescribe JSON::LD::Reader do\n  let!(:doap) { File.expand_path('../etc/doap.jsonld', __dir__) }\n  let!(:doap_nt) { File.expand_path('../etc/doap.nt', __dir__) }\n  let!(:doap_count) { File.open(doap_nt).each_line.to_a.length }\n  let(:logger) { RDF::Spec.logger }\n\n  after { |example| puts logger if example.exception }\n\n  it_behaves_like 'an RDF::Reader' do\n    let(:reader_input) { File.read(doap) }\n    let(:reader) { JSON::LD::Reader.new(reader_input) }\n    let(:reader_count) { doap_count }\n  end\n\n  describe \".for\" do\n    [\n      :jsonld,\n      \"etc/doap.jsonld\",\n      { file_name:      'etc/doap.jsonld' },\n      { file_extension: 'jsonld' },\n      { content_type:   'application/ld+json' },\n      { content_type:   'application/x-ld+json' }\n    ].each do |arg|\n      it \"discovers with #{arg.inspect}\" do\n        expect(RDF::Reader.for(arg)).to eq described_class\n      end\n    end\n  end\n\n  context \"when validating\", pending: (\"JRuby support for jsonlint\" if RUBY_ENGINE == \"jruby\") do\n    it \"detects invalid JSON\" do\n      expect do |b|\n        described_class.new(StringIO.new(%({\"a\": \"b\", \"a\": \"c\"})), validate: true, logger: false).each_statement(&b)\n      end.to raise_error(RDF::ReaderError)\n    end\n  end\n\n  context :interface do\n    {\n      plain: '{\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@id\": \"_:bnode1\",\n        \"@type\": \"foaf:Person\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }',\n      leading_comment: '\n      // A comment before content\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@id\": \"_:bnode1\",\n        \"@type\": \"foaf:Person\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }',\n      script: '<script type=\"application/ld+json\">\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@id\": \"_:bnode1\",\n        \"@type\": \"foaf:Person\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }\n      </script>',\n      script_comments: '<script type=\"application/ld+json\">\n      // A comment before content\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@id\": \"_:bnode1\",\n        \"@type\": \"foaf:Person\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n       }\n      </script>'\n    }.each do |variant, src|\n      context variant do\n        subject { src }\n\n        describe \"#initialize\" do\n          it \"yields reader given string\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(JSON::LD::Reader)\n            JSON::LD::Reader.new(subject) do |reader|\n              inner.called(reader.class)\n            end\n          end\n\n          it \"yields reader given IO\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(JSON::LD::Reader)\n            JSON::LD::Reader.new(StringIO.new(subject)) do |reader|\n              inner.called(reader.class)\n            end\n          end\n\n          it \"returns reader\" do\n            expect(JSON::LD::Reader.new(subject)).to be_a(JSON::LD::Reader)\n          end\n        end\n\n        describe \"#each_statement\" do\n          it \"yields statements\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(RDF::Statement).exactly(3)\n            JSON::LD::Reader.new(subject).each_statement do |statement|\n              inner.called(statement.class)\n            end\n          end\n        end\n\n        describe \"#each_triple\" do\n          it \"yields statements\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).exactly(3)\n            JSON::LD::Reader.new(subject).each_triple do |subject, predicate, object|\n              inner.called(subject.class, predicate.class, object.class)\n            end\n          end\n        end\n      end\n    end\n  end\n\n  describe \"Base IRI resolution\" do\n    # From https://gist.github.com/RubenVerborgh/39f0e8d63e33e435371a\n    let(:json) do\n      '[\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s001\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s002\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s003\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s004\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s005\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s006\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s007\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s008\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s009\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s010\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s011\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s012\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s013\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s014\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s015\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s016\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s017\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s018\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s019\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s020\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s021\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s022\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s023\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s024\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s025\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s026\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s027\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s028\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s029\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s030\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s031\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s032\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s033\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s034\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s035\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s036\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s037\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s038\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s039\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s040\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s041\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s042\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/d/\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s043\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s044\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s045\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s046\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s047\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s048\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s049\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s050\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s051\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s052\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s053\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s054\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s055\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s056\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s057\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s058\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s059\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s060\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s061\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s062\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s063\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s064\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s065\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/d/\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s066\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s067\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s068\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s069\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s070\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s071\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s072\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s073\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s074\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s075\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s076\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s077\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s078\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s079\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s080\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s081\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s082\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s083\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s084\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/./d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s085\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s086\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s087\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s088\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s089\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s090\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s091\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s092\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s093\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s094\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s095\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s096\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s097\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s098\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s099\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s100\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s101\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s102\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s103\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s104\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s105\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s106\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s107\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/./d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s108\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s109\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s110\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s111\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s112\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s113\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s114\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s115\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s116\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s117\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s118\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s119\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s120\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s121\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s122\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s123\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s124\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s125\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s126\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/../d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s127\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s128\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s129\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s130\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s131\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s132\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s133\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s134\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s135\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s136\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s137\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s138\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s139\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s140\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s141\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s142\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s143\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s144\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s145\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s146\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s147\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s148\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s149\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/../d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s150\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s151\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s152\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s153\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s154\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s155\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s156\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s157\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s158\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s159\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s160\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s161\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s162\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s163\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s164\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s165\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s166\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s167\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s168\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/.\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s169\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s170\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s171\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s172\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s173\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s174\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s175\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s176\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s177\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s178\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s179\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s180\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s181\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s182\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s183\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s184\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s185\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s186\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s187\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s188\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s189\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s190\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s191\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/.\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s192\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s193\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s194\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s195\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s196\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s197\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s198\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s199\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s200\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s201\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s202\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s203\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s204\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s205\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s206\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s207\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s208\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s209\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s210\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/..\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s211\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s212\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s213\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s214\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s215\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s216\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s217\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s218\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s219\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s220\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s221\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s222\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s223\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s224\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s225\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s226\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s227\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s228\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s229\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s230\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s231\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s232\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s233\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://a/bb/ccc/..\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s234\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s235\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s236\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s237\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s238\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s239\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s240\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s241\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s242\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s243\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s244\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s245\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s246\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s247\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s248\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s249\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s250\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s251\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s252\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"file:///a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s253\", \"urn:ex:p\": \"gg:h\"},\n          {\"@id\": \"urn:ex:s254\", \"urn:ex:p\": \"g\"},\n          {\"@id\": \"urn:ex:s255\", \"urn:ex:p\": \"./g\"},\n          {\"@id\": \"urn:ex:s256\", \"urn:ex:p\": \"g/\"},\n          {\"@id\": \"urn:ex:s257\", \"urn:ex:p\": \"/g\"},\n          {\"@id\": \"urn:ex:s258\", \"urn:ex:p\": \"//g\"},\n          {\"@id\": \"urn:ex:s259\", \"urn:ex:p\": \"?y\"},\n          {\"@id\": \"urn:ex:s260\", \"urn:ex:p\": \"g?y\"},\n          {\"@id\": \"urn:ex:s261\", \"urn:ex:p\": \"#s\"},\n          {\"@id\": \"urn:ex:s262\", \"urn:ex:p\": \"g#s\"},\n          {\"@id\": \"urn:ex:s263\", \"urn:ex:p\": \"g?y#s\"},\n          {\"@id\": \"urn:ex:s264\", \"urn:ex:p\": \";x\"},\n          {\"@id\": \"urn:ex:s265\", \"urn:ex:p\": \"g;x\"},\n          {\"@id\": \"urn:ex:s266\", \"urn:ex:p\": \"g;x?y#s\"},\n          {\"@id\": \"urn:ex:s267\", \"urn:ex:p\": \"\"},\n          {\"@id\": \"urn:ex:s268\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s269\", \"urn:ex:p\": \"./\"},\n          {\"@id\": \"urn:ex:s270\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s271\", \"urn:ex:p\": \"../\"},\n          {\"@id\": \"urn:ex:s272\", \"urn:ex:p\": \"../g\"},\n          {\"@id\": \"urn:ex:s273\", \"urn:ex:p\": \"../..\"},\n          {\"@id\": \"urn:ex:s274\", \"urn:ex:p\": \"../../\"},\n          {\"@id\": \"urn:ex:s275\", \"urn:ex:p\": \"../../g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"file:///a/bb/ccc/d;p?q\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s276\", \"urn:ex:p\": \"../../../g\"},\n          {\"@id\": \"urn:ex:s277\", \"urn:ex:p\": \"../../../../g\"},\n          {\"@id\": \"urn:ex:s278\", \"urn:ex:p\": \"/./g\"},\n          {\"@id\": \"urn:ex:s279\", \"urn:ex:p\": \"/../g\"},\n          {\"@id\": \"urn:ex:s280\", \"urn:ex:p\": \"g.\"},\n          {\"@id\": \"urn:ex:s281\", \"urn:ex:p\": \".g\"},\n          {\"@id\": \"urn:ex:s282\", \"urn:ex:p\": \"g..\"},\n          {\"@id\": \"urn:ex:s283\", \"urn:ex:p\": \"..g\"},\n          {\"@id\": \"urn:ex:s284\", \"urn:ex:p\": \"./../g\"},\n          {\"@id\": \"urn:ex:s285\", \"urn:ex:p\": \"./g/.\"},\n          {\"@id\": \"urn:ex:s286\", \"urn:ex:p\": \"g/./h\"},\n          {\"@id\": \"urn:ex:s287\", \"urn:ex:p\": \"g/../h\"},\n          {\"@id\": \"urn:ex:s288\", \"urn:ex:p\": \"g;x=1/./y\"},\n          {\"@id\": \"urn:ex:s289\", \"urn:ex:p\": \"g;x=1/../y\"},\n          {\"@id\": \"urn:ex:s290\", \"urn:ex:p\": \"g?y/./x\"},\n          {\"@id\": \"urn:ex:s291\", \"urn:ex:p\": \"g?y/../x\"},\n          {\"@id\": \"urn:ex:s292\", \"urn:ex:p\": \"g#s/./x\"},\n          {\"@id\": \"urn:ex:s293\", \"urn:ex:p\": \"g#s/../x\"},\n          {\"@id\": \"urn:ex:s294\", \"urn:ex:p\": \"http:g\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://abc/def/ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s295\", \"urn:ex:p\": \".\"},\n          {\"@id\": \"urn:ex:s296\", \"urn:ex:p\": \".?a=b\"},\n          {\"@id\": \"urn:ex:s297\", \"urn:ex:p\": \".#a=b\"},\n          {\"@id\": \"urn:ex:s298\", \"urn:ex:p\": \"..\"},\n          {\"@id\": \"urn:ex:s299\", \"urn:ex:p\": \"..?a=b\"},\n          {\"@id\": \"urn:ex:s300\", \"urn:ex:p\": \"..#a=b\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://ab//de//ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s301\", \"urn:ex:p\": \"xyz\"},\n          {\"@id\": \"urn:ex:s302\", \"urn:ex:p\": \"./xyz\"},\n          {\"@id\": \"urn:ex:s303\", \"urn:ex:p\": \"../xyz\"}\n        ]\n      },\n      {\n        \"@context\": {\"@base\": \"http://abc/d:f/ghi\", \"urn:ex:p\": {\"@type\": \"@id\"}},\n        \"@graph\": [\n          {\"@id\": \"urn:ex:s304\", \"urn:ex:p\": \"xyz\"},\n          {\"@id\": \"urn:ex:s305\", \"urn:ex:p\": \"./xyz\"},\n          {\"@id\": \"urn:ex:s306\", \"urn:ex:p\": \"../xyz\"}\n        ]\n      }\n    ]'\n    end\n    let(:nt) do\n      '\n      # RFC3986 normal examples\n\n      <urn:ex:s001> <urn:ex:p> <gg:h>.\n      <urn:ex:s002> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s003> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s004> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s005> <urn:ex:p> <http://a/g>.\n      <urn:ex:s006> <urn:ex:p> <http://g>.\n      <urn:ex:s007> <urn:ex:p> <http://a/bb/ccc/d;p?y>.\n      <urn:ex:s008> <urn:ex:p> <http://a/bb/ccc/g?y>.\n      <urn:ex:s009> <urn:ex:p> <http://a/bb/ccc/d;p?q#s>.\n      <urn:ex:s010> <urn:ex:p> <http://a/bb/ccc/g#s>.\n      <urn:ex:s011> <urn:ex:p> <http://a/bb/ccc/g?y#s>.\n      <urn:ex:s012> <urn:ex:p> <http://a/bb/ccc/;x>.\n      <urn:ex:s013> <urn:ex:p> <http://a/bb/ccc/g;x>.\n      <urn:ex:s014> <urn:ex:p> <http://a/bb/ccc/g;x?y#s>.\n      <urn:ex:s015> <urn:ex:p> <http://a/bb/ccc/d;p?q>.\n      <urn:ex:s016> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s017> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s018> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s019> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s020> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s021> <urn:ex:p> <http://a/>.\n      <urn:ex:s022> <urn:ex:p> <http://a/>.\n      <urn:ex:s023> <urn:ex:p> <http://a/g>.\n\n      # RFC3986 abnormal examples\n\n      <urn:ex:s024> <urn:ex:p> <http://a/g>.\n      <urn:ex:s025> <urn:ex:p> <http://a/g>.\n      <urn:ex:s026> <urn:ex:p> <http://a/g>.\n      <urn:ex:s027> <urn:ex:p> <http://a/g>.\n      <urn:ex:s028> <urn:ex:p> <http://a/bb/ccc/g.>.\n      <urn:ex:s029> <urn:ex:p> <http://a/bb/ccc/.g>.\n      <urn:ex:s030> <urn:ex:p> <http://a/bb/ccc/g..>.\n      <urn:ex:s031> <urn:ex:p> <http://a/bb/ccc/..g>.\n      <urn:ex:s032> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s033> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s034> <urn:ex:p> <http://a/bb/ccc/g/h>.\n      <urn:ex:s035> <urn:ex:p> <http://a/bb/ccc/h>.\n      <urn:ex:s036> <urn:ex:p> <http://a/bb/ccc/g;x=1/y>.\n      <urn:ex:s037> <urn:ex:p> <http://a/bb/ccc/y>.\n      <urn:ex:s038> <urn:ex:p> <http://a/bb/ccc/g?y/./x>.\n      <urn:ex:s039> <urn:ex:p> <http://a/bb/ccc/g?y/../x>.\n      <urn:ex:s040> <urn:ex:p> <http://a/bb/ccc/g#s/./x>.\n      <urn:ex:s041> <urn:ex:p> <http://a/bb/ccc/g#s/../x>.\n      <urn:ex:s042> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with trailing slash in base IRI\n\n      <urn:ex:s043> <urn:ex:p> <gg:h>.\n      <urn:ex:s044> <urn:ex:p> <http://a/bb/ccc/d/g>.\n      <urn:ex:s045> <urn:ex:p> <http://a/bb/ccc/d/g>.\n      <urn:ex:s046> <urn:ex:p> <http://a/bb/ccc/d/g/>.\n      <urn:ex:s047> <urn:ex:p> <http://a/g>.\n      <urn:ex:s048> <urn:ex:p> <http://g>.\n      <urn:ex:s049> <urn:ex:p> <http://a/bb/ccc/d/?y>.\n      <urn:ex:s050> <urn:ex:p> <http://a/bb/ccc/d/g?y>.\n      <urn:ex:s051> <urn:ex:p> <http://a/bb/ccc/d/#s>.\n      <urn:ex:s052> <urn:ex:p> <http://a/bb/ccc/d/g#s>.\n      <urn:ex:s053> <urn:ex:p> <http://a/bb/ccc/d/g?y#s>.\n      <urn:ex:s054> <urn:ex:p> <http://a/bb/ccc/d/;x>.\n      <urn:ex:s055> <urn:ex:p> <http://a/bb/ccc/d/g;x>.\n      <urn:ex:s056> <urn:ex:p> <http://a/bb/ccc/d/g;x?y#s>.\n      <urn:ex:s057> <urn:ex:p> <http://a/bb/ccc/d/>.\n      <urn:ex:s058> <urn:ex:p> <http://a/bb/ccc/d/>.\n      <urn:ex:s059> <urn:ex:p> <http://a/bb/ccc/d/>.\n      <urn:ex:s060> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s061> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s062> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s063> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s064> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s065> <urn:ex:p> <http://a/bb/g>.\n\n      # RFC3986 abnormal examples with trailing slash in base IRI\n\n      <urn:ex:s066> <urn:ex:p> <http://a/g>.\n      <urn:ex:s067> <urn:ex:p> <http://a/g>.\n      <urn:ex:s068> <urn:ex:p> <http://a/g>.\n      <urn:ex:s069> <urn:ex:p> <http://a/g>.\n      <urn:ex:s070> <urn:ex:p> <http://a/bb/ccc/d/g.>.\n      <urn:ex:s071> <urn:ex:p> <http://a/bb/ccc/d/.g>.\n      <urn:ex:s072> <urn:ex:p> <http://a/bb/ccc/d/g..>.\n      <urn:ex:s073> <urn:ex:p> <http://a/bb/ccc/d/..g>.\n      <urn:ex:s074> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s075> <urn:ex:p> <http://a/bb/ccc/d/g/>.\n      <urn:ex:s076> <urn:ex:p> <http://a/bb/ccc/d/g/h>.\n      <urn:ex:s077> <urn:ex:p> <http://a/bb/ccc/d/h>.\n      <urn:ex:s078> <urn:ex:p> <http://a/bb/ccc/d/g;x=1/y>.\n      <urn:ex:s079> <urn:ex:p> <http://a/bb/ccc/d/y>.\n      <urn:ex:s080> <urn:ex:p> <http://a/bb/ccc/d/g?y/./x>.\n      <urn:ex:s081> <urn:ex:p> <http://a/bb/ccc/d/g?y/../x>.\n      <urn:ex:s082> <urn:ex:p> <http://a/bb/ccc/d/g#s/./x>.\n      <urn:ex:s083> <urn:ex:p> <http://a/bb/ccc/d/g#s/../x>.\n      <urn:ex:s084> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with /. in the base IRI\n\n      <urn:ex:s085> <urn:ex:p> <gg:h>.\n      <urn:ex:s086> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s087> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s088> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s089> <urn:ex:p> <http://a/g>.\n      <urn:ex:s090> <urn:ex:p> <http://g>.\n      <urn:ex:s091> <urn:ex:p> <http://a/bb/ccc/./d;p?y>.\n      <urn:ex:s092> <urn:ex:p> <http://a/bb/ccc/g?y>.\n      <urn:ex:s093> <urn:ex:p> <http://a/bb/ccc/./d;p?q#s>.\n      <urn:ex:s094> <urn:ex:p> <http://a/bb/ccc/g#s>.\n      <urn:ex:s095> <urn:ex:p> <http://a/bb/ccc/g?y#s>.\n      <urn:ex:s096> <urn:ex:p> <http://a/bb/ccc/;x>.\n      <urn:ex:s097> <urn:ex:p> <http://a/bb/ccc/g;x>.\n      <urn:ex:s098> <urn:ex:p> <http://a/bb/ccc/g;x?y#s>.\n      <urn:ex:s099> <urn:ex:p> <http://a/bb/ccc/./d;p?q>.\n      <urn:ex:s100> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s101> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s102> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s103> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s104> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s105> <urn:ex:p> <http://a/>.\n      <urn:ex:s106> <urn:ex:p> <http://a/>.\n      <urn:ex:s107> <urn:ex:p> <http://a/g>.\n\n      # RFC3986 abnormal examples with /. in the base IRI\n\n      <urn:ex:s108> <urn:ex:p> <http://a/g>.\n      <urn:ex:s109> <urn:ex:p> <http://a/g>.\n      <urn:ex:s110> <urn:ex:p> <http://a/g>.\n      <urn:ex:s111> <urn:ex:p> <http://a/g>.\n      <urn:ex:s112> <urn:ex:p> <http://a/bb/ccc/g.>.\n      <urn:ex:s113> <urn:ex:p> <http://a/bb/ccc/.g>.\n      <urn:ex:s114> <urn:ex:p> <http://a/bb/ccc/g..>.\n      <urn:ex:s115> <urn:ex:p> <http://a/bb/ccc/..g>.\n      <urn:ex:s116> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s117> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s118> <urn:ex:p> <http://a/bb/ccc/g/h>.\n      <urn:ex:s119> <urn:ex:p> <http://a/bb/ccc/h>.\n      <urn:ex:s120> <urn:ex:p> <http://a/bb/ccc/g;x=1/y>.\n      <urn:ex:s121> <urn:ex:p> <http://a/bb/ccc/y>.\n      <urn:ex:s122> <urn:ex:p> <http://a/bb/ccc/g?y/./x>.\n      <urn:ex:s123> <urn:ex:p> <http://a/bb/ccc/g?y/../x>.\n      <urn:ex:s124> <urn:ex:p> <http://a/bb/ccc/g#s/./x>.\n      <urn:ex:s125> <urn:ex:p> <http://a/bb/ccc/g#s/../x>.\n      <urn:ex:s126> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with /.. in the base IRI\n\n      <urn:ex:s127> <urn:ex:p> <gg:h>.\n      <urn:ex:s128> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s129> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s130> <urn:ex:p> <http://a/bb/g/>.\n      <urn:ex:s131> <urn:ex:p> <http://a/g>.\n      <urn:ex:s132> <urn:ex:p> <http://g>.\n      <urn:ex:s133> <urn:ex:p> <http://a/bb/ccc/../d;p?y>.\n      <urn:ex:s134> <urn:ex:p> <http://a/bb/g?y>.\n      <urn:ex:s135> <urn:ex:p> <http://a/bb/ccc/../d;p?q#s>.\n      <urn:ex:s136> <urn:ex:p> <http://a/bb/g#s>.\n      <urn:ex:s137> <urn:ex:p> <http://a/bb/g?y#s>.\n      <urn:ex:s138> <urn:ex:p> <http://a/bb/;x>.\n      <urn:ex:s139> <urn:ex:p> <http://a/bb/g;x>.\n      <urn:ex:s140> <urn:ex:p> <http://a/bb/g;x?y#s>.\n      <urn:ex:s141> <urn:ex:p> <http://a/bb/ccc/../d;p?q>.\n      <urn:ex:s142> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s143> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s144> <urn:ex:p> <http://a/>.\n      <urn:ex:s145> <urn:ex:p> <http://a/>.\n      <urn:ex:s146> <urn:ex:p> <http://a/g>.\n      <urn:ex:s147> <urn:ex:p> <http://a/>.\n      <urn:ex:s148> <urn:ex:p> <http://a/>.\n      <urn:ex:s149> <urn:ex:p> <http://a/g>.\n\n      # RFC3986 abnormal examples with /.. in the base IRI\n\n      <urn:ex:s150> <urn:ex:p> <http://a/g>.\n      <urn:ex:s151> <urn:ex:p> <http://a/g>.\n      <urn:ex:s152> <urn:ex:p> <http://a/g>.\n      <urn:ex:s153> <urn:ex:p> <http://a/g>.\n      <urn:ex:s154> <urn:ex:p> <http://a/bb/g.>.\n      <urn:ex:s155> <urn:ex:p> <http://a/bb/.g>.\n      <urn:ex:s156> <urn:ex:p> <http://a/bb/g..>.\n      <urn:ex:s157> <urn:ex:p> <http://a/bb/..g>.\n      <urn:ex:s158> <urn:ex:p> <http://a/g>.\n      <urn:ex:s159> <urn:ex:p> <http://a/bb/g/>.\n      <urn:ex:s160> <urn:ex:p> <http://a/bb/g/h>.\n      <urn:ex:s161> <urn:ex:p> <http://a/bb/h>.\n      <urn:ex:s162> <urn:ex:p> <http://a/bb/g;x=1/y>.\n      <urn:ex:s163> <urn:ex:p> <http://a/bb/y>.\n      <urn:ex:s164> <urn:ex:p> <http://a/bb/g?y/./x>.\n      <urn:ex:s165> <urn:ex:p> <http://a/bb/g?y/../x>.\n      <urn:ex:s166> <urn:ex:p> <http://a/bb/g#s/./x>.\n      <urn:ex:s167> <urn:ex:p> <http://a/bb/g#s/../x>.\n      <urn:ex:s168> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with trailing /. in the base IRI\n\n      <urn:ex:s169> <urn:ex:p> <gg:h>.\n      <urn:ex:s170> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s171> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s172> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s173> <urn:ex:p> <http://a/g>.\n      <urn:ex:s174> <urn:ex:p> <http://g>.\n      <urn:ex:s175> <urn:ex:p> <http://a/bb/ccc/.?y>.\n      <urn:ex:s176> <urn:ex:p> <http://a/bb/ccc/g?y>.\n      <urn:ex:s177> <urn:ex:p> <http://a/bb/ccc/.#s>.\n      <urn:ex:s178> <urn:ex:p> <http://a/bb/ccc/g#s>.\n      <urn:ex:s179> <urn:ex:p> <http://a/bb/ccc/g?y#s>.\n      <urn:ex:s180> <urn:ex:p> <http://a/bb/ccc/;x>.\n      <urn:ex:s181> <urn:ex:p> <http://a/bb/ccc/g;x>.\n      <urn:ex:s182> <urn:ex:p> <http://a/bb/ccc/g;x?y#s>.\n      <urn:ex:s183> <urn:ex:p> <http://a/bb/ccc/.>.\n      <urn:ex:s184> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s185> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s186> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s187> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s188> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s189> <urn:ex:p> <http://a/>.\n      <urn:ex:s190> <urn:ex:p> <http://a/>.\n      <urn:ex:s191> <urn:ex:p> <http://a/g>.\n\n      # RFC3986 abnormal examples with trailing /. in the base IRI\n\n      <urn:ex:s192> <urn:ex:p> <http://a/g>.\n      <urn:ex:s193> <urn:ex:p> <http://a/g>.\n      <urn:ex:s194> <urn:ex:p> <http://a/g>.\n      <urn:ex:s195> <urn:ex:p> <http://a/g>.\n      <urn:ex:s196> <urn:ex:p> <http://a/bb/ccc/g.>.\n      <urn:ex:s197> <urn:ex:p> <http://a/bb/ccc/.g>.\n      <urn:ex:s198> <urn:ex:p> <http://a/bb/ccc/g..>.\n      <urn:ex:s199> <urn:ex:p> <http://a/bb/ccc/..g>.\n      <urn:ex:s200> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s201> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s202> <urn:ex:p> <http://a/bb/ccc/g/h>.\n      <urn:ex:s203> <urn:ex:p> <http://a/bb/ccc/h>.\n      <urn:ex:s204> <urn:ex:p> <http://a/bb/ccc/g;x=1/y>.\n      <urn:ex:s205> <urn:ex:p> <http://a/bb/ccc/y>.\n      <urn:ex:s206> <urn:ex:p> <http://a/bb/ccc/g?y/./x>.\n      <urn:ex:s207> <urn:ex:p> <http://a/bb/ccc/g?y/../x>.\n      <urn:ex:s208> <urn:ex:p> <http://a/bb/ccc/g#s/./x>.\n      <urn:ex:s209> <urn:ex:p> <http://a/bb/ccc/g#s/../x>.\n      <urn:ex:s210> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with trailing /.. in the base IRI\n\n      <urn:ex:s211> <urn:ex:p> <gg:h>.\n      <urn:ex:s212> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s213> <urn:ex:p> <http://a/bb/ccc/g>.\n      <urn:ex:s214> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s215> <urn:ex:p> <http://a/g>.\n      <urn:ex:s216> <urn:ex:p> <http://g>.\n      <urn:ex:s217> <urn:ex:p> <http://a/bb/ccc/..?y>.\n      <urn:ex:s218> <urn:ex:p> <http://a/bb/ccc/g?y>.\n      <urn:ex:s219> <urn:ex:p> <http://a/bb/ccc/..#s>.\n      <urn:ex:s220> <urn:ex:p> <http://a/bb/ccc/g#s>.\n      <urn:ex:s221> <urn:ex:p> <http://a/bb/ccc/g?y#s>.\n      <urn:ex:s222> <urn:ex:p> <http://a/bb/ccc/;x>.\n      <urn:ex:s223> <urn:ex:p> <http://a/bb/ccc/g;x>.\n      <urn:ex:s224> <urn:ex:p> <http://a/bb/ccc/g;x?y#s>.\n      <urn:ex:s225> <urn:ex:p> <http://a/bb/ccc/..>.\n      <urn:ex:s226> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s227> <urn:ex:p> <http://a/bb/ccc/>.\n      <urn:ex:s228> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s229> <urn:ex:p> <http://a/bb/>.\n      <urn:ex:s230> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s231> <urn:ex:p> <http://a/>.\n      <urn:ex:s232> <urn:ex:p> <http://a/>.\n      <urn:ex:s233> <urn:ex:p> <http://a/g>.\n\n      # RFC3986 abnormal examples with trailing /.. in the base IRI\n\n      <urn:ex:s234> <urn:ex:p> <http://a/g>.\n      <urn:ex:s235> <urn:ex:p> <http://a/g>.\n      <urn:ex:s236> <urn:ex:p> <http://a/g>.\n      <urn:ex:s237> <urn:ex:p> <http://a/g>.\n      <urn:ex:s238> <urn:ex:p> <http://a/bb/ccc/g.>.\n      <urn:ex:s239> <urn:ex:p> <http://a/bb/ccc/.g>.\n      <urn:ex:s240> <urn:ex:p> <http://a/bb/ccc/g..>.\n      <urn:ex:s241> <urn:ex:p> <http://a/bb/ccc/..g>.\n      <urn:ex:s242> <urn:ex:p> <http://a/bb/g>.\n      <urn:ex:s243> <urn:ex:p> <http://a/bb/ccc/g/>.\n      <urn:ex:s244> <urn:ex:p> <http://a/bb/ccc/g/h>.\n      <urn:ex:s245> <urn:ex:p> <http://a/bb/ccc/h>.\n      <urn:ex:s246> <urn:ex:p> <http://a/bb/ccc/g;x=1/y>.\n      <urn:ex:s247> <urn:ex:p> <http://a/bb/ccc/y>.\n      <urn:ex:s248> <urn:ex:p> <http://a/bb/ccc/g?y/./x>.\n      <urn:ex:s249> <urn:ex:p> <http://a/bb/ccc/g?y/../x>.\n      <urn:ex:s250> <urn:ex:p> <http://a/bb/ccc/g#s/./x>.\n      <urn:ex:s251> <urn:ex:p> <http://a/bb/ccc/g#s/../x>.\n      <urn:ex:s252> <urn:ex:p> <http:g>.\n\n      # RFC3986 normal examples with file path\n\n      <urn:ex:s253> <urn:ex:p> <gg:h>.\n      <urn:ex:s254> <urn:ex:p> <file:///a/bb/ccc/g>.\n      <urn:ex:s255> <urn:ex:p> <file:///a/bb/ccc/g>.\n      <urn:ex:s256> <urn:ex:p> <file:///a/bb/ccc/g/>.\n      <urn:ex:s257> <urn:ex:p> <file:///g>.\n      <urn:ex:s258> <urn:ex:p> <file://g>.\n      <urn:ex:s259> <urn:ex:p> <file:///a/bb/ccc/d;p?y>.\n      <urn:ex:s260> <urn:ex:p> <file:///a/bb/ccc/g?y>.\n      <urn:ex:s261> <urn:ex:p> <file:///a/bb/ccc/d;p?q#s>.\n      <urn:ex:s262> <urn:ex:p> <file:///a/bb/ccc/g#s>.\n      <urn:ex:s263> <urn:ex:p> <file:///a/bb/ccc/g?y#s>.\n      <urn:ex:s264> <urn:ex:p> <file:///a/bb/ccc/;x>.\n      <urn:ex:s265> <urn:ex:p> <file:///a/bb/ccc/g;x>.\n      <urn:ex:s266> <urn:ex:p> <file:///a/bb/ccc/g;x?y#s>.\n      <urn:ex:s267> <urn:ex:p> <file:///a/bb/ccc/d;p?q>.\n      <urn:ex:s268> <urn:ex:p> <file:///a/bb/ccc/>.\n      <urn:ex:s269> <urn:ex:p> <file:///a/bb/ccc/>.\n      <urn:ex:s270> <urn:ex:p> <file:///a/bb/>.\n      <urn:ex:s271> <urn:ex:p> <file:///a/bb/>.\n      <urn:ex:s272> <urn:ex:p> <file:///a/bb/g>.\n      <urn:ex:s273> <urn:ex:p> <file:///a/>.\n      <urn:ex:s274> <urn:ex:p> <file:///a/>.\n      <urn:ex:s275> <urn:ex:p> <file:///a/g>.\n\n      # RFC3986 abnormal examples with file path\n\n      <urn:ex:s276> <urn:ex:p> <file:///g>.\n      <urn:ex:s277> <urn:ex:p> <file:///g>.\n      <urn:ex:s278> <urn:ex:p> <file:///g>.\n      <urn:ex:s279> <urn:ex:p> <file:///g>.\n      <urn:ex:s280> <urn:ex:p> <file:///a/bb/ccc/g.>.\n      <urn:ex:s281> <urn:ex:p> <file:///a/bb/ccc/.g>.\n      <urn:ex:s282> <urn:ex:p> <file:///a/bb/ccc/g..>.\n      <urn:ex:s283> <urn:ex:p> <file:///a/bb/ccc/..g>.\n      <urn:ex:s284> <urn:ex:p> <file:///a/bb/g>.\n      <urn:ex:s285> <urn:ex:p> <file:///a/bb/ccc/g/>.\n      <urn:ex:s286> <urn:ex:p> <file:///a/bb/ccc/g/h>.\n      <urn:ex:s287> <urn:ex:p> <file:///a/bb/ccc/h>.\n      <urn:ex:s288> <urn:ex:p> <file:///a/bb/ccc/g;x=1/y>.\n      <urn:ex:s289> <urn:ex:p> <file:///a/bb/ccc/y>.\n      <urn:ex:s290> <urn:ex:p> <file:///a/bb/ccc/g?y/./x>.\n      <urn:ex:s291> <urn:ex:p> <file:///a/bb/ccc/g?y/../x>.\n      <urn:ex:s292> <urn:ex:p> <file:///a/bb/ccc/g#s/./x>.\n      <urn:ex:s293> <urn:ex:p> <file:///a/bb/ccc/g#s/../x>.\n      <urn:ex:s294> <urn:ex:p> <http:g>.\n\n      # additional cases\n\n      <urn:ex:s295> <urn:ex:p> <http://abc/def/>.\n      <urn:ex:s296> <urn:ex:p> <http://abc/def/?a=b>.\n      <urn:ex:s297> <urn:ex:p> <http://abc/def/#a=b>.\n      <urn:ex:s298> <urn:ex:p> <http://abc/>.\n      <urn:ex:s299> <urn:ex:p> <http://abc/?a=b>.\n      <urn:ex:s300> <urn:ex:p> <http://abc/#a=b>.\n\n      <urn:ex:s301> <urn:ex:p> <http://ab//de//xyz>.\n      <urn:ex:s302> <urn:ex:p> <http://ab//de//xyz>.\n      <urn:ex:s303> <urn:ex:p> <http://ab//de/xyz>.\n\n      <urn:ex:s304> <urn:ex:p> <http://abc/d:f/xyz>.\n      <urn:ex:s305> <urn:ex:p> <http://abc/d:f/xyz>.\n      <urn:ex:s306> <urn:ex:p> <http://abc/xyz>.\n    '\n    end\n\n    it \"produces equivalent triples\" do\n      nt_str = RDF::NTriples::Reader.new(nt).dump(:ntriples)\n      json_str = described_class.new(json).dump(:ntriples)\n      expect(json_str).to eql(nt_str)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/resource_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::Resource do\n  subject { JSON::LD::Resource.new({ '@id' => '_:foo', \"http://schema.org/name\" => \"foo\" }) }\n\n  describe \"#initialize\" do\n    specify { expect(subject).not_to be_nil }\n    specify { expect(subject).to be_a(described_class) }\n    specify { expect(subject).not_to be_clean }\n    specify { expect(subject).to be_anonymous }\n    specify { expect(subject).to be_dirty }\n    specify { expect(subject).to be_new }\n    specify { expect(subject).not_to be_resolved }\n    specify { expect(subject).not_to be_stub }\n\n    context \"schema:name property\" do\n      specify { expect(subject.property(\"http://schema.org/name\")).to eq \"foo\" }\n    end\n\n    describe \"compacted with context\" do\n      subject do\n        described_class.new({ '@id' => '_:foo', \"http://schema.org/name\" => \"foo\" }, compact: true,\n          context: { \"@vocab\" => \"http://schema.org/\" })\n      end\n\n      specify { expect(subject).not_to be_nil }\n      specify { expect(subject).to be_a(described_class) }\n      specify { expect(subject).not_to be_clean }\n      specify { expect(subject).to be_anonymous }\n      specify { expect(subject).to be_dirty }\n      specify { expect(subject).to be_new }\n      specify { expect(subject).not_to be_resolved }\n      specify { expect(subject).not_to be_stub }\n      its(:name) { is_expected.to eq \"foo\" }\n    end\n  end\n\n  describe \"#deresolve\" do\n    it \"FIXME\"\n  end\n\n  describe \"#resolve\" do\n    it \"FIXME\"\n  end\n\n  describe \"#hash\" do\n    specify { expect(subject.hash).to be_a(Integer) }\n\n    it \"returns the hash of the attributes\" do\n      expect(subject.hash).to eq subject.deresolve.hash\n    end\n  end\n\n  describe \"#to_json\" do\n    it \"has JSON\" do\n      expect(subject.to_json).to be_a(String)\n      expect(JSON.parse(subject.to_json)).to be_a(Hash)\n    end\n\n    it \"has same ID\" do\n      expect(JSON.parse(subject.to_json)['@id']).to eq subject.id\n    end\n  end\n\n  describe \"#each\" do\n    specify { expect { |b| subject.each(&b) }.to yield_with_args(subject.statements.first) }\n  end\n\n  describe RDF::Enumerable do\n    specify { expect(subject).to be_enumerable }\n\n    it \"initializes a graph\" do\n      g = RDF::Graph.new << subject\n      expect(g.count).to eq 1\n      expect(g.objects.first).to eq \"foo\"\n    end\n  end\n\n  describe \"#save\" do\n    specify { expect { subject.save }.to raise_error(NotImplementedError) }\n  end\nend\n"
  },
  {
    "path": "spec/spec.opts",
    "content": "--colour"
  },
  {
    "path": "spec/spec_helper.rb",
    "content": "# frozen_string_literal: true\n\n$LOAD_PATH.unshift(File.join(\"../../lib\", __FILE__))\n$LOAD_PATH.unshift File.dirname(__FILE__)\n\nrequire \"bundler/setup\"\nrequire 'rspec'\nrequire 'rdf'\nrequire 'rdf/isomorphic'\nrequire 'rdf/nquads'\nrequire 'rdf/turtle'\nrequire 'rdf/trig'\nrequire 'rdf/vocab'\nrequire 'rdf/spec'\nrequire 'rdf/spec/matchers'\nrequire_relative 'matchers'\nrequire 'yaml'\nbegin\n  require 'simplecov'\n  require 'simplecov-lcov'\n  SimpleCov::Formatter::LcovFormatter.config do |config|\n    # Coveralls is coverage by default/lcov. Send info results\n    config.report_with_single_file = true\n    config.single_report_path = 'coverage/lcov.info'\n  end\n\n  SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([\n                                                                   SimpleCov::Formatter::HTMLFormatter,\n                                                                   SimpleCov::Formatter::LcovFormatter\n                                                                 ])\n  SimpleCov.start do\n    add_filter \"/spec/\"\n  end\nrescue LoadError\nend\n\nrequire 'json/ld'\n\nJSON_STATE = JSON::State.new(\n  indent:       \"  \",\n  space:        \" \",\n  space_before: \"\",\n  object_nl:    \"\\n\",\n  array_nl:     \"\\n\"\n)\n\nrequire 'webmock'\nWebMock.disable_net_connect!\n\n# Create and maintain a cache of downloaded URIs\nURI_CACHE = File.expand_path(File.join(File.dirname(__FILE__), \"uri-cache\"))\nDir.mkdir(URI_CACHE) unless File.directory?(URI_CACHE)\n# Cache client requests\n\nRSpec.configure do |c|\n  c.filter_run focus: true\n  c.run_all_when_everything_filtered = true\n  c.include(RDF::Spec::Matchers)\nend\n\n# Heuristically detect the input stream\ndef detect_format(stream)\n  # Got to look into the file to see\n  if stream.respond_to?(:rewind) && stream.respond_to?(:read)\n    stream.rewind\n    string = stream.read(1000)\n    stream.rewind\n  else\n    string = stream.to_s\n  end\n  case string\n  when /<html/i then RDF::RDFa::Reader\n  when /\\{\\s*\"@\"/i then JSON::LD::Reader\n  else RDF::Turtle::Reader\n  end\nend\n\n# Creates a bijection between the two objects and replaces nodes in actual from expected.\ndef remap_bnodes(actual, expected)\n  # Transform each to RDF and perform a blank node bijection.\n  # Replace the blank nodes in action with the mapping from bijection.\n  ds_actual = RDF::Repository.new << JSON::LD::API.toRdf(actual, rdfstar: true, rename_bnodes: false)\n  ds_expected = RDF::Repository.new << JSON::LD::API.toRdf(expected, rdfstar: true, rename_bnodes: false)\n  if (bijection = ds_actual.bijection_to(ds_expected))\n    bijection = bijection.inject({}) { |memo, (k, v)| memo.merge(k.to_s => v.to_s) }\n\n    # Recursively replace blank nodes in actual with the bijection\n    replace_nodes(actual, bijection)\n  else\n    actual\n  end\nend\n\ndef replace_nodes(object, bijection)\n  case object\n  when Array\n    object.map { |o| replace_nodes(o, bijection) }\n  when Hash\n    object.inject({}) do |memo, (k, v)|\n      memo.merge(bijection.fetch(k, k) => replace_nodes(v, bijection))\n    end\n  when String\n    bijection.fetch(object, object)\n  else\n    object\n  end\nend\n\nLIBRARY_INPUT = JSON.parse(%([\n  {\n    \"@id\": \"http://example.org/library\",\n    \"@type\": \"http://example.org/vocab#Library\",\n    \"http://example.org/vocab#contains\": {\"@id\": \"http://example.org/library/the-republic\"}\n  }, {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": \"http://example.org/vocab#Book\",\n    \"http://purl.org/dc/elements/1.1/creator\": \"Plato\",\n    \"http://purl.org/dc/elements/1.1/title\": \"The Republic\",\n    \"http://example.org/vocab#contains\": {\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": \"http://example.org/vocab#Chapter\",\n      \"http://purl.org/dc/elements/1.1/description\": \"An introductory chapter on The Republic.\",\n      \"http://purl.org/dc/elements/1.1/title\": \"The Introduction\"\n    }\n  }\n]))\n\nLIBRARY_EXPANDED = JSON.parse(%([\n  {\n    \"@id\": \"http://example.org/library\",\n    \"@type\": [\"http://example.org/vocab#Library\"],\n    \"http://example.org/vocab#contains\": [{\"@id\": \"http://example.org/library/the-republic\"}]\n  }, {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": [\"http://example.org/vocab#Book\"],\n    \"http://purl.org/dc/elements/1.1/creator\": [{\"@value\": \"Plato\"}],\n    \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Republic\"}],\n    \"http://example.org/vocab#contains\": [{\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": [\"http://example.org/vocab#Chapter\"],\n      \"http://purl.org/dc/elements/1.1/description\": [{\"@value\": \"An introductory chapter on The Republic.\"}],\n      \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Introduction\"}]\n    }]\n  }\n]))\n\nLIBRARY_COMPACTED_DEFAULT = JSON.parse(%({\n  \"@context\": \"http://example.com/context\",\n  \"@graph\": [\n    {\n      \"id\": \"http://example.org/library\",\n      \"type\": \"http://example.org/vocab#Library\",\n      \"http://example.org/vocab#contains\": {\"id\": \"http://example.org/library/the-republic\"}\n    }, {\n      \"id\": \"http://example.org/library/the-republic\",\n      \"type\": \"http://example.org/vocab#Book\",\n      \"http://purl.org/dc/elements/1.1/creator\": \"Plato\",\n      \"http://purl.org/dc/elements/1.1/title\": \"The Republic\",\n      \"http://example.org/vocab#contains\": {\n        \"id\": \"http://example.org/library/the-republic#introduction\",\n        \"type\": \"http://example.org/vocab#Chapter\",\n        \"http://purl.org/dc/elements/1.1/description\": \"An introductory chapter on The Republic.\",\n        \"http://purl.org/dc/elements/1.1/title\": \"The Introduction\"\n      }\n    }\n  ]\n}))\n\nLIBRARY_COMPACTED = JSON.parse(%({\n  \"@context\": \"http://conneg.example.com/context\",\n  \"@graph\": [\n    {\n      \"@id\": \"http://example.org/library\",\n      \"@type\": \"ex:Library\",\n      \"ex:contains\": {\n        \"@id\": \"http://example.org/library/the-republic\"\n      }\n    },\n    {\n      \"@id\": \"http://example.org/library/the-republic\",\n      \"@type\": \"ex:Book\",\n      \"dc:creator\": \"Plato\",\n      \"dc:title\": \"The Republic\",\n      \"ex:contains\": {\n        \"@id\": \"http://example.org/library/the-republic#introduction\",\n        \"@type\": \"ex:Chapter\",\n        \"dc:description\": \"An introductory chapter on The Republic.\",\n        \"dc:title\": \"The Introduction\"\n      }\n    }\n  ]\n}))\n\nLIBRARY_FLATTENED_EXPANDED = JSON.parse(%([\n  {\n    \"@id\": \"http://example.org/library\",\n    \"@type\": [\"http://example.org/vocab#Library\"],\n    \"http://example.org/vocab#contains\": [{\"@id\": \"http://example.org/library/the-republic\"}]\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": [\"http://example.org/vocab#Book\"],\n    \"http://purl.org/dc/elements/1.1/creator\": [{\"@value\": \"Plato\"}],\n    \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Republic\"}],\n    \"http://example.org/vocab#contains\": [{\"@id\": \"http://example.org/library/the-republic#introduction\"}]\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic#introduction\",\n    \"@type\": [\"http://example.org/vocab#Chapter\"],\n    \"http://purl.org/dc/elements/1.1/description\": [{\"@value\": \"An introductory chapter on The Republic.\"}],\n    \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Introduction\"}]\n  }\n]))\n\nLIBRARY_FLATTENED_COMPACTED_DEFAULT = JSON.parse(%({\n  \"@context\": \"http://example.com/context\",\n  \"@graph\": [\n    {\n      \"id\": \"http://example.org/library\",\n      \"type\": \"http://example.org/vocab#Library\",\n      \"http://example.org/vocab#contains\": {\"id\": \"http://example.org/library/the-republic\"}\n    },\n    {\n      \"id\": \"http://example.org/library/the-republic\",\n      \"type\": \"http://example.org/vocab#Book\",\n      \"http://purl.org/dc/elements/1.1/creator\": \"Plato\",\n      \"http://purl.org/dc/elements/1.1/title\": \"The Republic\",\n      \"http://example.org/vocab#contains\": {\"id\": \"http://example.org/library/the-republic#introduction\"}\n    },\n    {\n      \"id\": \"http://example.org/library/the-republic#introduction\",\n      \"type\": \"http://example.org/vocab#Chapter\",\n      \"http://purl.org/dc/elements/1.1/description\": \"An introductory chapter on The Republic.\",\n      \"http://purl.org/dc/elements/1.1/title\": \"The Introduction\"\n    }\n  ]\n}))\n\nLIBRARY_FLATTENED_COMPACTED = JSON.parse(%({\n  \"@context\": \"http://conneg.example.com/context\",\n  \"@graph\": [\n    {\n      \"@id\": \"http://example.org/library\",\n      \"@type\": \"ex:Library\",\n      \"ex:contains\": {\"@id\": \"http://example.org/library/the-republic\"}\n    },\n    {\n      \"@id\": \"http://example.org/library/the-republic\",\n      \"@type\": \"ex:Book\",\n      \"dc:creator\": \"Plato\",\n      \"dc:title\": \"The Republic\",\n      \"ex:contains\": {\"@id\": \"http://example.org/library/the-republic#introduction\"}\n    },\n    {\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": \"ex:Chapter\",\n      \"dc:description\": \"An introductory chapter on The Republic.\",\n      \"dc:title\": \"The Introduction\"\n    }\n  ]\n}))\n\nLIBRARY_FRAMED = JSON.parse(%({\n  \"@context\": {\n    \"dc\": \"http://purl.org/dc/elements/1.1/\",\n    \"ex\": \"http://example.org/vocab#\"\n  },\n  \"@id\": \"http://example.org/library\",\n  \"@type\": \"ex:Library\",\n  \"ex:contains\": {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": \"ex:Book\",\n    \"dc:creator\": \"Plato\",\n    \"dc:title\": \"The Republic\",\n    \"ex:contains\": {\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": \"ex:Chapter\",\n      \"dc:description\": \"An introductory chapter on The Republic.\",\n      \"dc:title\": \"The Introduction\"\n    }\n  }\n}))\n"
  },
  {
    "path": "spec/streaming_reader_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/spec/reader'\n\ndescribe JSON::LD::StreamingReader do\n  let!(:doap) { File.expand_path('../etc/doap.jsonld', __dir__) }\n  let!(:doap_nt) { File.expand_path('../etc/doap.nt', __dir__) }\n  let!(:doap_count) { File.open(doap_nt).each_line.to_a.length }\n  let(:logger) { RDF::Spec.logger }\n\n  after { |example| puts logger if example.exception }\n\n  it_behaves_like 'an RDF::Reader' do\n    let(:reader_input) { File.read(doap) }\n    let(:reader) { JSON::LD::Reader.new(reader_input, stream: true) }\n    let(:reader_count) { doap_count }\n  end\n\n  context \"when validating\", pending: (\"JRuby support for jsonlint\" if RUBY_ENGINE == \"jruby\") do\n    it \"detects invalid JSON\" do\n      expect do |b|\n        JSON::LD::Reader.new(StringIO.new(%({\"a\": \"b\", \"a\": \"c\"})), validate: true, logger: false).each_statement(&b)\n      end.to raise_error(RDF::ReaderError)\n    end\n  end\n\n  context :interface do\n    {\n      plain: '{\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@type\": \"foaf:Person\",\n        \"@id\": \"_:bnode1\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }',\n      leading_comment: '\n      // A comment before content\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@type\": \"foaf:Person\",\n        \"@id\": \"_:bnode1\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }',\n      script: '<script type=\"application/ld+json\">\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@type\": \"foaf:Person\",\n        \"@id\": \"_:bnode1\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n      }\n      </script>',\n      script_comments: '<script type=\"application/ld+json\">\n      // A comment before content\n      {\n        \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n        \"@type\": \"foaf:Person\",\n        \"@id\": \"_:bnode1\",\n        \"foaf:homepage\": \"http://example.com/bob/\",\n        \"foaf:name\": \"Bob\"\n       }\n      </script>'\n    }.each do |variant, src|\n      context variant do\n        subject { src }\n\n        describe \"#initialize\" do\n          it \"yields reader given string\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(JSON::LD::Reader)\n            JSON::LD::Reader.new(subject, stream: true) do |reader|\n              inner.called(reader.class)\n            end\n          end\n\n          it \"yields reader given IO\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(JSON::LD::Reader)\n            JSON::LD::Reader.new(StringIO.new(subject), stream: true) do |reader|\n              inner.called(reader.class)\n            end\n          end\n\n          it \"returns reader\" do\n            expect(JSON::LD::Reader.new(subject, stream: true)).to be_a(JSON::LD::Reader)\n          end\n        end\n\n        describe \"#each_statement\" do\n          it \"yields statements\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).with(RDF::Statement).exactly(3)\n            JSON::LD::Reader.new(subject, stream: true).each_statement do |statement|\n              inner.called(statement.class)\n            end\n          end\n        end\n\n        describe \"#each_triple\" do\n          it \"yields statements\" do\n            inner = double(\"inner\")\n            expect(inner).to receive(:called).exactly(3)\n            JSON::LD::Reader.new(subject, stream: true).each_triple do |subject, predicate, object|\n              inner.called(subject.class, predicate.class, object.class)\n            end\n          end\n        end\n      end\n    end\n  end\n\n  context \"Selected toRdf tests\" do\n    {\n      e004: {\n        input: %({\n          \"@context\": {\n            \"mylist1\": {\"@id\": \"http://example.com/mylist1\", \"@container\": \"@list\"}\n          },\n          \"@id\": \"http://example.org/id\",\n          \"mylist1\": { \"@list\": [ ] },\n          \"http://example.org/list1\": { \"@list\": [ null ] },\n          \"http://example.org/list2\": { \"@list\": [ {\"@value\": null} ] }\n        }),\n        expect: %(\n        <http://example.org/id> <http://example.com/mylist1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n        <http://example.org/id> <http://example.org/list1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n        <http://example.org/id> <http://example.org/list2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n        )\n      },\n      e015: {\n        input: %({\n          \"@context\": {\n            \"myset2\": {\"@id\": \"http://example.com/myset2\", \"@container\": \"@set\" }\n          },\n          \"@id\": \"http://example.org/id\",\n          \"myset2\": [ [], { \"@set\": [ null ] }, [ null ] ]\n        }),\n        expect: %(\n        )\n      },\n      in06: {\n        input: %({\n          \"@context\": {\n            \"@version\": 1.1,\n            \"@vocab\": \"http://example.org/vocab#\",\n            \"@base\": \"http://example.org/base/\",\n            \"id\": \"@id\",\n            \"type\": \"@type\",\n            \"data\": \"@nest\",\n            \"links\": \"@nest\",\n            \"relationships\": \"@nest\",\n            \"self\": {\"@type\": \"@id\"},\n            \"related\": {\"@type\": \"@id\"}\n          },\n          \"data\": [{\n            \"type\": \"articles\",\n            \"id\": \"1\",\n            \"author\": {\n              \"data\": { \"type\": \"people\", \"id\": \"9\" }\n            }\n          }]\n        }),\n        expect: %(\n        <http://example.org/base/1> <http://example.org/vocab#author> <http://example.org/base/9> .\n        <http://example.org/base/1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/vocab#articles> .\n        <http://example.org/base/9> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.org/vocab#people> .\n        ),\n        pending: \"@nest defining @id\"\n      }\n    }.each do |name, params|\n      it name do\n        run_to_rdf params\n      end\n    end\n  end\n\n  unless ENV['CI']\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::STREAM_SUITE}stream-toRdf-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name}#{' (negative test)' unless t.positiveTest?}\" do\n            pending \"Generalized RDF\" if t.options[:produceGeneralizedRdf]\n            pending \"@nest defining @id\" if %w[#tin06].include?(t.property('@id'))\n            pending \"double @reverse\" if %w[#te043].include?(t.property('@id'))\n            pending \"graph map containing named graph\" if %w[#te084 #te087 #te098 #te101 #te105\n                                                             #te106].include?(t.property('@id'))\n            pending \"named graphs\" if %w[#t0029 #te021].include?(t.property('@id'))\n\n            if %w[#t0118].include?(t.property('@id'))\n              expect { t.run self }.to write(/Statement .* is invalid/).to(:error)\n            elsif %w[#twf07].include?(t.property('@id'))\n              expect { t.run self }.to write(/skipping graph statement within invalid graph name/).to(:error)\n            elsif %w[#te075].include?(t.property('@id'))\n              expect { t.run self }.to write(/is invalid/).to(:error)\n            elsif %w[#te005 #tpr34 #tpr35 #tpr36 #tpr37 #tpr38 #tpr39 #te119 #te120].include?(t.property('@id'))\n              expect { t.run self }.to write(\"beginning with '@' are reserved for future use\").to(:error)\n            elsif %w[#te068].include?(t.property('@id'))\n              expect { t.run self }.to write(\"[DEPRECATION]\").to(:error)\n            elsif %w[#twf05].include?(t.property('@id'))\n              expect { t.run self }.to write(\"@language must be valid BCP47\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\n\n  def run_to_rdf(params)\n    input = params[:input]\n    logger.info(\"input: #{input}\")\n    output = RDF::Repository.new\n    if params[:expect]\n      RDF::NQuads::Reader.new(params[:expect], validate: false) { |r| output << r }\n      logger.info(\"expect (quads): #{output.dump(:nquads, validate: false)}\")\n    else\n      logger.info(\"expect: #{Regexp.new params[:exception]}\")\n    end\n\n    graph = params[:graph] || RDF::Repository.new\n    pending params.fetch(:pending, \"test implementation\") if !input || params[:pending]\n    if params[:exception]\n      expect do |b|\n        JSON::LD::Reader.new(input, stream: true, validate: true, logger: false, **params).each_statement(&b)\n      end.to raise_error { |er| expect(er.message).to include params[:exception] }\n    else\n      if params[:write]\n        expect do\n          JSON::LD::Reader.new(input, stream: true, logger: logger, **params) do |st|\n            graph << st\n          end\n        end.to write(params[:write]).to(:error)\n      else\n        expect do\n          JSON::LD::Reader.new(input, stream: true, logger: logger, **params) do |st|\n            graph << st\n          end\n        end.not_to write.to(:error)\n      end\n      logger.info(\"results (quads): #{graph.dump(:nquads, validate: false)}\")\n      expect(graph).to be_equivalent_graph(output, logger: logger, inputDocument: input)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/streaming_writer_spec.rb",
    "content": "require_relative 'spec_helper'\nrequire 'rdf/spec/writer'\nrequire 'json/ld/streaming_writer'\n\ndescribe JSON::LD::StreamingWriter do\n  let(:logger) { RDF::Spec.logger }\n\n  after { |example| puts logger if example.exception }\n\n  it_behaves_like 'an RDF::Writer' do\n    let(:writer) { JSON::LD::Writer.new(StringIO.new(\"\"), stream: true) }\n  end\n\n  context \"simple tests\" do\n    it \"uses full URIs without base\" do\n      input = %(<http://a/b> <http://a/c> <http://a/d> .)\n      obj = serialize(input)\n      expect(parse(obj.to_json, format: :jsonld)).to be_equivalent_graph(parse(input), logger: logger)\n      expect(obj).to produce_jsonld([{\n        '@id' => \"http://a/b\",\n        \"http://a/c\" => [{ \"@id\" => \"http://a/d\" }]\n      }], logger)\n    end\n\n    it \"writes multiple kinds of statements\" do\n      input = %(\n        <https://senet.org/gm> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://vocab.org/frbr/core#Work> .\n        <https://senet.org/gm> <http://purl.org/dc/terms/title> \"Rhythm Paradise\"@en .\n        <https://senet.org/gm> <https://senet.org/ns#unofficialTitle> \"Rhythm Tengoku\"@en .\n        <https://senet.org/gm> <https://senet.org/ns#urlkey> \"rhythm-tengoku\" .\n      )\n      obj = serialize(input)\n      expect(parse(obj.to_json, format: :jsonld)).to be_equivalent_graph(parse(input), logger: logger)\n      expect(obj).to eql JSON.parse(%([{\n        \"@id\": \"https://senet.org/gm\",\n        \"@type\": [\"http://vocab.org/frbr/core#Work\"],\n        \"http://purl.org/dc/terms/title\": [{\"@value\": \"Rhythm Paradise\", \"@language\": \"en\"}],\n        \"https://senet.org/ns#unofficialTitle\": [{\"@value\": \"Rhythm Tengoku\", \"@language\": \"en\"}],\n        \"https://senet.org/ns#urlkey\": [{\"@value\": \"rhythm-tengoku\"}]\n      }]))\n    end\n\n    it \"serializes multiple subjects\" do\n      input = '\n        @prefix : <http://www.w3.org/2006/03/test-description#> .\n        @prefix dc: <http://purl.org/dc/terms/> .\n        <http://example.com/test-cases/0001> a :TestCase .\n        <http://example.com/test-cases/0002> a :TestCase .\n      '\n      obj = serialize(input)\n      expect(parse(obj.to_json, format: :jsonld)).to be_equivalent_graph(parse(input), logger: logger)\n      expect(obj).to match_array(JSON.parse(%([\n        {\"@id\": \"http://example.com/test-cases/0001\", \"@type\": [\"http://www.w3.org/2006/03/test-description#TestCase\"]},\n        {\"@id\": \"http://example.com/test-cases/0002\", \"@type\": [\"http://www.w3.org/2006/03/test-description#TestCase\"]}\n      ])))\n    end\n  end\n\n  context \"Named Graphs\" do\n    {\n      \"default\" => [\n        '{<a> <b> <c> .}',\n        '[{\"@id\": \"a\", \"b\": [{\"@id\": \"c\"}]}]'\n      ],\n      \"named\" => [\n        '<C> {<a> <b> <c> .}',\n        '[{\"@id\" :  \"C\", \"@graph\" :  [{\"@id\": \"a\", \"b\": [{\"@id\": \"c\"}]}]}]'\n      ],\n      \"combo\" => [\n        '\n          <a> <b> <c> .\n          <C> {<A> <b> <c> .}\n        ',\n        '[\n          {\"@id\": \"a\", \"b\": [{\"@id\": \"c\"}]},\n          {\"@id\": \"C\", \"@graph\": [{\"@id\": \"A\", \"b\": [{\"@id\": \"c\"}]}]}\n        ]'\n      ],\n      \"combo with duplicated statement\" => [\n        '\n          <a> <b> <c> .\n          <C> {<a> <b> <c> .}\n        ',\n        '[\n          {\"@id\": \"a\", \"b\": [{\"@id\": \"c\"}]},\n          {\"@id\": \"C\", \"@graph\": [{\"@id\": \"a\", \"b\": [{\"@id\": \"c\"}]}]}\n        ]'\n      ]\n    }.each_pair do |title, (input, matches)|\n      context title do\n        subject { serialize(input) }\n\n        it \"matches expected json\" do\n          expect(subject).to match_array(JSON.parse(matches))\n        end\n      end\n    end\n  end\n\n  unless ENV['CI']\n    context \"Writes fromRdf tests to isomorphic graph\" do\n      require 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}fromRdf-manifest.jsonld\")\n      [nil, {}].each do |ctx|\n        context \"with context #{ctx.inspect}\" do\n          describe m.name do\n            m.entries.each do |t|\n              next unless t.positiveTest? && !t.property('input').include?('0016')\n\n              t.logger = RDF::Spec.logger\n              t.logger.info \"test: #{t.inspect}\"\n              t.logger.info \"source: #{t.input}\"\n              specify \"#{t.property('@id')}: #{t.name}\" do\n                repo = RDF::Repository.load(t.input_loc, format: :nquads)\n                jsonld = JSON::LD::Writer.buffer(stream: true, context: ctx, logger: t.logger, **t.options) do |writer|\n                  writer << repo\n                end\n                t.logger.info \"Generated: #{jsonld}\"\n\n                # And then, re-generate jsonld as RDF\n                expect(parse(jsonld, format: :jsonld, **t.options)).to be_equivalent_graph(repo, t)\n              end\n            end\n          end\n        end\n      end\n    end\n  end\n\n  def parse(input, format: :trig, **options)\n    reader = RDF::Reader.for(format)\n    RDF::Repository.new << reader.new(input, **options)\n  end\n\n  # Serialize ntstr to a string and compare against regexps\n  def serialize(ntstr, **options)\n    g = ntstr.is_a?(String) ? parse(ntstr, **options) : ntstr\n    logger = RDF::Spec.logger\n    logger.info(g.dump(:ttl))\n    result = JSON::LD::Writer.buffer(logger: logger, stream: true, **options) do |writer|\n      writer << g\n    end\n    puts result if $verbose\n\n    JSON.parse(result)\n  end\nend\n"
  },
  {
    "path": "spec/suite_compact_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}compact-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            expect { t.run self }.not_to write.to(:error)\n          end\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            expect { t.run self }.not_to write.to(:error)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_expand_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}expand-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          # MultiJson use OJ, by default, which doesn't handle native numbers the same as the JSON gem.\n          t.options[:adapter] = :json_gem if %w[#tjs12].include?(t.property('@id'))\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            if %w[#t0068].include?(t.property('@id'))\n              expect { t.run self }.to write(\"[DEPRECATION]\").to(:error)\n            elsif %w[#t0005 #tpr34 #tpr35 #tpr36 #tpr37 #tpr38 #tpr39 #t0119 #t0120].include?(t.property('@id'))\n              expect { t.run self }.to write(\"beginning with '@' are reserved for future use\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            if %w[#t0068].include?(t.property('@id'))\n              expect { t.run self }.to write(\"[DEPRECATION]\").to(:error)\n            elsif %w[#t0005 #tpr34 #tpr35 #tpr36 #tpr37 #tpr38 #tpr39 #t0119 #t0120].include?(t.property('@id'))\n              expect { t.run self }.to write(\"beginning with '@' are reserved for future use\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_flatten_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}flatten-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          t.options[:remap_bnodes] = %w[#t0045].include?(t.property('@id'))\n\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            if %w[#t0005].include?(t.property('@id'))\n              expect { t.run self }.to write(\"Terms beginning with '@' are reserved for future use\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n\n          # Skip ordered tests when remapping bnodes\n          next if t.options[:remap_bnodes]\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            if %w[#t0005].include?(t.property('@id'))\n              expect { t.run self }.to write(\"Terms beginning with '@' are reserved for future use\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_frame_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::FRAME_SUITE}frame-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          t.options[:remap_bnodes] = %w[#t0021 #tp021].include?(t.property('@id'))\n\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            expect { t.run self }.not_to write.to(:error)\n          end\n\n          # Skip ordered tests when remapping bnodes\n          next if t.options[:remap_bnodes]\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            pending(\"changes due to blank node reordering\") if %w[#tp021].include?(t.property('@id'))\n            expect { t.run self }.not_to write.to(:error)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_from_rdf_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}fromRdf-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            expect { t.run self }.not_to write.to(:error)\n          end\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            expect { t.run self }.not_to write.to(:error)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_helper.rb",
    "content": "require 'json/ld'\n\n# For now, override RDF::Utils::File.open_file to look for the file locally before attempting to retrieve it\nmodule RDF::Util\n  module File\n    LOCAL_PATHS = {\n      \"https://w3c.github.io/json-ld-api/tests/\" => ::File.expand_path('json-ld-api/tests', __dir__) + '/',\n      \"https://w3c.github.io/json-ld-framing/tests/\" => ::File.expand_path('json-ld-framing/tests', __dir__) + '/',\n      \"https://w3c.github.io/json-ld-streaming/tests/\" => ::File.expand_path('json-ld-streaming/tests',\n        __dir__) + '/',\n      \"https://json-ld.github.io/json-ld-star/tests/\" => ::File.expand_path('json-ld-star/tests', __dir__) + '/',\n      \"file:\" => \"\"\n    }\n\n    class << self\n      alias original_open_file open_file\n    end\n\n    ##\n    # Override to use Patron for http and https, Kernel.open otherwise.\n    #\n    # @param [String] filename_or_url to open\n    # @param  [Hash{Symbol => Object}] options\n    # @option options [Array, String] :headers\n    #   HTTP Request headers.\n    # @return [IO] File stream\n    # @yield [IO] File stream\n    def self.open_file(filename_or_url, **options, &block)\n      LOCAL_PATHS.each do |r, l|\n        next unless Dir.exist?(l) && filename_or_url.start_with?(r)\n\n        # puts \"attempt to open #{filename_or_url} locally\"\n        url_no_frag_or_query = RDF::URI(filename_or_url).dup\n        url_no_frag_or_query.query = nil\n        url_no_frag_or_query.fragment = nil\n        localpath = url_no_frag_or_query.to_s.sub(r, l)\n        response = begin\n          ::File.open(localpath)\n        rescue Errno::ENOENT => e\n          raise IOError, e.message\n        end\n\n        document_options = {\n          base_uri: RDF::URI(filename_or_url),\n          charset: Encoding::UTF_8,\n          code: 200,\n          headers: options.fetch(:headers, {})\n        }\n        # puts \"use #{filename_or_url} locally\"\n        document_options[:headers][:content_type] = case localpath\n        when /\\.ttl$/    then 'text/turtle'\n        when /\\.nq$/     then 'application/n-quads'\n        when /\\.nt$/     then 'application/n-triples'\n        when /\\.html$/   then 'text/html'\n        when /\\.jsonld$/ then 'application/ld+json'\n        when /\\.json$/   then 'application/json'\n        else                  'unknown'\n        end\n\n        document_options[:headers][:content_type] = response.content_type if response.respond_to?(:content_type)\n        # For overriding content type from test data\n        document_options[:headers][:content_type] = options[:contentType] if options[:contentType]\n\n        remote_document = RDF::Util::File::RemoteDocument.new(response.read, **document_options)\n        response.close\n        return yield remote_document if block\n\n        return remote_document\n      end\n\n      original_open_file(filename_or_url, **options, &block)\n    end\n  end\nend\n\nmodule Fixtures\n  module SuiteTest\n    SUITE = RDF::URI(\"https://w3c.github.io/json-ld-api/tests/\")\n    FRAME_SUITE = RDF::URI(\"https://w3c.github.io/json-ld-framing/tests/\")\n    STREAM_SUITE = RDF::URI(\"https://w3c.github.io/json-ld-streaming/tests/\")\n    STAR_SUITE = RDF::URI(\"https://json-ld.github.io/json-ld-star/tests/\")\n\n    class Manifest < JSON::LD::Resource\n      attr_accessor :manifest_url\n\n      def self.open(file)\n        RDF::Util::File.open_file(file) do |remote|\n          json = JSON.parse(remote.read)\n          if block_given?\n            yield from_jsonld(json, manifest_url: RDF::URI(file))\n          else\n            from_jsonld(json, manifest_url: RDF::URI(file))\n          end\n        end\n      end\n\n      def initialize(json, manifest_url:)\n        @manifest_url = manifest_url\n        super\n      end\n\n      # @param [Hash] json framed JSON-LD\n      # @return [Array<Manifest>]\n      def self.from_jsonld(json, manifest_url:)\n        Manifest.new(json, manifest_url: manifest_url)\n      end\n\n      def entries\n        # Map entries to resources\n        attributes['sequence'].map do |e|\n          e.is_a?(String) ? Manifest.open(manifest_url.join(e).to_s) : Entry.new(e, manifest_url: manifest_url)\n        end\n      end\n    end\n\n    class Entry < JSON::LD::Resource\n      attr_accessor :logger, :manifest_url\n\n      def initialize(json, manifest_url:)\n        @manifest_url = manifest_url\n        super\n      end\n\n      # Base is expanded input if not specified\n      def base\n        options.fetch('base', manifest_url.join(property('input')).to_s)\n      end\n\n      def options\n        @options ||= begin\n          opts = {\n            documentLoader: Fixtures::SuiteTest.method(:documentLoader),\n            validate: true,\n            lowercaseLanguage: true\n          }\n          { 'specVersion' => \"json-ld-1.1\" }.merge(property('option') || {}).each do |k, v|\n            opts[k.to_sym] = v\n          end\n          if opts[:expandContext] && !RDF::URI(opts[:expandContext]).absolute?\n            # Resolve relative to manifest location\n            opts[:expandContext] = manifest_url.join(opts[:expandContext]).to_s\n          end\n          opts\n        end\n      end\n\n      # Alias input, context, expect and frame\n      %w[input context expect frame].each do |m|\n        define_method(m.to_sym) do\n          return nil unless property(m)\n\n          res = nil\n          file = send(\"#{m}_loc\".to_sym)\n\n          dl_opts = { safe: true }\n          dl_opts[:contentType] = options[:contentType] if m == 'input' && options[:contentType]\n          RDF::Util::File.open_file(file, **dl_opts) do |remote_doc|\n            res = remote_doc.read\n          end\n          res\n        end\n\n        define_method(\"#{m}_loc\".to_sym) do\n          file = property(m)\n\n          # Handle redirection internally\n          file = options[:redirectTo] if m == \"input\" && options[:redirectTo]\n\n          property(m) && manifest_url.join(file).to_s\n        end\n\n        define_method(\"#{m}_json\".to_sym) do\n          JSON.parse(send(m)) if property(m)\n        end\n      end\n\n      def testType\n        property('@type').reject { |t| t =~ /EvaluationTest|SyntaxTest/ }.first\n      end\n\n      def evaluationTest?\n        property('@type').to_s.include?('EvaluationTest')\n      end\n\n      def positiveTest?\n        property('@type').to_s.include?('Positive')\n      end\n\n      def syntaxTest?\n        property('@type').to_s.include?('Syntax')\n      end\n\n      # Execute the test\n      def run(rspec_example = nil)\n        logger = @logger = RDF::Spec.logger\n        logger.info \"test: #{inspect}\"\n        logger.info \"purpose: #{purpose}\"\n        logger.info \"source: #{begin\n          input\n        rescue StandardError\n          nil\n        end}\"\n        logger.info \"context: #{context}\" if context_loc\n        logger.info \"options: #{options.inspect}\" unless options.empty?\n        logger.info \"frame: #{frame}\" if frame_loc\n\n        options = self.options\n        if options[:specVersion] == \"json-ld-1.0\"\n          skip \"1.0 test\"\n          return\n        end\n\n        # Because we're doing exact comparisons when ordered.\n        options[:lowercaseLanguage] = true if options[:ordered]\n\n        if positiveTest?\n          if expect_loc\n            logger.info \"expected: #{begin\n              expect\n            rescue StandardError\n              nil\n            end}\"\n          end\n          begin\n            result = case testType\n            when \"jld:ExpandTest\"\n              JSON::LD::API.expand(input_loc, logger: logger, **options)\n            when \"jld:CompactTest\"\n              JSON::LD::API.compact(input_loc, context_json['@context'], logger: logger, **options)\n            when \"jld:FlattenTest\"\n              JSON::LD::API.flatten(input_loc, (context_json['@context'] if context_loc), logger: logger, **options)\n            when \"jld:FrameTest\"\n              JSON::LD::API.frame(input_loc, frame_loc, logger: logger, **options)\n            when \"jld:FromRDFTest\"\n              # Use an array, to preserve input order\n              repo = RDF::NQuads::Reader.open(input_loc, rdfstar: options[:rdfstar]) do |reader|\n                reader.each_statement.to_a\n              end.to_a.uniq.extend(RDF::Enumerable)\n              logger.info \"repo: #{repo.dump(id == '#t0012' ? :nquads : :trig)}\"\n              JSON::LD::API.fromRdf(repo, logger: logger, **options)\n            when \"jld:ToRDFTest\"\n              repo = RDF::Repository.new\n              if manifest_url.to_s.include?('stream')\n                JSON::LD::Reader.open(input_loc, stream: true, logger: logger, **options) do |statement|\n                  repo << statement\n                end\n              else\n                JSON::LD::API.toRdf(input_loc, rename_bnodes: false, logger: logger, **options) do |statement|\n                  repo << statement\n                end\n              end\n              logger.info \"nq: #{repo.map(&:to_nquads)}\"\n              repo\n            when \"jld:HttpTest\"\n              res = input_json\n              rspec_example.instance_eval do\n                # use the parsed input file as @result for Rack Test application\n                @results = res\n                get \"/\", {}, \"HTTP_ACCEPT\" => options.fetch(:httpAccept, \"\"),\n                  \"HTTP_LINK\" => options.fetch(:httpLink, nil)\n                expect(last_response.status).to eq 200\n                expect(last_response.content_type).to eq options.fetch(:contentType, \"\")\n                JSON.parse(last_response.body)\n              end\n            else\n              raise(\"Unknown test type: #{testType}\")\n            end\n            if evaluationTest?\n              if testType == \"jld:ToRDFTest\"\n                expected = RDF::Repository.new << RDF::NQuads::Reader.new(expect, rdfstar: options[:rdfstar],\n                  logger: [])\n                rspec_example.instance_eval do\n                  expect(result).to be_equivalent_graph(expected, logger)\n                end\n              else\n                expected = JSON.load(expect)\n\n                # If called for, remap bnodes\n                result = remap_bnodes(result, expected) if options[:remap_bnodes]\n\n                if options[:ordered]\n                  # Compare without transformation\n                  rspec_example.instance_eval do\n                    expect(result).to produce(expected, logger)\n                  end\n                else\n                  # Without key ordering, reorder result and expected embedded array values and compare\n                  # If results are compacted, expand both, reorder and re-compare\n                  rspec_example.instance_eval do\n                    expect(result).to produce_jsonld(expected, logger)\n                  end\n\n                  # If results are compacted, expand both, reorder and re-compare\n                  if result.to_s.include?('@context')\n                    exp_expected = JSON::LD::API.expand(expected, **options)\n                    exp_result = JSON::LD::API.expand(result, **options)\n                    rspec_example.instance_eval do\n                      expect(exp_result).to produce_jsonld(exp_expected, logger)\n                    end\n                  end\n                end\n              end\n            else\n              rspec_example.instance_eval do\n                expect(result).not_to be_nil\n              end\n            end\n          rescue JSON::LD::JsonLdError => e\n            raise(\"Processing error: #{e.message}\")\n          end\n        else\n          logger.info \"expected: #{property('expect')}\" if property('expect')\n          t = self\n          rspec_example.instance_eval do\n            raise(\"No support for NegativeSyntaxTest\") unless t.evaluationTest?\n\n            expect do\n              case t.testType\n              when \"jld:ExpandTest\"\n                JSON::LD::API.expand(t.input_loc, logger: logger, **options)\n              when \"jld:CompactTest\"\n                JSON::LD::API.compact(t.input_loc, t.context_json['@context'], logger: logger, **options)\n              when \"jld:FlattenTest\"\n                JSON::LD::API.flatten(t.input_loc, t.context_loc, logger: logger, **options)\n              when \"jld:FrameTest\"\n                JSON::LD::API.frame(t.input_loc, t.frame_loc, logger: logger, **options)\n              when \"jld:FromRDFTest\"\n                repo = RDF::Repository.load(t.input_loc, rdfstar: options[:rdfstar])\n                logger.info \"repo: #{repo.dump(t.id == '#t0012' ? :nquads : :trig)}\"\n                JSON::LD::API.fromRdf(repo, logger: logger, **options)\n              when \"jld:HttpTest\"\n                rspec_example.instance_eval do\n                  # use the parsed input file as @result for Rack Test application\n                  @results = t.input_json\n                  get \"/\", {}, \"HTTP_ACCEPT\" => options.fetch(:httpAccept, \"\")\n                  expect(last_response.status).to eq t.property('expect')\n                  expect(last_response.content_type).to eq options.fetch(:contentType, \"\")\n                  raise \"406\" if t.property('expect') == 406\n\n                  raise \"Expected status #{t.property('expectErrorCode')}, not #{last_response.status}\"\n                end\n              when \"jld:ToRDFTest\"\n                if t.manifest_url.to_s.include?('stream')\n                  JSON::LD::Reader.open(t.input_loc, stream: true, logger: logger, **options).each_statement {}\n                else\n                  JSON::LD::API.toRdf(t.input_loc, rename_bnodes: false, logger: logger, **options) {}\n                end\n              else\n                success(\"Unknown test type: #{testType}\")\n              end\n            end.to raise_error(/#{t.property('expectErrorCode')}/)\n          end\n        end\n      end\n\n      # Don't use NQuads writer so that we don't escape Unicode\n      def to_quad(thing)\n        case thing\n        when RDF::URI\n          thing.to_ntriples\n        when RDF::Node\n          escaped(thing)\n        when RDF::Literal::Double\n          thing.canonicalize.to_ntriples\n        when RDF::Literal\n          v = quoted(escaped(thing.value))\n          case thing.datatype\n          when nil, \"http://www.w3.org/2001/XMLSchema#string\", \"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\"\n            # Ignore these\n          else\n            v += \"^^#{to_quad(thing.datatype)}\"\n          end\n          v += \"@#{thing.language}\" if thing.language\n          v\n        when RDF::Statement\n          thing.to_quad.map { |r| to_quad(r) }.compact.join(\" \") + \" .\\n\"\n        end\n      end\n\n      ##\n      # @param  [String] string\n      # @return [String]\n      def quoted(string)\n        \"\\\"#{string}\\\"\"\n      end\n\n      ##\n      # @param  [String, #to_s] string\n      # @return [String]\n      def escaped(string)\n        string.to_s.gsub('\\\\', '\\\\\\\\').gsub(\"\\t\", '\\\\t')\n          .gsub(\"\\n\", '\\\\n').gsub(\"\\r\", '\\\\r').gsub('\"', '\\\\\"')\n      end\n    end\n\n    ##\n    # Document loader to use for tests having `useDocumentLoader` option\n    #\n    # @param [RDF::URI, String] url\n    # @param [Hash<Symbol => Object>] options\n    # @option options [Boolean] :validate\n    #   Allow only appropriate content types\n    # @return [RDF::Util::File::RemoteDocument] retrieved remote document and context information unless block given\n    # @yield remote_document\n    # @yieldparam [RDF::Util::File::RemoteDocument] remote_document\n    # @raise [JsonLdError]\n    def documentLoader(url, **options, &block)\n      options[:headers] ||= JSON::LD::API::OPEN_OPTS[:headers].dup\n      options[:headers][:link] = Array(options[:httpLink]).join(',') if options[:httpLink]\n\n      url = url.to_s[5..-1] if url.to_s.start_with?(\"file:\")\n      JSON::LD::API.documentLoader(url, **options, &block)\n    rescue JSON::LD::JsonLdError::LoadingDocumentFailed, JSON::LD::JsonLdError::MultipleContextLinkHeaders\n      raise unless options[:safe]\n\n      \"don't raise error\"\n    end\n    module_function :documentLoader\n  end\nend\n"
  },
  {
    "path": "spec/suite_html_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}html-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            expect { t.run self }.not_to write.to(:error)\n          end\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            expect { t.run self }.not_to write.to(:error)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_http_spec.rb",
    "content": "require_relative 'spec_helper'\nrequire 'rack/test'\n\nbegin\n  unless ENV['CI']\n    describe JSON::LD do\n      describe \"test suite\" do\n        require_relative 'suite_helper'\n        m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}http-manifest.jsonld\")\n        describe m.name do\n          include Rack::Test::Methods\n          before(:all) { JSON::LD::Writer.default_context = \"#{Fixtures::SuiteTest::SUITE}http/default-context.jsonld\" }\n          after(:all) { JSON::LD::Writer.default_context = nil }\n\n          let(:app) do\n            JSON::LD::ContentNegotiation.new(\n              double(\"Target Rack Application\", :call => [200, {}, @results]),\n              {}\n            )\n          end\n\n          m.entries.each do |t|\n            specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n              t.options[:ordered] = false\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\nrescue IOError\n  # Skip this until such a test suite is re-added\nend\n"
  },
  {
    "path": "spec/suite_remote_doc_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}remote-doc-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name} unordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = false\n            expect { t.run self }.not_to write.to(:error)\n          end\n\n          specify \"#{t.property('@id')}: #{t.name} ordered#{' (negative test)' unless t.positiveTest?}\" do\n            t.options[:ordered] = true\n            expect { t.run self }.not_to write.to(:error)\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/suite_to_rdf_spec.rb",
    "content": "require_relative 'spec_helper'\n\nunless ENV['CI']\n  describe JSON::LD do\n    describe \"test suite\" do\n      require_relative 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}toRdf-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          specify \"#{t.property('@id')}: #{t.name}#{' (negative test)' unless t.positiveTest?}\" do\n            pending \"Generalized RDF\" if t.options[:produceGeneralizedRdf]\n            pending \"RDF-star\" if t.property('@id') == '#te122'\n            if %w[#t0118].include?(t.property('@id'))\n              expect { t.run self }.to write(/Statement .* is invalid/).to(:error)\n            elsif %w[#te075].include?(t.property('@id'))\n              expect { t.run self }.to write(/is invalid/).to(:error)\n            elsif %w[#te005 #tpr34 #tpr35 #tpr36 #tpr37 #tpr38 #tpr39 #te119 #te120].include?(t.property('@id'))\n              expect { t.run self }.to write(\"beginning with '@' are reserved for future use\").to(:error)\n            elsif %w[#te068].include?(t.property('@id'))\n              expect { t.run self }.to write(\"[DEPRECATION]\").to(:error)\n            elsif %w[#twf05].include?(t.property('@id'))\n              expect { t.run self }.to write(\"@language must be valid BCP47\").to(:error)\n            else\n              expect { t.run self }.not_to write.to(:error)\n            end\n          end\n        end\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/support/extensions.rb",
    "content": "# frozen_string_literal: true\n\nclass Object\n  def equivalent_jsonld?(other, ordered: false)\n    self == other\n  end\nend\n\nclass Hash\n  def equivalent_jsonld?(other, ordered: false)\n    return false unless other.is_a?(Hash) && other.length == length\n\n    all? do |key, value|\n      # List values are still ordered\n      if key == '@language' && value.is_a?(String)\n        value.downcase.equivalent_jsonld?(other[key].to_s.downcase, ordered: key == '@list')\n      else\n        value.equivalent_jsonld?(other[key], ordered: key == '@list')\n      end\n    end\n  end\n\n  def diff(other)\n    keys.each_with_object({}) do |key, memo|\n      memo[key] = [self[key], other[key]] unless self[key] == other[key]\n    end\n  end\nend\n\nclass Array\n  def equivalent_jsonld?(other, ordered: false)\n    return false unless other.is_a?(Array) && other.length == length\n\n    if ordered\n      b = other.dup\n      # All elements must match in order\n      all? { |av| av.equivalent_jsonld?(b.shift) }\n    else\n      # Look for any element which matches\n      all? do |av|\n        other.any? { |bv| av.equivalent_jsonld?(bv) }\n      end\n    end\n  end\nend\n"
  },
  {
    "path": "spec/test-files/test-1-compacted.jsonld",
    "content": "{\n    \"@context\": {\n        \"avatar\": \"http://xmlns.com/foaf/0.1/avatar\",\n        \"homepage\": \"http://xmlns.com/foaf/0.1/homepage\",\n        \"name\": \"http://xmlns.com/foaf/0.1/name\"\n    },\n    \"avatar\": \"http://twitter.com/account/profile_image/manusporny\",\n    \"homepage\": \"http://manu.sporny.org/\",\n    \"name\": \"Manu Sporny\"\n}\n"
  },
  {
    "path": "spec/test-files/test-1-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"name\": \"http://xmlns.com/foaf/0.1/name\",\n    \"homepage\": \"http://xmlns.com/foaf/0.1/homepage\",\n    \"avatar\": \"http://xmlns.com/foaf/0.1/avatar\"\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-1-expanded.jsonld",
    "content": "[{\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu Sporny\"}],\n    \"http://xmlns.com/foaf/0.1/homepage\": [{\"@value\": \"http://manu.sporny.org/\"}],\n    \"http://xmlns.com/foaf/0.1/avatar\": [{\"@value\": \"http://twitter.com/account/profile_image/manusporny\"}]\n}]"
  },
  {
    "path": "spec/test-files/test-1-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"name\": \"http://xmlns.com/foaf/0.1/name\",\n    \"homepage\": \"http://xmlns.com/foaf/0.1/homepage\",\n    \"avatar\": \"http://xmlns.com/foaf/0.1/avatar\"\n  },\n  \"name\": \"Manu Sporny\",\n  \"homepage\": \"http://manu.sporny.org/\",\n  \"avatar\": \"http://twitter.com/account/profile_image/manusporny\"\n}\n"
  },
  {
    "path": "spec/test-files/test-1-rdf.ttl",
    "content": "@prefix avatar: <http://xmlns.com/foaf/0.1/avatar> .\n@prefix homepage: <http://xmlns.com/foaf/0.1/homepage> .\n@prefix name: <http://xmlns.com/foaf/0.1/name> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n [ avatar: \"http://twitter.com/account/profile_image/manusporny\";\n    homepage: \"http://manu.sporny.org/\";\n    name: \"Manu Sporny\"] .\n"
  },
  {
    "path": "spec/test-files/test-2-compacted.jsonld",
    "content": "{\n    \"@context\": {\n        \"dc\": \"http://purl.org/dc/elements/1.1/\",\n        \"ex\": \"http://example.org/vocab#\"\n    },\n    \"@id\": \"http://example.org/library\",\n    \"@type\": \"ex:Library\",\n    \"ex:contains\": {\n        \"@id\": \"http://example.org/library/the-republic\",\n        \"@type\": \"ex:Book\",\n        \"dc:creator\": \"Plato\",\n        \"dc:title\": \"The Republic\",\n        \"ex:contains\": {\n            \"@id\": \"http://example.org/library/the-republic#introduction\",\n            \"@type\": \"ex:Chapter\",\n            \"dc:description\": \"An introductory chapter on The Republic.\",\n            \"dc:title\": \"The Introduction\"\n        }\n    }\n}\n"
  },
  {
    "path": "spec/test-files/test-2-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"dc\": \"http://purl.org/dc/elements/1.1/\",\n    \"ex\": \"http://example.org/vocab#\"\n  }\n  \n}\n"
  },
  {
    "path": "spec/test-files/test-2-expanded.jsonld",
    "content": "[{\n    \"@id\": \"http://example.org/library\",\n    \"@type\": [\"http://example.org/vocab#Library\"],\n    \"http://example.org/vocab#contains\": [{\n        \"@id\": \"http://example.org/library/the-republic\",\n        \"@type\": [\"http://example.org/vocab#Book\"],\n        \"http://purl.org/dc/elements/1.1/creator\": [{\"@value\": \"Plato\"}],\n        \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Republic\"}],\n        \"http://example.org/vocab#contains\": [{\n            \"@id\": \"http://example.org/library/the-republic#introduction\",\n            \"@type\": [\"http://example.org/vocab#Chapter\"],\n            \"http://purl.org/dc/elements/1.1/description\": [{\"@value\": \"An introductory chapter on The Republic.\"}],\n            \"http://purl.org/dc/elements/1.1/title\": [{\"@value\": \"The Introduction\"}]\n        }]\n    }]\n}]"
  },
  {
    "path": "spec/test-files/test-2-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"dc\": \"http://purl.org/dc/elements/1.1/\",\n    \"ex\": \"http://example.org/vocab#\"\n  },\n  \"@id\": \"http://example.org/library\",\n  \"@type\": \"ex:Library\",\n  \"ex:contains\": {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": \"ex:Book\",\n    \"dc:creator\": \"Plato\",\n    \"dc:title\": \"The Republic\",\n    \"ex:contains\": {\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": \"ex:Chapter\",\n      \"dc:description\": \"An introductory chapter on The Republic.\",\n      \"dc:title\": \"The Introduction\"\n    }\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-2-rdf.ttl",
    "content": "@prefix dc: <http://purl.org/dc/elements/1.1/> .\n@prefix ex: <http://example.org/vocab#> .\n\n<http://example.org/library> a ex:Library;\n   ex:contains <http://example.org/library/the-republic> .\n\n<http://example.org/library/the-republic> a ex:Book;\n   ex:contains <http://example.org/library/the-republic#introduction>;\n   dc:creator \"Plato\";\n   dc:title \"The Republic\" .\n\n<http://example.org/library/the-republic#introduction> a ex:Chapter;\n   dc:description \"An introductory chapter on The Republic.\";\n   dc:title \"The Introduction\" .\n"
  },
  {
    "path": "spec/test-files/test-3-compacted.jsonld",
    "content": "{\n   \"@context\": {\n      \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n      \"name\": \"http://xmlns.com/foaf/0.1/name\",\n      \"age\": {\"@id\": \"http://xmlns.com/foaf/0.1/age\", \"@type\": \"xsd:integer\"},\n      \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"}\n   },\n   \"name\": \"Manu Sporny\",\n   \"age\": \"41\",\n   \"homepage\": \"http://manu.sporny.org/\"\n}\n"
  },
  {
    "path": "spec/test-files/test-3-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n    \"name\": \"http://xmlns.com/foaf/0.1/name\",\n    \"age\": {\"@id\": \"http://xmlns.com/foaf/0.1/age\", \"@type\": \"xsd:integer\"},\n    \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"}\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-3-expanded.jsonld",
    "content": "[{\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu Sporny\"}],\n    \"http://xmlns.com/foaf/0.1/age\": [{\n        \"@type\": \"http://www.w3.org/2001/XMLSchema#integer\",\n        \"@value\": \"41\"\n    }],\n    \"http://xmlns.com/foaf/0.1/homepage\": [{\n        \"@id\": \"http://manu.sporny.org/\"\n    }]\n}]\n"
  },
  {
    "path": "spec/test-files/test-3-input.jsonld",
    "content": "{\n   \"@context\": {\n      \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n      \"name\": \"http://xmlns.com/foaf/0.1/name\",\n      \"age\": {\"@id\": \"http://xmlns.com/foaf/0.1/age\", \"@type\": \"xsd:integer\"},\n      \"homepage\": {\"@id\": \"http://xmlns.com/foaf/0.1/homepage\", \"@type\": \"@id\"}\n   },\n   \"name\": \"Manu Sporny\",\n   \"age\": \"41\",\n   \"homepage\": \"http://manu.sporny.org/\"\n}\n"
  },
  {
    "path": "spec/test-files/test-3-rdf.ttl",
    "content": "@prefix age: <http://xmlns.com/foaf/0.1/age> .\n@prefix homepage: <http://xmlns.com/foaf/0.1/homepage> .\n@prefix name: <http://xmlns.com/foaf/0.1/name> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n [ age: 41;\n    homepage: <http://manu.sporny.org/>;\n    name: \"Manu Sporny\"] .\n"
  },
  {
    "path": "spec/test-files/test-4-compacted.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \":#me\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Manu Sporny\",\n  \"foaf:homepage\":  { \"@id\": \"http://manu.sporny.org/\" }\n}\n"
  },
  {
    "path": "spec/test-files/test-4-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  }\n}\n\n"
  },
  {
    "path": "spec/test-files/test-4-expanded.jsonld",
    "content": "[{\n  \"@id\": \"http://manu.sporny.org/#me\",\n  \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n  \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu Sporny\"}],\n  \"http://xmlns.com/foaf/0.1/homepage\": [{ \"@id\": \"http://manu.sporny.org/\" }]\n}]"
  },
  {
    "path": "spec/test-files/test-4-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"foo\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \"foo:#me\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Manu Sporny\",\n  \"foaf:homepage\":  { \"@id\": \"foo:\" }\n}\n"
  },
  {
    "path": "spec/test-files/test-4-rdf.ttl",
    "content": "@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n\n<http://manu.sporny.org/#me> a foaf:Person;\n   foaf:homepage <http://manu.sporny.org/>;\n   foaf:name \"Manu Sporny\" .\n"
  },
  {
    "path": "spec/test-files/test-5-compacted.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \":#me\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Manu Sporny\",\n  \"foaf:knows\": {\n    \"@type\":          \"foaf:Person\",\n    \"foaf:name\":      \"Gregg Kellogg\"\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-5-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  }\n}\n\n"
  },
  {
    "path": "spec/test-files/test-5-expanded.jsonld",
    "content": "[{\n  \"@id\": \"http://manu.sporny.org/#me\",\n  \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n  \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu Sporny\"}],\n  \"http://xmlns.com/foaf/0.1/knows\": [{\n    \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Gregg Kellogg\"}]\n  }]\n}]\n"
  },
  {
    "path": "spec/test-files/test-5-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"foo\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \"foo:#me\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Manu Sporny\",\n  \"foaf:knows\": {\n    \"@type\":          \"foaf:Person\",\n    \"foaf:name\":      \"Gregg Kellogg\"\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-5-rdf.ttl",
    "content": "@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n<http://manu.sporny.org/#me> a foaf:Person;\n   foaf:knows [ a foaf:Person;\n     foaf:name \"Gregg Kellogg\"];\n   foaf:name \"Manu Sporny\" .\n"
  },
  {
    "path": "spec/test-files/test-6-compacted.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \"http://example.org/people#joebob\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Joe Bob\",\n  \"foaf:nick\":      { \"@list\": [ \"joe\", \"bob\", \"jaybe\" ] }\n}\n"
  },
  {
    "path": "spec/test-files/test-6-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  }\n  \n}\n"
  },
  {
    "path": "spec/test-files/test-6-expanded.jsonld",
    "content": "[{\n  \"@id\":      \"http://example.org/people#joebob\",\n  \"@type\":    [\"http://xmlns.com/foaf/0.1/Person\"],\n  \"http://xmlns.com/foaf/0.1/name\":      [{\"@value\": \"Joe Bob\"}],\n  \"http://xmlns.com/foaf/0.1/nick\":      [{ \"@list\": [\n    {\"@value\": \"joe\"},\n    {\"@value\": \"bob\"},\n    {\"@value\": \"jaybe\"}\n  ]}]\n}]\n"
  },
  {
    "path": "spec/test-files/test-6-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"\":       \"http://manu.sporny.org/\",\n    \"foaf\":   \"http://xmlns.com/foaf/0.1/\"\n  },\n  \"@id\":       \"http://example.org/people#joebob\",\n  \"@type\":          \"foaf:Person\",\n  \"foaf:name\":      \"Joe Bob\",\n  \"foaf:nick\":      { \"@list\": [ \"joe\", \"bob\", \"jaybe\" ] }\n}\n"
  },
  {
    "path": "spec/test-files/test-6-rdf.ttl",
    "content": "@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n<http://example.org/people#joebob> a foaf:Person;\n   foaf:name \"Joe Bob\";\n   foaf:nick (\"joe\" \"bob\" \"jaybe\") .\n"
  },
  {
    "path": "spec/test-files/test-7-compacted.jsonld",
    "content": "{\n  \"@context\": { \"foaf\": \"http://xmlns.com/foaf/0.1/\" },\n  \"@graph\": [\n    {\n      \"@id\": \"_:bnode1\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/bob/\",\n      \"foaf:name\": \"Bob\"\n    },\n    {\n      \"@id\": \"_:bnode2\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/eve/\",\n      \"foaf:name\": \"Eve\"\n    },\n    {\n      \"@id\": \"_:bnode3\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/manu/\",\n      \"foaf:name\": \"Manu\"\n    }\n  ]\n}\n"
  },
  {
    "path": "spec/test-files/test-7-context.jsonld",
    "content": "{\n  \"@context\": { \"foaf\": \"http://xmlns.com/foaf/0.1/\" }\n}\n\n"
  },
  {
    "path": "spec/test-files/test-7-expanded.jsonld",
    "content": "[\n  {\n    \"@id\": \"_:bnode1\",\n    \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n    \"http://xmlns.com/foaf/0.1/homepage\": [{\"@value\": \"http://example.com/bob/\"}],\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Bob\"}]\n  },\n  {\n    \"@id\": \"_:bnode2\",\n    \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n    \"http://xmlns.com/foaf/0.1/homepage\": [{\"@value\": \"http://example.com/eve/\"}],\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Eve\"}]\n  },\n  {\n    \"@id\": \"_:bnode3\",\n    \"@type\": [\"http://xmlns.com/foaf/0.1/Person\"],\n    \"http://xmlns.com/foaf/0.1/homepage\": [{\"@value\": \"http://example.com/manu/\"}],\n    \"http://xmlns.com/foaf/0.1/name\": [{\"@value\": \"Manu\"}]\n  }\n]"
  },
  {
    "path": "spec/test-files/test-7-input.jsonld",
    "content": "{\n  \"@context\": { \"foaf\": \"http://xmlns.com/foaf/0.1/\" },\n  \"@graph\": [\n    {\n      \"@id\": \"_:bnode1\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/bob/\",\n      \"foaf:name\": \"Bob\"\n    },\n    {\n      \"@id\": \"_:bnode2\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/eve/\",\n      \"foaf:name\": \"Eve\"\n    },\n    {\n      \"@id\": \"_:bnode3\",\n      \"@type\": \"foaf:Person\",\n      \"foaf:homepage\": \"http://example.com/manu/\",\n      \"foaf:name\": \"Manu\"\n    }\n  ]\n}\n"
  },
  {
    "path": "spec/test-files/test-7-rdf.ttl",
    "content": "@prefix foaf: <http://xmlns.com/foaf/0.1/> .\n@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n [ a foaf:Person;\n    foaf:homepage \"http://example.com/manu/\";\n    foaf:name \"Manu\"] .\n\n [ a foaf:Person;\n    foaf:homepage \"http://example.com/eve/\";\n    foaf:name \"Eve\"] .\n\n [ a foaf:Person;\n    foaf:homepage \"http://example.com/bob/\";\n    foaf:name \"Bob\"] .\n"
  },
  {
    "path": "spec/test-files/test-8-compacted.jsonld",
    "content": "{\n  \"@context\": {\n    \"Book\": \"http://example.org/vocab#Book\",\n    \"Chapter\": \"http://example.org/vocab#Chapter\",\n    \"contains\": {\n      \"@id\": \"http://example.org/vocab#contains\",\n      \"@type\": \"@id\"\n    },\n    \"creator\": \"http://purl.org/dc/terms/creator\",\n    \"description\": \"http://purl.org/dc/terms/description\",\n    \"Library\": \"http://example.org/vocab#Library\",\n    \"title\": \"http://purl.org/dc/terms/title\"\n  },\n  \"@graph\": [\n      {\n        \"@id\": \"http://example.com/library\",\n        \"@type\": \"Library\",\n        \"contains\": \"http://example.org/library/the-republic\"\n      },\n      {\n        \"@id\": \"http://example.org/library/the-republic\",\n        \"@type\": \"Book\",\n        \"creator\": \"Plato\",\n        \"title\": \"The Republic\",\n        \"contains\": \"http://example.org/library/the-republic#introduction\"\n      },\n      {\n        \"@id\": \"http://example.org/library/the-republic#introduction\",\n        \"@type\": \"Chapter\",\n        \"description\": \"An introductory chapter on The Republic.\",\n        \"title\": \"The Introduction\"\n      }\n    ]\n}"
  },
  {
    "path": "spec/test-files/test-8-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"Book\":         \"http://example.org/vocab#Book\",\n    \"Chapter\":      \"http://example.org/vocab#Chapter\",\n    \"contains\":     {\"@id\": \"http://example.org/vocab#contains\", \"@type\": \"@id\"},\n    \"creator\":      \"http://purl.org/dc/terms/creator\",\n    \"description\":  \"http://purl.org/dc/terms/description\",\n    \"Library\":      \"http://example.org/vocab#Library\",\n    \"title\":        \"http://purl.org/dc/terms/title\"\n  }\n}"
  },
  {
    "path": "spec/test-files/test-8-expanded.jsonld",
    "content": "[\n  {\n    \"@id\": \"http://example.com/library\",\n    \"@type\": [\"http://example.org/vocab#Library\"],\n    \"http://example.org/vocab#contains\": [{\n      \"@id\": \"http://example.org/library/the-republic\"\n    }]\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": [\"http://example.org/vocab#Book\"],\n    \"http://purl.org/dc/terms/creator\": [{\"@value\": \"Plato\"}],\n    \"http://purl.org/dc/terms/title\": [{\"@value\": \"The Republic\"}],\n    \"http://example.org/vocab#contains\": [{\n      \"@id\": \"http://example.org/library/the-republic#introduction\"\n    }]\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic#introduction\",\n    \"@type\": [\"http://example.org/vocab#Chapter\"],\n    \"http://purl.org/dc/terms/description\": [{\"@value\": \"An introductory chapter on The Republic.\"}],\n    \"http://purl.org/dc/terms/title\": [{\"@value\": \"The Introduction\"}]\n  }\n]"
  },
  {
    "path": "spec/test-files/test-8-frame.jsonld",
    "content": "{\n  \"@context\": {\n    \"Book\":         \"http://example.org/vocab#Book\",\n    \"Chapter\":      \"http://example.org/vocab#Chapter\",\n    \"contains\":     \"http://example.org/vocab#contains\",\n    \"creator\":      \"http://purl.org/dc/terms/creator\",\n    \"description\":  \"http://purl.org/dc/terms/description\",\n    \"Library\":      \"http://example.org/vocab#Library\",\n    \"title\":        \"http://purl.org/dc/terms/title\"\n  },\n  \"@type\": \"Library\",\n  \"contains\": {\n    \"@type\": \"Book\",\n    \"contains\": {\n      \"@type\": \"Chapter\"\n    }\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-8-framed.jsonld",
    "content": "{\n  \"@context\": {\n    \"Book\": \"http://example.org/vocab#Book\",\n    \"Chapter\": \"http://example.org/vocab#Chapter\",\n    \"contains\": \"http://example.org/vocab#contains\",\n    \"creator\": \"http://purl.org/dc/terms/creator\",\n    \"description\": \"http://purl.org/dc/terms/description\",\n    \"Library\": \"http://example.org/vocab#Library\",\n    \"title\": \"http://purl.org/dc/terms/title\"\n  },\n  \"@id\": \"http://example.com/library\",\n  \"@type\": \"Library\",\n  \"contains\": {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": \"Book\",\n    \"contains\": {\n      \"@id\": \"http://example.org/library/the-republic#introduction\",\n      \"@type\": \"Chapter\",\n      \"description\": \"An introductory chapter on The Republic.\",\n      \"title\": \"The Introduction\"\n    },\n    \"creator\": \"Plato\",\n    \"title\": \"The Republic\"\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-8-input.jsonld",
    "content": "{\n  \"@context\": {\n    \"Book\":         \"http://example.org/vocab#Book\",\n    \"Chapter\":      \"http://example.org/vocab#Chapter\",\n    \"contains\":     {\"@id\": \"http://example.org/vocab#contains\", \"@type\": \"@id\"},\n    \"creator\":      \"http://purl.org/dc/terms/creator\",\n    \"description\":  \"http://purl.org/dc/terms/description\",\n    \"Library\":      \"http://example.org/vocab#Library\",\n    \"title\":        \"http://purl.org/dc/terms/title\"\n  },\n  \"@graph\":\n  [{\n    \"@id\": \"http://example.com/library\",\n    \"@type\": \"Library\",\n    \"contains\": \"http://example.org/library/the-republic\"\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic\",\n    \"@type\": \"Book\",\n    \"creator\": \"Plato\",\n    \"title\": \"The Republic\",\n    \"contains\": \"http://example.org/library/the-republic#introduction\"\n  },\n  {\n    \"@id\": \"http://example.org/library/the-republic#introduction\",\n    \"@type\": \"Chapter\",\n    \"description\": \"An introductory chapter on The Republic.\",\n    \"title\": \"The Introduction\"\n  }]\n}"
  },
  {
    "path": "spec/test-files/test-8-rdf.ttl",
    "content": "@prefix dc: <http://purl.org/dc/terms/> .\n@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n\n<http://example.com/library> a <http://example.org/vocab#Library>;\n   <http://example.org/vocab#contains> <http://example.org/library/the-republic> .\n\n<http://example.org/library/the-republic> a <http://example.org/vocab#Book>;\n   dc:title \"The Republic\";\n   <http://example.org/vocab#contains> <http://example.org/library/the-republic#introduction>;\n   dc:creator \"Plato\" .\n\n<http://example.org/library/the-republic#introduction> a <http://example.org/vocab#Chapter>;\n   dc:title \"The Introduction\";\n   dc:description \"An introductory chapter on The Republic.\" .\n\n"
  },
  {
    "path": "spec/test-files/test-9-compacted.jsonld",
    "content": "{\n  \"@context\": {\n    \"id1\": \"http://example.com/id1\",\n    \"t1\": \"http://example.com/t1\",\n    \"t2\": \"http://example.com/t2\",\n    \"term1\": \"http://example.com/term\",\n    \"term2\": {\"@id\": \"http://example.com/term\", \"@type\": \"t2\"},\n    \"term3\": {\"@id\": \"http://example.com/term\", \"@language\": \"en\"},\n    \"term4\": {\"@id\": \"http://example.com/term\", \"@container\": \"@list\"},\n    \"term5\": {\"@id\": \"http://example.com/term\", \"@language\": null},\n    \"@language\": \"de\"\n  },\n  \"@id\": \"http://example.com/id1\",\n  \"@type\": \"t1\",\n  \"term1\": \"v1\",\n  \"term2\": \"v2\",\n  \"term3\": \"v3\",\n  \"term4\": [ 1, 2 ],\n  \"term5\": [ \"v5\", \"plain literal\" ]\n}\n"
  },
  {
    "path": "spec/test-files/test-9-context.jsonld",
    "content": "{\n  \"@context\": {\n    \"id1\": \"http://example.com/id1\",\n    \"t1\": \"http://example.com/t1\",\n    \"t2\": \"http://example.com/t2\",\n    \"term1\": \"http://example.com/term\",\n    \"term2\": {\"@id\": \"http://example.com/term\", \"@type\": \"t2\"},\n    \"term3\": {\"@id\": \"http://example.com/term\", \"@language\": \"en\"},\n    \"term4\": {\"@id\": \"http://example.com/term\", \"@container\": \"@list\"},\n    \"term5\": {\"@id\": \"http://example.com/term\", \"@language\": null},\n    \"@language\": \"de\"\n  }\n}\n"
  },
  {
    "path": "spec/test-files/test-9-expanded.jsonld",
    "content": "[\n  {\n    \"@id\": \"http://example.com/id1\",\n    \"@type\": [\"http://example.com/t1\"],\n    \"http://example.com/term\": [\n      {\"@value\": \"v1\",\"@language\": \"de\"},\n      {\"@value\": \"v2\",\"@type\": \"http://example.com/t2\"},\n      {\"@value\": \"v3\",\"@language\": \"en\"},\n      {\"@list\": [{\"@value\": 1},{\"@value\": 2}]},\n      {\"@value\": \"v5\"},\n      {\"@value\": \"plain literal\"}\n    ]\n  }\n]\n"
  },
  {
    "path": "spec/test-files/test-9-input.jsonld",
    "content": "[{\n  \"@id\": \"http://example.com/id1\",\n  \"@type\": [\"http://example.com/t1\"],\n  \"http://example.com/term\": [\n    {\"@value\": \"v1\", \"@language\": \"de\"},\n    {\"@value\": \"v2\", \"@type\": \"http://example.com/t2\"},\n    {\"@value\": \"v3\", \"@language\": \"en\"},\n    {\"@list\": [1, 2]},\n    {\"@value\": \"v5\"},\n    {\"@value\": \"plain literal\"}\n  ]\n}]\n"
  },
  {
    "path": "spec/to_rdf_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\n\ndescribe JSON::LD::API do\n  let(:logger) { RDF::Spec.logger }\n\n  describe \".toRdf\" do\n    it \"implements RDF::Enumerable\" do\n      expect(described_class.toRdf({})).to be_a(RDF::Enumerable)\n    end\n\n    context \"unnamed nodes\" do\n      {\n        \"no @id\" => [\n          '{\n            \"http://example.com/foo\": \"bar\"\n          }',\n          '[ <http://example.com/foo> \"bar\"^^xsd:string] .'\n        ],\n        \"@id with _:a\" => [\n          '{\n            \"@id\": \"_:a\",\n            \"http://example.com/foo\": \"bar\"\n          }',\n          '[ <http://example.com/foo> \"bar\"^^xsd:string] .'\n        ],\n        \"@id with _:a and reference\" => [\n          '{\n            \"@id\": \"_:a\",\n            \"http://example.com/foo\": {\"@id\": \"_:a\"}\n          }',\n          '_:a <http://example.com/foo> _:a .'\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"nodes with @id\" do\n      {\n        \"with IRI\" => [\n          '{\n            \"@id\": \"http://example.com/a\",\n            \"http://example.com/foo\": \"bar\"\n          }',\n          '<http://example.com/a> <http://example.com/foo> \"bar\" .'\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n\n      context \"with relative IRIs\" do\n        {\n          \"base\" => [\n            %({\n              \"@id\": \"\",\n              \"@type\": \"#{RDF::RDFS.Resource}\"\n            }),\n            %(<http://example.org/> a <#{RDF::RDFS.Resource}> .)\n          ],\n          \"relative\" => [\n            %({\n              \"@id\": \"a/b\",\n              \"@type\": \"#{RDF::RDFS.Resource}\"\n            }),\n            %(<http://example.org/a/b> a <#{RDF::RDFS.Resource}> .)\n          ],\n          \"hash\" => [\n            %({\n              \"@id\": \"#a\",\n              \"@type\": \"#{RDF::RDFS.Resource}\"\n            }),\n            %(<http://example.org/#a> a <#{RDF::RDFS.Resource}> .)\n          ]\n        }.each do |title, (js, ttl)|\n          it title do\n            ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n            expect(parse(js,\n              base: \"http://example.org/\")).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n          end\n        end\n      end\n    end\n\n    context \"typed nodes\" do\n      {\n        \"one type\" => [\n          '{\n            \"@type\": \"http://example.com/foo\"\n          }',\n          '[ a <http://example.com/foo> ] .'\n        ],\n        \"two types\" => [\n          '{\n            \"@type\": [\"http://example.com/foo\", \"http://example.com/baz\"]\n          }',\n          '[ a <http://example.com/foo>, <http://example.com/baz> ] .'\n        ],\n        \"blank node type\" => [\n          '{\n            \"@type\": \"_:foo\"\n          }',\n          '[ a _:foo ] .'\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"key/value\" do\n      {\n        \"string\" => [\n          '{\n            \"http://example.com/foo\": \"bar\"\n          }',\n          '[ <http://example.com/foo> \"bar\"^^xsd:string ] .'\n        ],\n        \"strings\" => [\n          '{\n            \"http://example.com/foo\": [\"bar\", \"baz\"]\n          }',\n          '[ <http://example.com/foo> \"bar\"^^xsd:string, \"baz\"^^xsd:string ] .'\n        ],\n        \"IRI\" => [\n          '{\n            \"http://example.com/foo\": {\"@id\": \"http://example.com/bar\"}\n          }',\n          '[ <http://example.com/foo> <http://example.com/bar> ] .'\n        ],\n        \"IRIs\" => [\n          '{\n            \"http://example.com/foo\": [{\"@id\": \"http://example.com/bar\"}, {\"@id\": \"http://example.com/baz\"}]\n          }',\n          '[ <http://example.com/foo> <http://example.com/bar>, <http://example.com/baz> ] .'\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"literals\" do\n      {\n        \"plain literal\" =>\n        [\n          '{\"@id\": \"http://greggkellogg.net/foaf#me\", \"http://xmlns.com/foaf/0.1/name\": \"Gregg Kellogg\"}',\n          '<http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/name> \"Gregg Kellogg\" .'\n        ],\n        \"explicit plain literal\" =>\n        [\n          '{\"http://xmlns.com/foaf/0.1/name\": {\"@value\": \"Gregg Kellogg\"}}',\n          '_:a <http://xmlns.com/foaf/0.1/name> \"Gregg Kellogg\"^^xsd:string .'\n        ],\n        \"language tagged literal\" =>\n        [\n          '{\"http://www.w3.org/2000/01/rdf-schema#label\": {\"@value\": \"A plain literal with a lang tag.\", \"@language\": \"en-us\"}}',\n          '_:a <http://www.w3.org/2000/01/rdf-schema#label> \"A plain literal with a lang tag.\"@en-us .'\n        ],\n        \"I18N literal with language\" =>\n        [\n          '[{\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"http://xmlns.com/foaf/0.1/knows\": {\"@id\": \"http://www.ivan-herman.net/foaf#me\"}\n          },{\n            \"@id\": \"http://www.ivan-herman.net/foaf#me\",\n            \"http://xmlns.com/foaf/0.1/name\": {\"@value\": \"Herman Iván\", \"@language\": \"hu\"}\n          }]',\n          %q(\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> <http://www.ivan-herman.net/foaf#me> .\n            <http://www.ivan-herman.net/foaf#me> <http://xmlns.com/foaf/0.1/name> \"Herman Iv\\u00E1n\"@hu .\n          )\n        ],\n        \"explicit datatyped literal\" =>\n        [\n          '{\n            \"@id\":  \"http://greggkellogg.net/foaf#me\",\n            \"http://purl.org/dc/terms/created\":  {\"@value\": \"1957-02-27\", \"@type\": \"http://www.w3.org/2001/XMLSchema#date\"}\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://purl.org/dc/terms/created> \"1957-02-27\"^^<http://www.w3.org/2001/XMLSchema#date> .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n\n      context \"with @type: @json\" do\n        {\n          true => {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n              },\n              \"e\": true\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:bool \"true\"^^rdf:JSON] .\n            )\n          },\n          false => {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#bool\", \"@type\": \"@json\"}\n              },\n              \"e\": false\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:bool \"false\"^^rdf:JSON] .\n            )\n          },\n          double: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n              },\n              \"e\": 1.23\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:double \"1.23\"^^rdf:JSON] .\n            )\n          },\n          'double-zero': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#double\", \"@type\": \"@json\"}\n              },\n              \"e\": 0\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:double \"0\"^^rdf:JSON] .\n            )\n          },\n          integer: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#integer\", \"@type\": \"@json\"}\n              },\n              \"e\": 123\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:integer \"123\"^^rdf:JSON] .\n            )\n          },\n          string: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#string\", \"@type\": \"@json\"}\n              },\n              \"e\": \"string\"\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:string \"\\\\\"string\\\\\"\"^^rdf:JSON] .\n            )\n          },\n          null: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#null\", \"@type\": \"@json\"}\n              },\n              \"e\": null\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:null \"null\"^^rdf:JSON] .\n            )\n          },\n          object: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#object\", \"@type\": \"@json\"}\n              },\n              \"e\": {\"foo\": \"bar\"}\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:object \"\"\"{\"foo\":\"bar\"}\"\"\"^^rdf:JSON] .\n            )\n          },\n          array: {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#array\", \"@type\": \"@json\"}\n              },\n              \"e\": [{\"foo\": \"bar\"}]\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:array \"\"\"[{\"foo\":\"bar\"}]\"\"\"^^rdf:JSON] .\n            )\n          },\n          'c14n-arrays': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#c14n\", \"@type\": \"@json\"}\n              },\n              \"e\": [\n                56,\n                {\n                  \"d\": true,\n                  \"10\": null,\n                  \"1\": [ ]\n                }\n              ]\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:c14n \"\"\"[56,{\"1\":[],\"10\":null,\"d\":true}]\"\"\"^^rdf:JSON] .\n            )\n          },\n          'c14n-french': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#c14n\", \"@type\": \"@json\"}\n              },\n              \"e\": {\n                \"peach\": \"This sorting order\",\n                \"péché\": \"is wrong according to French\",\n                \"pêche\": \"but canonicalization MUST\",\n                \"sin\":   \"ignore locale\"\n              }\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:c14n \"\"\"{\"peach\":\"This sorting order\",\"péché\":\"is wrong according to French\",\"pêche\":\"but canonicalization MUST\",\"sin\":\"ignore locale\"}\"\"\"^^rdf:JSON] .\n            )\n          },\n          'c14n-structures': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#c14n\", \"@type\": \"@json\"}\n              },\n              \"e\": {\n                \"1\": {\"f\": {\"f\": \"hi\",\"F\": 5} ,\" \": 56.0},\n                \"10\": { },\n                \"\": \"empty\",\n                \"a\": { },\n                \"111\": [ {\"e\": \"yes\",\"E\": \"no\" } ],\n                \"A\": { }\n              }\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:c14n \"\"\"{\"\":\"empty\",\"1\":{\" \":56,\"f\":{\"F\":5,\"f\":\"hi\"}},\"10\":{},\"111\":[{\"E\":\"no\",\"e\":\"yes\"}],\"A\":{},\"a\":{}}\"\"\"^^rdf:JSON] .\n            )\n          },\n          'c14n-unicode': {\n            input: %({\n              \"@context\": {\n                \"@version\": 1.1,\n                \"e\": {\"@id\": \"http://example.org/vocab#c14n\", \"@type\": \"@json\"}\n              },\n              \"e\": {\n                \"Unnormalized Unicode\":\"A\\u030a\"\n              }\n            }),\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:c14n \"\"\"{\"Unnormalized Unicode\":\"Å\"}\"\"\"^^rdf:JSON] .\n            )\n          }\n        }.each do |title, params|\n          it title do\n            params[:output] = RDF::Graph.new << RDF::Turtle::Reader.new(params[:output])\n            run_to_rdf params\n          end\n        end\n      end\n\n      context \"with xsd: true\" do\n        {\n          true => {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal(true)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:e true] .\n            )\n          },\n          integer: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal(1)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:e 1] .\n            )\n          },\n          decimal: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal::Decimal.new(\"1.1\")\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              [ex:e 1.1] .\n            )\n          },\n          float: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"1.1e1\", datatype: RDF::XSD.float)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e \"1.1e1\"^^xsd:float] .\n            )\n          },\n          double: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"1.1e1\", datatype: RDF::XSD.double)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e 1.1e1] .\n            )\n          },\n          date: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"2022-08-27\", datatype: RDF::XSD.date)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e \"2022-08-27\"^^xsd:date] .\n            )\n          },\n          time: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"12:00:00\", datatype: RDF::XSD.time)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e \"12:00:00\"^^xsd:time] .\n            )\n          },\n          dateTime: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"2022-08-27T12:00:00\", datatype: RDF::XSD.dateTime)\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e \"2022-08-27T12:00:00\"^^xsd:dateTime] .\n            )\n          },\n          language: {\n            input: {\n              \"@context\" => {\n                \"e\" => \"http://example.org/vocab#e\"\n              },\n              \"e\" => RDF::Literal.new(\"language\", language: :'en-us')\n            },\n            output: %(\n              @prefix ex: <http://example.org/vocab#> .\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n              [ex:e \"language\"@en-us] .\n            )\n          }\n        }.each do |title, params|\n          it title do\n            params[:output] = RDF::Graph.new << RDF::Turtle::Reader.new(params[:output])\n            run_to_rdf(params.merge(xsd: true))\n          end\n        end\n      end\n    end\n\n    context \"prefixes\" do\n      {\n        \"empty suffix\" => [\n          '{\"@context\": {\"prefix\": \"http://example.com/default#\"}, \"prefix:\": \"bar\"}',\n          '_:a <http://example.com/default#> \"bar\"^^xsd:string .'\n        ],\n        \"prefix:suffix\" => [\n          '{\"@context\": {\"prefix\": \"http://example.com/default#\"}, \"prefix:foo\": \"bar\"}',\n          '_:a <http://example.com/default#foo> \"bar\"^^xsd:string .'\n        ]\n      }.each_pair do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"overriding keywords\" do\n      {\n        \"'url' for @id, 'a' for @type\" => [\n          '{\n            \"@context\": {\"url\": \"@id\", \"a\": \"@type\", \"name\": \"http://schema.org/name\"},\n            \"url\": \"http://example.com/about#gregg\",\n            \"a\": \"http://schema.org/Person\",\n            \"name\": \"Gregg Kellogg\"\n          }',\n          '\n            <http://example.com/about#gregg> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://schema.org/Person> .\n            <http://example.com/about#gregg> <http://schema.org/name> \"Gregg Kellogg\"^^xsd:string .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"chaining\" do\n      {\n        \"explicit subject\" =>\n        [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": {\n              \"@id\": \"http://www.ivan-herman.net/foaf#me\",\n              \"foaf:name\": \"Ivan Herman\"\n            }\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> <http://www.ivan-herman.net/foaf#me> .\n            <http://www.ivan-herman.net/foaf#me> <http://xmlns.com/foaf/0.1/name> \"Ivan Herman\" .\n          '\n        ],\n        \"implicit subject\" =>\n        [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": {\n              \"foaf:name\": \"Manu Sporny\"\n            }\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> _:a .\n            _:a <http://xmlns.com/foaf/0.1/name> \"Manu Sporny\"^^xsd:string .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"multiple values\" do\n      {\n        \"literals\" =>\n        [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": [\"Manu Sporny\", \"Ivan Herman\"]\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> \"Manu Sporny\" .\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> \"Ivan Herman\" .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"lists\" do\n      {\n        \"Empty\" => [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": {\"@list\": []}\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          '\n        ],\n        \"single value\" => [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": {\"@list\": [\"Manu Sporny\"]}\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> _:a .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"Manu Sporny\"^^xsd:string .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          '\n        ],\n        \"single value (with coercion)\" => [\n          '{\n            \"@context\": {\n              \"foaf\": \"http://xmlns.com/foaf/0.1/\",\n              \"foaf:knows\": { \"@container\": \"@list\"}\n            },\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": [\"Manu Sporny\"]\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> _:a .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"Manu Sporny\"^^xsd:string .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          '\n        ],\n        \"multiple values\" => [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@id\": \"http://greggkellogg.net/foaf#me\",\n            \"foaf:knows\": {\"@list\": [\"Manu Sporny\", \"Dave Longley\"]}\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> _:a .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"Manu Sporny\"^^xsd:string .\n            _:a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:b .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> \"Dave Longley\"^^xsd:string .\n            _:b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .\n          '\n        ],\n        \"@list containing @list\" => [\n          '{\n            \"@id\": \"http://example/A\",\n            \"http://example.com/foo\": {\"@list\": [{\"@list\": [\"baz\"]}]}\n          }',\n          '\n            <http://example/A> <http://example.com/foo> ((\"baz\")) .\n          '\n        ],\n        \"@list containing empty @list\" => [\n          %({\n            \"@id\": \"http://example/A\",\n            \"http://example.com/foo\": {\"@list\": [{\"@list\": []}]}\n          }),\n          '\n            <http://example/A> <http://example.com/foo> (()) .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"context\" do\n      {\n        \"@id coersion\" =>\n        [\n          '{\n            \"@context\": {\n              \"knows\": {\"@id\": \"http://xmlns.com/foaf/0.1/knows\", \"@type\": \"@id\"}\n            },\n            \"@id\":  \"http://greggkellogg.net/foaf#me\",\n            \"knows\":  \"http://www.ivan-herman.net/foaf#me\"\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://xmlns.com/foaf/0.1/knows> <http://www.ivan-herman.net/foaf#me> .\n          '\n        ],\n        \"datatype coersion\" =>\n        [\n          '{\n            \"@context\": {\n              \"dcterms\":  \"http://purl.org/dc/terms/\",\n              \"xsd\":      \"http://www.w3.org/2001/XMLSchema#\",\n              \"created\":  {\"@id\": \"http://purl.org/dc/terms/created\", \"@type\": \"xsd:date\"}\n            },\n            \"@id\":  \"http://greggkellogg.net/foaf#me\",\n            \"created\":  \"1957-02-27\"\n          }',\n          '\n            <http://greggkellogg.net/foaf#me> <http://purl.org/dc/terms/created> \"1957-02-27\"^^<http://www.w3.org/2001/XMLSchema#date> .\n          '\n        ],\n        \"sub-objects with context\" => [\n          '{\n            \"@context\": {\"foo\": \"http://example.com/foo\"},\n            \"foo\":  {\n              \"@context\": {\"foo\": \"http://example.org/foo\"},\n              \"foo\": \"bar\"\n            }\n          }',\n          '\n            _:a <http://example.com/foo> _:b .\n            _:b <http://example.org/foo> \"bar\"^^xsd:string .\n          '\n        ],\n        \"contexts with a list processed in order\" => [\n          '{\n            \"@context\": [\n              {\"foo\": \"http://example.com/foo\"},\n              {\"foo\": \"http://example.org/foo\"}\n            ],\n            \"foo\":  \"bar\"\n          }',\n          '\n            _:b <http://example.org/foo> \"bar\"^^xsd:string .\n          '\n        ],\n        \"term definition resolves term as IRI\" => [\n          '{\n            \"@context\": [\n              {\"foo\": \"http://example.com/foo\"},\n              {\"bar\": \"foo\"}\n            ],\n            \"bar\":  \"bar\"\n          }',\n          '\n            _:b <http://example.com/foo> \"bar\"^^xsd:string .\n          '\n        ],\n        \"term definition resolves prefix as IRI\" => [\n          '{\n            \"@context\": [\n              {\"foo\": \"http://example.com/foo#\"},\n              {\"bar\": \"foo:bar\"}\n            ],\n            \"bar\":  \"bar\"\n          }',\n          '\n            _:b <http://example.com/foo#bar> \"bar\"^^xsd:string .\n          '\n        ],\n        \"@language\" => [\n          '{\n            \"@context\": {\n              \"foo\": \"http://example.com/foo#\",\n              \"@language\": \"en\"\n            },\n            \"foo:bar\":  \"baz\"\n          }',\n          '\n            _:a <http://example.com/foo#bar> \"baz\"@en .\n          '\n        ],\n        \"@language with override\" => [\n          '{\n            \"@context\": {\n              \"foo\": \"http://example.com/foo#\",\n              \"@language\": \"en\"\n            },\n            \"foo:bar\":  {\"@value\": \"baz\", \"@language\": \"fr\"}\n          }',\n          '\n            _:a <http://example.com/foo#bar> \"baz\"@fr .\n          '\n        ],\n        \"@language with plain\" => [\n          '{\n            \"@context\": {\n              \"foo\": \"http://example.com/foo#\",\n              \"@language\": \"en\"\n            },\n            \"foo:bar\":  {\"@value\": \"baz\"}\n          }',\n          '\n            _:a <http://example.com/foo#bar> \"baz\"^^xsd:string .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, base: \"http://example/\", logger: logger, inputDocument: js)\n        end\n      end\n\n      context \"coercion\" do\n        context \"term def with @id + @type\" do\n          {\n            \"dt with term\" => [\n              '{\n                \"@context\": [\n                  {\"date\": \"http://www.w3.org/2001/XMLSchema#date\", \"term\": \"http://example.org/foo#\"},\n                  {\"foo\": {\"@id\": \"term\", \"@type\": \"date\"}}\n                ],\n                \"foo\": \"bar\"\n              }',\n              '\n                @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n                [ <http://example.org/foo#> \"bar\"^^xsd:date ] .\n              '\n            ],\n            \"@id with term\" => [\n              '{\n                \"@context\": [\n                  {\"foo\": {\"@id\": \"http://example.org/foo#bar\", \"@type\": \"@id\"}}\n                ],\n                \"foo\": \"http://example.org/foo#bar\"\n              }',\n              '\n                _:a <http://example.org/foo#bar> <http://example.org/foo#bar> .\n              '\n            ],\n            \"coercion without term definition\" => [\n              '{\n                \"@context\": [\n                  {\n                    \"xsd\": \"http://www.w3.org/2001/XMLSchema#\",\n                    \"dc\": \"http://purl.org/dc/terms/\"\n                  },\n                  {\n                    \"dc:date\": {\"@type\": \"xsd:date\"}\n                  }\n                ],\n                \"dc:date\": \"2011-11-23\"\n              }',\n              '\n                @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n                @prefix dc: <http://purl.org/dc/terms/> .\n                [ dc:date \"2011-11-23\"^^xsd:date] .\n              '\n            ]\n          }.each do |title, (js, ttl)|\n            it title do\n              ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n              expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n            end\n          end\n        end\n      end\n\n      context \"lists\" do\n        context \"term def with @id + @type + @container\" do\n          {\n            \"dt with term\" => [\n              '{\n                \"@context\": [\n                  {\"date\": \"http://www.w3.org/2001/XMLSchema#date\", \"term\": \"http://example.org/foo#\"},\n                  {\"foo\": {\"@id\": \"term\", \"@type\": \"date\", \"@container\": \"@list\"}}\n                ],\n                \"foo\": [\"bar\"]\n              }',\n              '\n                @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n                [ <http://example.org/foo#> (\"bar\"^^xsd:date) ] .\n              '\n            ],\n            \"@id with term\" => [\n              '{\n                \"@context\": [\n                  {\"foo\": {\"@id\": \"http://example.org/foo#bar\", \"@type\": \"@id\", \"@container\": \"@list\"}}\n                ],\n                \"foo\": [\"http://example.org/foo#bar\"]\n              }',\n              '\n                _:a <http://example.org/foo#bar> (<http://example.org/foo#bar>) .\n              '\n            ]\n          }.each do |title, (js, ttl)|\n            it title do\n              ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n              expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n            end\n          end\n        end\n      end\n    end\n\n    context \"blank node predicates\" do\n      subject { '{\"@id\": \"http://example/subj\", \"_:foo\": \"bar\"}' }\n\n      it \"outputs statements with blank node predicates if :produceGeneralizedRdf is true\" do\n        expect do\n          graph = parse(subject, produceGeneralizedRdf: true)\n          expect(graph.count).to eq 1\n        end.to write(\"[DEPRECATION]\").to(:error)\n      end\n\n      it \"rejects statements with blank node predicates if :produceGeneralizedRdf is false\" do\n        expect do\n          graph = parse(subject, produceGeneralizedRdf: false)\n          expect(graph.count).to eq 0\n        end.to write(\"[DEPRECATION]\").to(:error)\n      end\n    end\n\n    context \"@included\" do\n      {\n        'Basic Included array': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": [{\n              \"prop\": \"value2\"\n            }]\n          }),\n          output: %(\n            [<http://example.org/prop> \"value\"] .\n            [<http://example.org/prop> \"value2\"] .\n          )\n        },\n        'Basic Included object': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\"\n            }\n          }),\n          output: %(\n            [<http://example.org/prop> \"value\"] .\n            [<http://example.org/prop> \"value2\"] .\n          )\n        },\n        'Multiple properties mapping to @included are folded together': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\",\n              \"included1\": \"@included\",\n              \"included2\": \"@included\"\n            },\n            \"included1\": {\"prop\": \"value1\"},\n            \"included2\": {\"prop\": \"value2\"}\n          }),\n          output: %(\n            [<http://example.org/prop> \"value1\"] .\n            [<http://example.org/prop> \"value2\"] .\n          )\n        },\n        'Included containing @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": \"value\",\n            \"@included\": {\n              \"prop\": \"value2\",\n              \"@included\": {\n                \"prop\": \"value3\"\n              }\n            }\n          }),\n          output: %(\n            [<http://example.org/prop> \"value\"] .\n\n            [<http://example.org/prop> \"value2\"] .\n\n            [<http://example.org/prop> \"value3\"] .\n          )\n        },\n        'Property value with @included': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/\"\n            },\n            \"prop\": {\n              \"@type\": \"Foo\",\n              \"@included\": {\n                \"@type\": \"Bar\"\n              }\n            }\n          }),\n          output: %(\n            [<http://example.org/prop> [a <http://example.org/Foo>]] .\n            [a <http://example.org/Bar>] .\n          )\n        },\n        'json.api example': {\n          input: %({\n            \"@context\": {\n              \"@version\": 1.1,\n              \"@vocab\": \"http://example.org/vocab#\",\n              \"@base\": \"http://example.org/base/\",\n              \"id\": \"@id\",\n              \"type\": \"@type\",\n              \"data\": \"@nest\",\n              \"attributes\": \"@nest\",\n              \"links\": \"@nest\",\n              \"relationships\": \"@nest\",\n              \"included\": \"@included\",\n              \"self\": {\"@type\": \"@id\"},\n              \"related\": {\"@type\": \"@id\"},\n              \"comments\": {\n                \"@context\": {\n                  \"data\": null\n                }\n              }\n            },\n            \"data\": [{\n              \"type\": \"articles\",\n              \"id\": \"1\",\n              \"attributes\": {\n                \"title\": \"JSON:API paints my bikeshed!\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/articles/1\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/author\",\n                    \"related\": \"http://example.com/articles/1/author\"\n                  },\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                },\n                \"comments\": {\n                  \"links\": {\n                    \"self\": \"http://example.com/articles/1/relationships/comments\",\n                    \"related\": \"http://example.com/articles/1/comments\"\n                  },\n                  \"data\": [\n                    { \"type\": \"comments\", \"id\": \"5\" },\n                    { \"type\": \"comments\", \"id\": \"12\" }\n                  ]\n                }\n              }\n            }],\n            \"included\": [{\n              \"type\": \"people\",\n              \"id\": \"9\",\n              \"attributes\": {\n                \"first-name\": \"Dan\",\n                \"last-name\": \"Gebhardt\",\n                \"twitter\": \"dgeb\"\n              },\n              \"links\": {\n                \"self\": \"http://example.com/people/9\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"5\",\n              \"attributes\": {\n                \"body\": \"First!\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"2\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/5\"\n              }\n            }, {\n              \"type\": \"comments\",\n              \"id\": \"12\",\n              \"attributes\": {\n                \"body\": \"I like XML better\"\n              },\n              \"relationships\": {\n                \"author\": {\n                  \"data\": { \"type\": \"people\", \"id\": \"9\" }\n                }\n              },\n              \"links\": {\n                \"self\": \"http://example.com/comments/12\"\n              }\n            }]\n          }),\n          output: %(\n          <http://example.org/base/1> a <http://example.org/vocab#articles>;\n            <http://example.org/vocab#author> <http://example.org/base/9>;\n            <http://example.org/vocab#comments> [\n              <http://example.org/vocab#related> <http://example.com/articles/1/comments>;\n              <http://example.org/vocab#self> <http://example.com/articles/1/relationships/comments>\n            ];\n            <http://example.org/vocab#self> <http://example.com/articles/1>;\n            <http://example.org/vocab#title> \"JSON:API paints my bikeshed!\" .\n\n          <http://example.org/base/12> a <http://example.org/vocab#comments>;\n            <http://example.org/vocab#author> <http://example.org/base/9>;\n            <http://example.org/vocab#body> \"I like XML better\";\n            <http://example.org/vocab#self> <http://example.com/comments/12> .\n\n          <http://example.org/base/5> a <http://example.org/vocab#comments>;\n            <http://example.org/vocab#author> <http://example.org/base/2>;\n            <http://example.org/vocab#body> \"First!\";\n            <http://example.org/vocab#self> <http://example.com/comments/5> .\n\n          <http://example.org/base/2> a <http://example.org/vocab#people> .\n\n          <http://example.org/base/9> a <http://example.org/vocab#people>;\n            <http://example.org/vocab#first-name> \"Dan\";\n            <http://example.org/vocab#last-name> \"Gebhardt\";\n            <http://example.org/vocab#related> <http://example.com/articles/1/author>;\n            <http://example.org/vocab#self> <http://example.com/articles/1/relationships/author>,\n              <http://example.com/people/9>;\n            <http://example.org/vocab#twitter> \"dgeb\" .\n          )\n        }\n      }.each do |title, params|\n        it(title) { run_to_rdf params }\n      end\n    end\n\n    context \"advanced features\" do\n      {\n        \"number syntax (decimal)\" =>\n        [\n          '{\"@context\": { \"measure\": \"http://example/measure#\"}, \"measure:cups\": 5.3}',\n          '_:a <http://example/measure#cups> \"5.3E0\"^^<http://www.w3.org/2001/XMLSchema#double> .'\n        ],\n        \"number syntax (double)\" =>\n        [\n          '{\"@context\": { \"measure\": \"http://example/measure#\"}, \"measure:cups\": 5.3e0}',\n          '_:a <http://example/measure#cups> \"5.3E0\"^^<http://www.w3.org/2001/XMLSchema#double> .'\n        ],\n        \"number syntax (integer)\" =>\n        [\n          '{\"@context\": { \"chem\": \"http://example/chem#\"}, \"chem:protons\": 12}',\n          '_:a <http://example/chem#protons> \"12\"^^<http://www.w3.org/2001/XMLSchema#integer> .'\n        ],\n        \"boolan syntax\" =>\n        [\n          '{\"@context\": { \"sensor\": \"http://example/sensor#\"}, \"sensor:active\": true}',\n          '_:a <http://example/sensor#active> \"true\"^^<http://www.w3.org/2001/XMLSchema#boolean> .'\n        ],\n        \"Array top element\" =>\n        [\n          '[\n            {\"@id\":   \"http://example.com/#me\", \"@type\": \"http://xmlns.com/foaf/0.1/Person\"},\n            {\"@id\":   \"http://example.com/#you\", \"@type\": \"http://xmlns.com/foaf/0.1/Person\"}\n          ]',\n          '\n            <http://example.com/#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .\n            <http://example.com/#you> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .\n          '\n        ],\n        \"@graph with array of objects value\" =>\n        [\n          '{\n            \"@context\": {\"foaf\": \"http://xmlns.com/foaf/0.1/\"},\n            \"@graph\": [\n              {\"@id\":   \"http://example.com/#me\", \"@type\": \"foaf:Person\"},\n              {\"@id\":   \"http://example.com/#you\", \"@type\": \"foaf:Person\"}\n            ]\n          }',\n          '\n            <http://example.com/#me> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .\n            <http://example.com/#you> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://xmlns.com/foaf/0.1/Person> .\n          '\n        ],\n        \"XMLLiteral\" => [\n          '{\n            \"http://rdfs.org/sioc/ns#content\": {\n              \"@value\": \"foo\",\n              \"@type\": \"http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral\"\n            }\n          }',\n          '\n            [<http://rdfs.org/sioc/ns#content> \"foo\"^^<http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral>] .\n          '\n        ]\n      }.each do |title, (js, ttl)|\n        it title do\n          ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n          expect(parse(js)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n        end\n      end\n    end\n\n    context \"@direction\" do\n      context \"rdfDirection: null\" do\n        {\n          'no language rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"no language\", \"@direction\": \"rtl\"}}',\n            '_:a <http://example.org/label> \"no language\" .'\n          ],\n          'en-US rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"en-US\", \"@language\": \"en-US\", \"@direction\": \"rtl\"}}',\n            '_:a <http://example.org/label> \"en-US\"@en-us .'\n          ]\n        }.each do |title, (js, ttl)|\n          it title do\n            ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n            expect(parse(js, rdfDirection: nil)).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n          end\n        end\n      end\n\n      context \"rdfDirection: i18n-datatype\" do\n        {\n          'no language rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"no language\", \"@direction\": \"rtl\"}}',\n            '_:a <http://example.org/label> \"no language\"^^<https://www.w3.org/ns/i18n#_rtl> .'\n          ],\n          'en-US rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"en-US\", \"@language\": \"en-US\", \"@direction\": \"rtl\"}}',\n            '_:a <http://example.org/label> \"en-US\"^^<https://www.w3.org/ns/i18n#en-us_rtl> .'\n          ]\n        }.each do |title, (js, ttl)|\n          it title do\n            ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n            expect(parse(js,\n              rdfDirection: 'i18n-datatype')).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n          end\n        end\n      end\n\n      context \"rdfDirection: compound-literal\" do\n        {\n          'no language rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"no language\", \"@direction\": \"rtl\"}}',\n            '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              _:a <http://example.org/label> [\n                rdf:value \"no language\";\n                rdf:direction \"rtl\"\n              ] .\n            '\n          ],\n          'en-US rtl': [\n            '{\"http://example.org/label\": {\"@value\": \"en-US\", \"@language\": \"en-US\", \"@direction\": \"rtl\"}}',\n            '\n              @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n              _:a <http://example.org/label> [\n                rdf:value \"en-US\";\n                rdf:language \"en-us\";\n                rdf:direction \"rtl\"\n              ] .\n            '\n          ]\n        }.each do |title, (js, ttl)|\n          it title do\n            ttl = \"@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . #{ttl}\"\n            expect(parse(js,\n              rdfDirection: 'compound-literal')).to be_equivalent_graph(ttl, logger: logger, inputDocument: js)\n          end\n        end\n      end\n    end\n\n    context \"JSON-LD-star\" do\n      {\n        'node with embedded subject without rdfstar option': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidIdValue\n        }\n      }.each do |title, params|\n        it(title) { run_to_rdf params }\n      end\n\n      {\n        'node with embedded subject having no @id': {\n          input: %({\n            \"@id\": {\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<_:b0 <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        },\n        'node with embedded subject having IRI @id': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<<ex:rei> <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        },\n        'node with embedded subject having BNode @id': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"_:rei\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n           <<_:b0 <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        },\n        'node with embedded subject having a type': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": \"ex:Type\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<<ex:rei> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <ex:Type>>> <ex:prop> \"value2\" .\n          )\n        },\n        'node with embedded subject having an IRI value': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"ex:value\"}\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<<ex:rei> <ex:prop> <ex:value>>> <ex:prop> \"value2\" .\n          )\n        },\n        'node with embedded subject having an BNode value': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": {\"@id\": \"_:value\"}\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<<ex:rei> <ex:prop> _:b0>> <ex:prop> \"value2\" .\n          )\n        },\n        'node with recursive embedded subject': {\n          input: %({\n            \"@id\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value3\"\n              },\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          expected: %(\n            <<<<<ex:rei> <ex:prop> \"value3\">> <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        },\n        'illegal node with subject having no property': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\"\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having multiple properties': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"ex:prop\": [\"value1\", \"value2\"]\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having multiple types': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": [\"ex:Type1\", \"ex:Type2\"]\n            },\n            \"ex:prop\": \"value3\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'illegal node with subject having type and property': {\n          input: %({\n            \"@id\": {\n              \"@id\": \"ex:rei\",\n              \"@type\": \"ex:Type\",\n              \"ex:prop\": \"value\"\n            },\n            \"ex:prop\": \"value2\"\n          }),\n          exception: JSON::LD::JsonLdError::InvalidEmbeddedNode\n        },\n        'node with embedded object': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value\"\n              }\n            }\n          }),\n          expected: %(\n            <ex:subj> <ex:value> <<<ex:rei> <ex:prop> \"value\">> .\n          )\n        },\n        'node with embedded object having properties': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": \"ex:rei\",\n                \"ex:prop\": \"value\"\n              },\n              \"ex:prop\": \"value2\"\n            }\n          }),\n          expected: %(\n            <ex:subj> <ex:value> <<<ex:rei> <ex:prop> \"value\">> .\n            <<<ex:rei> <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        },\n        'node with recursive embedded object': {\n          input: %({\n            \"@id\": \"ex:subj\",\n            \"ex:value\": {\n              \"@id\": {\n                \"@id\": {\n                  \"@id\": \"ex:rei\",\n                  \"ex:prop\": \"value3\"\n                },\n                \"ex:prop\": \"value\"\n              },\n              \"ex:prop\": \"value2\"\n            }\n          }),\n          expected: %(\n            <ex:subj> <ex:value> <<<<<ex:rei> <ex:prop> \"value3\">> <ex:prop> \"value\">> .\n            <<<<<ex:rei> <ex:prop> \"value3\">> <ex:prop> \"value\">> <ex:prop> \"value2\" .\n          )\n        }\n      }.each do |title, params|\n        context(title) do\n          if params[:expected]\n            it \"Generates statements\" do\n              output_graph = RDF::Graph.new { |g| g << RDF::NTriples::Reader.new(params[:expected], rdfstar: true) }\n              run_to_rdf params.merge(rdfstar: true, output: output_graph)\n            end\n          end\n\n          if params[:exception]\n            it \"Exception\" do\n              run_to_rdf params.merge(rdfstar: true)\n            end\n          end\n        end\n      end\n    end\n\n    context \"exceptions\" do\n      {\n        \"Invalid subject\" => {\n          input: %({\n            \"@id\": \"http://example.com/a b\",\n            \"http://example.com/foo\": \"bar\"\n          }),\n          output: %()\n        },\n        \"Invalid predicate\" => {\n          input: %({\n            \"@id\": \"http://example.com/foo\",\n            \"http://example.com/a b\": \"bar\"\n          }),\n          output: %()\n        },\n        \"Invalid object\" => {\n          input: %({\n            \"@id\": \"http://example.com/foo\",\n            \"http://example.com/bar\": {\"@id\": \"http://example.com/baz z\"}\n          }),\n          output: %()\n        },\n        \"Invalid type\" => {\n          input: %({\n            \"@id\": \"http://example.com/foo\",\n            \"@type\": [\"http://example.com/bar\", \"relative\"]\n          }),\n          output: %(<http://example.com/foo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://example.com/bar> .)\n        },\n        \"Invalid language\" => {\n          input: %({\n            \"@id\": \"http://example.com/foo\",\n            \"http://example.com/bar\": {\"@value\": \"bar\", \"@language\": \"a b\"}\n          }),\n          output: %(),\n          write: \"@language must be valid BCP47\"\n        },\n        \"Invalid datatype\" => {\n          input: %({\n            \"@id\": \"http://example.com/foo\",\n            \"http://example.com/bar\": {\"@value\": \"bar\", \"@type\": \"http://example.com/baz z\"}\n          }),\n          exception: JSON::LD::JsonLdError::InvalidTypedValue\n        },\n        \"Injected IRIs check\" => {\n          input: %({\n            \"@id\": \"http://foo/> <http://bar/> <http://baz> .\\n<data:little> <data:bobby> <data:tables> .\\n<data:in-ur-base\",\n            \"http://killin/#yer\": \"dudes\"\n          }),\n          output: %(),\n          pending: \"jruby\"\n        }\n      }.each do |title, params|\n        it(title) do\n          pending params[:pending] if params[:pending] == RUBY_ENGINE\n          run_to_rdf params\n        end\n      end\n    end\n  end\n\n  context \"html\" do\n    {\n      'Transforms embedded JSON-LD script element': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n          </head>\n        </html>),\n        output: %([ <http://example.com/foo> ( \"bar\")] .)\n      },\n      'Transforms first script element with extractAllScripts: false': {\n        input: %(\n        <html>\n          <head>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        output: %([ <http://example.com/foo> ( \"bar\")] .),\n        extractAllScripts: false\n      },\n      'Transforms targeted script element': {\n        input: %(\n        <html>\n          <head>\n            <script id=\"first\" type=\"application/ld+json\">\n            {\n              \"@context\": {\n                \"foo\": {\"@id\": \"http://example.com/foo\", \"@container\": \"@list\"}\n              },\n              \"foo\": [{\"@value\": \"bar\"}]\n            }\n            </script>\n            <script id=\"second\" type=\"application/ld+json\">\n            {\n              \"@context\": {\"ex\": \"http://example.com/\"},\n              \"@graph\": [\n                {\"ex:foo\": {\"@value\": \"foo\"}},\n                {\"ex:bar\": {\"@value\": \"bar\"}}\n              ]\n            }\n            </script>\n          </head>\n        </html>),\n        output: %(\n          [ <http://example.com/foo> \"foo\"] .\n          [ <http://example.com/bar> \"bar\"] .\n        ),\n        base: \"http://example.org/doc#second\"\n      }\n    }.each do |title, params|\n      it(title) do\n        params[:input] = StringIO.new(params[:input])\n        params[:input].send(:define_singleton_method, :content_type) { \"text/html\" }\n        run_to_rdf params.merge(validate: true)\n      end\n    end\n  end\n\n  def parse(input, **options)\n    graph = options[:graph] || RDF::Graph.new\n    options = { logger: logger, validate: true, canonicalize: false }.merge(options)\n    JSON::LD::API.toRdf(StringIO.new(input), rename_bnodes: false, **options) { |st| graph << st }\n    graph\n  end\n\n  def run_to_rdf(params)\n    input = params[:input]\n    output = params[:output]\n    graph = params[:graph] || RDF::Graph.new\n    input = StringIO.new(input) if input.is_a?(String)\n    pending params.fetch(:pending, \"test implementation\") unless input\n    if params[:exception]\n      expect { JSON::LD::API.toRdf(input, **params) }.to raise_error(params[:exception])\n    else\n      if params[:write]\n        expect do\n          JSON::LD::API.toRdf(input, base: params[:base], logger: logger, rename_bnodes: false, **params) do |st|\n            graph << st\n          end\n        end.to write(params[:write]).to(:error)\n      else\n        expect do\n          JSON::LD::API.toRdf(input, base: params[:base], logger: logger, rename_bnodes: false, **params) do |st|\n            graph << st\n          end\n        end.not_to write.to(:error)\n      end\n      expect(graph).to be_equivalent_graph(output, logger: logger, inputDocument: input)\n    end\n  end\nend\n"
  },
  {
    "path": "spec/writer_spec.rb",
    "content": "# frozen_string_literal: true\n\nrequire_relative 'spec_helper'\nrequire 'rdf/spec/writer'\n\ndescribe JSON::LD::Writer do\n  let(:logger) { RDF::Spec.logger }\n\n  after { |example| puts logger if example.exception }\n\n  it_behaves_like 'an RDF::Writer' do\n    let(:writer) { described_class.new(StringIO.new, logger: logger) }\n  end\n\n  describe \".for\" do\n    [\n      :jsonld,\n      \"etc/doap.jsonld\",\n      { file_name:      'etc/doap.jsonld' },\n      { file_extension: 'jsonld' },\n      { content_type:   'application/ld+json' },\n      { content_type:   'application/x-ld+json' }\n    ].each do |arg|\n      it \"discovers with #{arg.inspect}\" do\n        expect(RDF::Reader.for(arg)).to eq JSON::LD::Reader\n      end\n    end\n  end\n\n  context \"simple tests\" do\n    it \"uses full URIs without base\" do\n      input = %(<http://a/b> <http://a/c> <http://a/d> .)\n      expect(serialize(input)).to produce_jsonld([{\n        '@id' => \"http://a/b\",\n        \"http://a/c\" => [{ \"@id\" => \"http://a/d\" }]\n      }], logger)\n    end\n\n    it \"uses qname URIs with standard prefix\" do\n      input = %(<http://xmlns.com/foaf/0.1/b> <http://xmlns.com/foaf/0.1/c> <http://xmlns.com/foaf/0.1/d> .)\n      expect(serialize(input, standard_prefixes: true)).to produce_jsonld({\n        '@context' => {\n          \"foaf\" => \"http://xmlns.com/foaf/0.1/\"\n        },\n        '@id' => \"foaf:b\",\n        \"foaf:c\" => { \"@id\" => \"foaf:d\" }\n      }, logger)\n    end\n\n    it \"uses qname URIs with parsed prefix\" do\n      input = %(\n        <https://senet.org/gm> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://vocab.org/frbr/core#Work> .\n        <https://senet.org/gm> <http://purl.org/dc/terms/title> \"Rhythm Paradise\"@en .\n        <https://senet.org/gm> <https://senet.org/ns#unofficialTitle> \"Rhythm Tengoku\"@en .\n        <https://senet.org/gm> <https://senet.org/ns#urlkey> \"rhythm-tengoku\" .\n      )\n      expect(serialize(input, prefixes: {\n        dc: \"http://purl.org/dc/terms/\",\n        frbr: \"http://vocab.org/frbr/core#\",\n        senet: \"https://senet.org/ns#\"\n      })).to produce_jsonld({\n        '@context' => {\n          \"dc\" => \"http://purl.org/dc/terms/\",\n          \"frbr\" => \"http://vocab.org/frbr/core#\",\n          \"senet\" => \"https://senet.org/ns#\"\n        },\n        '@id' => \"https://senet.org/gm\",\n        \"@type\" => \"frbr:Work\",\n        \"dc:title\" => { \"@value\" => \"Rhythm Paradise\", \"@language\" => \"en\" },\n        \"senet:unofficialTitle\" => { \"@value\" => \"Rhythm Tengoku\", \"@language\" => \"en\" },\n        \"senet:urlkey\" => \"rhythm-tengoku\"\n      }, logger)\n    end\n\n    it \"uses CURIEs with empty prefix\" do\n      input = %(<http://xmlns.com/foaf/0.1/b> <http://xmlns.com/foaf/0.1/c> <http://xmlns.com/foaf/0.1/d> .)\n      begin\n        expect(serialize(input, prefixes: { \"\" => RDF::Vocab::FOAF }))\n          .to produce_jsonld({\n            \"@context\" => {\n              \"\" => \"http://xmlns.com/foaf/0.1/\"\n            },\n            '@id' => \":b\",\n            \":c\" => { \"@id\" => \":d\" }\n          }, logger)\n      rescue JSON::LD::JsonLdError, JSON::LD::JsonLdError, TypeError => e\n        raise(\"#{e.class}: #{e.message}\\n\" \\\n              \"#{logger}\\n\" \\\n              \"Backtrace:\\n#{e.backtrace.join(\"\\n\")}\")\n      end\n    end\n\n    it \"does not use terms if no suffix\" do\n      input = %(<http://xmlns.com/foaf/0.1/> <http://xmlns.com/foaf/0.1/> <http://xmlns.com/foaf/0.1/> .)\n      expect(serialize(input, standard_prefixes: true))\n        .not_to produce_jsonld({\n          \"@context\" => { \"foaf\" => \"http://xmlns.com/foaf/0.1/\" },\n          '@id' => \"foaf\",\n          \"foaf\" => { \"@id\" => \"foaf\" }\n        }, logger)\n    end\n\n    it \"does not use CURIE with illegal local part\" do\n      input = %(\n        @prefix db: <http://dbpedia.org/resource/> .\n        @prefix dbo: <http://dbpedia.org/ontology/> .\n        db:Michael_Jackson dbo:artistOf <http://dbpedia.org/resource/%28I_Can%27t_Make_It%29_Another_Day> .\n      )\n\n      expect(serialize(input, prefixes: {\n        \"db\" => RDF::URI(\"http://dbpedia.org/resource/\"),\n        \"dbo\" => RDF::URI(\"http://dbpedia.org/ontology/\")\n      }))\n        .to produce_jsonld({\n          \"@context\" => {\n            \"db\" => \"http://dbpedia.org/resource/\",\n            \"dbo\" => \"http://dbpedia.org/ontology/\"\n          },\n          '@id' => \"db:Michael_Jackson\",\n          \"dbo:artistOf\" => { \"@id\" => \"db:%28I_Can%27t_Make_It%29_Another_Day\" }\n        }, logger)\n    end\n\n    it \"does not use provided node identifiers if :unique_bnodes set\" do\n      input = %(_:a <http://example.com/foo> _:b .)\n      result = serialize(input, unique_bnodes: true, context: {})\n      expect(result.to_json).to match(/_:g\\w+/)\n    end\n\n    it \"serializes multiple subjects\" do\n      input = '\n        @prefix : <http://www.w3.org/2006/03/test-description#> .\n        @prefix dc: <http://purl.org/dc/terms/> .\n        <http://example.com/test-cases/0001> a :TestCase .\n        <http://example.com/test-cases/0002> a :TestCase .\n      '\n      expect(serialize(input, prefixes: { \"\" => \"http://www.w3.org/2006/03/test-description#\" }))\n        .to produce_jsonld({\n          '@context' => {\n            \"\" => \"http://www.w3.org/2006/03/test-description#\",\n            \"dc\" => RDF::Vocab::DC.to_s\n          },\n          '@graph' => [\n            { '@id' => \"http://example.com/test-cases/0001\", '@type' => \":TestCase\" },\n            { '@id' => \"http://example.com/test-cases/0002\", '@type' => \":TestCase\" }\n          ]\n        }, logger)\n    end\n\n    it \"serializes Wikia OWL example\" do\n      input = '\n        @prefix owl: <http://www.w3.org/2002/07/owl#> .\n        @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .\n        @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .\n        @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n\n        <http://data.wikia.com/terms#Character> a owl:Class;\n           rdfs:subClassOf _:a .\n        _:a a owl:Restriction;\n           owl:minQualifiedCardinality \"1\"^^xsd:nonNegativeInteger;\n           owl:onClass <http://data.wikia.com/terms#Element>;\n           owl:onProperty <http://data.wikia.com/terms#characterIn> .\n      '\n      expect(serialize(input, rename_bnodes: false, prefixes: {\n        owl: \"http://www.w3.org/2002/07/owl#\",\n        rdfs: \"http://www.w3.org/2000/01/rdf-schema#\",\n        xsd: \"http://www.w3.org/2001/XMLSchema#\"\n      }))\n        .to produce_jsonld({\n          '@context' => {\n            \"owl\" => \"http://www.w3.org/2002/07/owl#\",\n            \"rdf\" => \"http://www.w3.org/1999/02/22-rdf-syntax-ns#\",\n            \"rdfs\" => \"http://www.w3.org/2000/01/rdf-schema#\",\n            \"xsd\" => \"http://www.w3.org/2001/XMLSchema#\"\n          },\n          '@graph' => [\n            {\n              \"@id\" => \"_:a\",\n              \"@type\" => \"owl:Restriction\",\n              \"owl:minQualifiedCardinality\" => { \"@value\" => \"1\", \"@type\" => \"xsd:nonNegativeInteger\" },\n              \"owl:onClass\" => { \"@id\" => \"http://data.wikia.com/terms#Element\" },\n              \"owl:onProperty\" => { \"@id\" => \"http://data.wikia.com/terms#characterIn\" }\n            },\n            {\n              \"@id\" => \"http://data.wikia.com/terms#Character\",\n              \"@type\" => \"owl:Class\",\n              \"rdfs:subClassOf\" => { \"@id\" => \"_:a\" }\n            }\n          ]\n        }, logger)\n    end\n  end\n\n  context \"RDF-star\" do\n    {\n      'subject-iii': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::URI('http://example/o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n         \"@context\": {\"ex\": \"http://example/\"},\n         \"@id\": {\n           \"@id\": \"ex:s1\",\n           \"ex:p1\": {\"@id\": \"ex:o1\"}\n         },\n         \"ex:p\": {\"@id\": \"ex:o\"}\n       })\n      },\n      'subject-iib': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Node.new('o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"ex:s1\",\n            \"ex:p1\": {\"@id\": \"_:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-iil': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Literal('o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"ex:s1\",\n            \"ex:p1\": \"o1\"\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bii': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::Node('s1'),\n            RDF::URI('http://example/p1'),\n            RDF::URI('http://example/o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": {\"@id\": \"ex:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bib': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::Node('s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Node.new('o1')\n          ),\n          RDF::URI('http://example/p'), RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": {\"@id\": \"_:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'subject-bil': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::Node('s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Literal('o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": \"_:s1\",\n            \"ex:p1\": \"o1\"\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      },\n      'object-iii': {\n        input: RDF::Statement(\n          RDF::URI('http://example/s'),\n          RDF::URI('http://example/p'),\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::URI('http://example/o1')\n          )\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": {\"@id\": \"ex:o1\"}\n            }\n          }\n        })\n      },\n      'object-iib': {\n        input: RDF::Statement(\n          RDF::URI('http://example/s'),\n          RDF::URI('http://example/p'),\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Node.new('o1')\n          )\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": {\"@id\": \"_:o1\"}\n            }\n          }\n        })\n      },\n      'object-iil': {\n        input: RDF::Statement(\n          RDF::URI('http://example/s'),\n          RDF::URI('http://example/p'),\n          RDF::Statement(\n            RDF::URI('http://example/s1'),\n            RDF::URI('http://example/p1'),\n            RDF::Literal('o1')\n          )\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": \"ex:s\",\n          \"ex:p\": {\n            \"@id\": {\n              \"@id\": \"ex:s1\",\n              \"ex:p1\": \"o1\"\n            }\n          }\n        })\n      },\n      'recursive-subject': {\n        input: RDF::Statement(\n          RDF::Statement(\n            RDF::Statement(\n              RDF::URI('http://example/s2'),\n              RDF::URI('http://example/p2'),\n              RDF::URI('http://example/o2')\n            ),\n            RDF::URI('http://example/p1'),\n            RDF::URI('http://example/o1')\n          ),\n          RDF::URI('http://example/p'),\n          RDF::URI('http://example/o')\n        ),\n        output: %({\n          \"@context\": {\"ex\": \"http://example/\"},\n          \"@id\": {\n            \"@id\": {\n              \"@id\": \"ex:s2\",\n              \"ex:p2\": {\"@id\": \"ex:o2\"}\n            },\n            \"ex:p1\": {\"@id\": \"ex:o1\"}\n          },\n          \"ex:p\": {\"@id\": \"ex:o\"}\n        })\n      }\n    }.each do |name, params|\n      it name do\n        graph = RDF::Graph.new { |g| g << params[:input] }\n        expect(\n          serialize(graph, rdfstar: true, prefixes: { ex: 'http://example/' })\n        ).to produce_jsonld(JSON.parse(params[:output]), logger)\n      end\n    end\n  end\n\n  unless ENV['CI']\n    context \"Writes fromRdf tests to isomorphic graph\" do\n      require 'suite_helper'\n      m = Fixtures::SuiteTest::Manifest.open(\"#{Fixtures::SuiteTest::SUITE}fromRdf-manifest.jsonld\")\n      describe m.name do\n        m.entries.each do |t|\n          next unless t.positiveTest? && !t.property('input').include?('0016')\n\n          specify \"#{t.property('@id')}: #{t.name}\" do\n            logger.info \"test: #{t.inspect}\"\n            logger.info \"source: #{t.input}\"\n            t.logger = logger\n            pending \"Shared list BNode in different graphs\" if t.property('input').include?(\"fromRdf-0021\")\n            repo = RDF::Repository.load(t.input_loc, format: :nquads)\n            jsonld = described_class.buffer(logger: t.logger, **t.options) do |writer|\n              writer << repo\n            end\n\n            # And then, re-generate jsonld as RDF\n\n            expect(parse(jsonld, format: :jsonld, **t.options)).to be_equivalent_graph(repo, t)\n          end\n        end\n      end\n    end\n  end\n\n  def parse(input, format: :trig, **options)\n    reader = RDF::Reader.for(format)\n    RDF::Repository.new << reader.new(input, **options)\n  end\n\n  # Serialize ntstr to a string and compare against regexps\n  def serialize(ntstr, **options)\n    g = ntstr.is_a?(String) ? parse(ntstr, **options) : ntstr\n    # logger.info g.dump(:ttl)\n    result = JSON::LD::Writer.buffer(logger: logger, **options) do |writer|\n      writer << g\n    end\n    if $verbose\n      # puts hash.to_json\n    end\n\n    JSON.parse(result)\n  end\nend\n"
  }
]